Skip to content

Instantly share code, notes, and snippets.

@rjozefowicz
Last active February 5, 2020 18:06
Show Gist options
  • Save rjozefowicz/d5977a07bf3821cf9350007118de5bc3 to your computer and use it in GitHub Desktop.
Save rjozefowicz/d5977a07bf3821cf9350007118de5bc3 to your computer and use it in GitHub Desktop.
spring security training
@rjozefowicz
Copy link
Author

InternalSystemAuthenticationProvider:

  private boolean internalSystemUser(String username) {
        return nonNull(username) && username.startsWith("agx");
    }

@rjozefowicz
Copy link
Author

View X.509 certificate details:

openssl x509 -in client.crt -text -noout

or use https://www.sslshopper.com/certificate-decoder.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment