FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. Categories
    3. General Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • S

      This topic is deleted!

      • • smith8395john
      1
      0
      Votes
      1
      Posts
      3
      Views

      No one has replied

    • O

      This topic is deleted!

      • • office
      1
      0
      Votes
      1
      Posts
      9
      Views

      No one has replied

    • R

      Is there any event that fires that a passwordless login has expired?

      • • richb201
      3
      0
      Votes
      3
      Posts
      350
      Views

      danD

      Nope, there's no way to know when passwordless logins have expired via webhook.

      You have a couple of options:

      You can create a github issue specifying your use case. I'm not sure how quickly this feature would be implemented, however, as this is the first request I've seen. You could note when you send the passwordless login on the user object (in user.data) and build a query that shows all the users with expired passwordless logins. You can know when you sent it and how long it is good for by querying the tenant settings, which gives you the time it expires. You could note when you send the passwordless login in some other external database and process it there.
    • F

      How to use application-specific E-Mail templates?

      • • fwolf
      4
      0
      Votes
      4
      Posts
      1.1k
      Views

      danD

      Added a doc bug: https://github.com/fusionauth/fusionauth-issues/issues/1005

    • N

      Enable SAML for FusionAuth

      • • nmetchev
      2
      0
      Votes
      2
      Posts
      686
      Views

      danD

      Hiya,

      Can you please provide more details:

      any logs (esp with debug enabled) what version of FusionAuth are you running? configuration of the SAML provider, including everything outlined here: https://fusionauth.io/docs/v1/tech/identity-providers/samlv2/ what docs you used on the okta side

      I know we have customers who have succeeded in using Okta as the Idp and FusionAuth as the SP, so would love to get to the bottom of this.

    • J

      User Enumeration

      • • john.mooney
      2
      0
      Votes
      2
      Posts
      541
      Views

      danD

      Hiya,

      Do you have a script or set of scripts which illustrates a valid user enumeration attack against FusionAuth?

      I did a test of three kinds of user login:

      existing user, valid password existing user, invalid password user who didn't exist

      And they all returned in roughly the same amount of time.

    • R

      deleting a user with success (200) via API client but they are not removed from

      • • richb201
      4
      0
      Votes
      4
      Posts
      5.7k
      Views

      R

      Works perfectly now. TY!

    • J

      Integration with discourse

      • • julien
      2
      0
      Votes
      2
      Posts
      731
      Views

      danD

      On reading through your linked document, FusionAuth doesn't support this natively. There's no 'sso' endpoint which does what the docs say must be done (checking the signature, creating the new payload, etc...).

      You have a couple of options:

      file a feature request: https://github.com/fusionauth/fusionauth-issues/issues explaining what you'd like to have done use OIDC for discourse (which should work with FusionAuth out of the box): https://meta.discourse.org/t/openid-connect-authentication-plugin/103632 set up a small proxy server which would receive the SSO request from discourse, present a login screen, and call the FusionAuth Login API to authenticate the user

      I'd probably recommend the OIDC route unless there's some reason why it wouldn't work for you.

    • R

      This topic is deleted!

      • • richb201
      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • R

      How to restart FusionAuth

      • • richb201
      3
      0
      Votes
      3
      Posts
      2.8k
      Views

      R

      Solved. The error code coming back is [duplicate]user.email. I just need to ignore that!

    • M

      Cannot lookup public key for kid

      • • me
      3
      0
      Votes
      3
      Posts
      1.4k
      Views

      danD

      Yup, you got it!

      And also HMAC keys will never be displayed in the public-key list. Since they are symmetric, displaying them in that list would let anyone viewing them sign JWTs indistinguishable from those signed by FusionAuth.

    • R

      testing within Docker

      • • richb201
      3
      0
      Votes
      3
      Posts
      944
      Views

      danD

      Should I be working with the email template or is that for something else?

      I'd look at email templates and tweaking those, yes. https://fusionauth.io/docs/v1/tech/email-templates/email-templates/ has some docs about this.

      Is a client_id and a user_id (returned from registration) the same thing?

      Nope. client_id represents an application in FusionAuth. user_id represents a user.

      Hope that helps, glad you're getting close!

    • M

      How can I enable social logins from tenant or application API

      • • mak
      2
      0
      Votes
      2
      Posts
      577
      Views

      danD

      Sure, you want to use the patch identity provider method: https://github.com/FusionAuth/fusionauth-java-client/blob/master/src/main/java/io/fusionauth/client/FusionAuthClient.java#L1575

      You'll want to update the application configuration section: https://fusionauth.io/docs/v1/tech/apis/identity-providers/

      Be aware that there is an open issue regarding this: https://github.com/FusionAuth/fusionauth-issues/issues/767 If this affects you, please upvote it so that it moves up in our priority list.

      This also may be worth reading: https://fusionauth.io/community/forum/topic/510/update-identity-provider

    • M

      Authorization lambda?

      • • mgetka
      3
      0
      Votes
      3
      Posts
      4.0k
      Views

      M

      Ok, I've created a feature request.

    • R

      creating security based on passwordless login, not passwords

      • • richb201
      3
      0
      Votes
      3
      Posts
      424
      Views

      danD

      Hi @richb201 ,

      Are you asking what the security implications are for not using passwords at all?

      That's hard to give general guidance on, as that depends on how good users are at keeping their email accounts safe.

      In general it's going to be pretty good because people tend to care more about their email accounts and pay more attention to them than some random account they signed up for 6 months ago and haven't checked since.

      Also in favor of this is the fact that the passwordless codes are time limited (configurable in the tenant).

      But, as I'm sure you can understand, I can't do a thorough security analysis because I don't know the full details of your scenario.

    • C

      Use one application login to access another application

      • • chris.obdam
      4
      0
      Votes
      4
      Posts
      1.2k
      Views

      danD

      Nope, this is the recommended solution.

      If you think there's a valid use case for having this be supported natively (without the webhook), please file an issue with a feature request, including as many details as you can: https://github.com/fusionauth/fusionauth-issues/issues

    • R

      trouble sending the passwordless email

      • • richb201
      6
      0
      Votes
      6
      Posts
      3.9k
      Views

      danD

      Ah, I see how that could be confusing. Sorry about that. Glad you got it sorted out and it works!

    • L

      This topic is deleted!

      • • lucas
      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • T

      How can I add SessionIndex as part of the AuthenStatement provided? Is there a way to add this using a Lamba Function?

      • • tom.mauldin
      5
      0
      Votes
      5
      Posts
      2.0k
      Views

      T

      We just did some testing and it appears that JFrog Artifactory can now use FusionAuth as a SAML ID Provider.

      Thanks again for the quick work on this issue.

      Tom M

    • A

      Unable to send email via JavaMailCan't send command to SMTP host

      • • aaron.rasch
      6
      0
      Votes
      6
      Posts
      9.1k
      Views

      A

      'Tis I indeed! Continuing my signature moves of knowing juuuuuust enough to be dangerous to myself and others LOL. I'm checking the settings now, thanks to you and Dan for the support!