About 380,000 results
Open links in new tab
  1. java - Spring Security Expression: "authenticated" vs. "isAuthenticated ...

    Oct 10, 2021 · According to the Spring Security docs, the expression to check whether a user is authenticated is isAuthenticated (). So we would do @PreAuthorize ("isAuthenticated ()"), for example.

  2. Spring Security: what do authorizeRequests (), anyRequest () and ...

    authorizeRequests() Allows restricting access based upon the HttpServletRequest using RequestMatcher implementations. permitAll() This will allow the public access that is anyone can …

  3. python - What's the point of the "is_authenticated" method used in ...

    Feb 19, 2014 · First of all, is_anonymous() and is_authenticated() are each other's inverse. You could define one as the negation of the other, if you want. You can use these two methods to determine if a …

  4. 403 Forbidden vs 401 Unauthorized HTTP responses - Stack Overflow

    Jul 21, 2010 · A clear explanation from Daniel Irvine [original link]: There's a problem with 401 Unauthorized, the HTTP status code for authentication errors. And that’s just it: it’s for authentication, …

  5. What is "additional authenticated data" in AES-GCM?

    13 AAD stands for Additional Authenticated Data or Additional Associated Data. This is data that can be send in the clear together with the cipher text. Both the encrypted message and the AAD are …

  6. How to check if a user is logged in (how to properly use user.is ...

    The document says: Read-only attribute which is always True (as opposed to AnonymousUser.is_authenticated which is always False). This is a way to tell if the user has been …

  7. Powershell throws error with Get-ADPrincipleGroup

    Oct 30, 2020 · "The Operation being Requested was not performed because the user has not been authenticated." So the account is permissoned fine and i can run various commands fine in PS.

  8. c# - How does Request.IsAuthenticated work? - Stack Overflow

    HttpRequest.IsAuthenticated will be true when the user making the request has been authenticated. Essentially, this property provides the same information as Context.User.Identity.IsAuthenticated. At …

  9. How can I make SMTP authenticated in C# - Stack Overflow

    Nov 18, 2008 · The problem is the smtp was not authenticated from who send the message. How can I make SMTP authenticated in my program? does C# have a class that have attribute for enter …

  10. IHttpContextAccessor: IsAuthenticated always false - Stack Overflow

    Nov 28, 2024 · I'm building a .NET8 web app with a REST API where I'm trying to check if the requesting user is an admin to execute different code paths based on that but for some reason the …