FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. johnathon
    3. Topics
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 10
    • Best 3
    • Controversial 0
    • Groups 1

    Topics created by johnathon

    • J

      Solved Disable email and password logins

      Q&A
      • disable login idp sso • • johnathon
      2
      0
      Votes
      2
      Posts
      1.5k
      Views

      J

      @johnathon

      One approach would be to append the parameter idp_hint to the login URL to redirect a user to the appropriate IdP login page. Please read the hints section in our documentation for more information.

      Another way to disable the password and email login for a user would be to set their password to a random 25-character string. This would make the password essentially impossible to brute force and thus impossible for them to log in via the hosted login page.

    • J

      Solved Rule for validating if a password uses valid special characters / non-alphanumeric characters

      Q&A
      • password rules valid • • johnathon
      2
      0
      Votes
      2
      Posts
      1.1k
      Views

      J

      @johnathon

      These are the steps FusionAuth takes to check whether a password contains special characters:

      Convert the Java String to a char[] (a char is a 16-bit unicode value in Java) Check each character c to determine whether it is a special character using
      !Character.isAlphabetic(c) && !Character.isDigit(c) If any character in the string returns true for the above check, we consider it to contain a special character