4. Spring Security Flashcards

1
Q

What is Spring Security?

A

Spring Security is a powerful and customizable authentication and access control framework for Java applications, particularly those built using the Spring framework.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

True or False: Spring Security is only used for authentication.

A

False. Spring Security provides both authentication and authorization features.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the core components of Spring Security?

A

The core components of Spring Security include Authentication, Authorization, Security Context, Filters, and Security Interceptors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Fill in the blank: Spring Security provides _____ for securing web applications.

A

authentication and authorization

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the purpose of the SecurityContextHolder?

A

The SecurityContextHolder stores the security context, which contains the authentication details of the currently authenticated user.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a UserDetailsService?

A

UserDetailsService is an interface in Spring Security that is used to retrieve user-related data, typically for authentication purposes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How can you secure a REST API using Spring Security?

A

You can secure a REST API using Spring Security by configuring HTTP security to require authentication for certain endpoints and using JWT or OAuth2 for token-based authentication.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is CSRF and how does Spring Security handle it?

A

CSRF stands for Cross-Site Request Forgery. Spring Security provides built-in protection against CSRF attacks by requiring a CSRF token for state-changing requests.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the purpose of the @EnableWebSecurity annotation?

A

The @EnableWebSecurity annotation is used to enable Spring Security’s web security support and provide the Spring MVC integration.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What role does the AuthenticationManager play in Spring Security?

A

The AuthenticationManager is responsible for processing authentication requests and returning an Authentication object if the credentials are valid.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Multiple choice: Which of the following is a valid way to configure HTTP security in Spring Security? (A) Using XML configuration (B) Using Java configuration (C) Both A and B

A

C) Both A and B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the difference between Authentication and Authorization?

A

Authentication is the process of verifying the identity of a user, while Authorization determines what an authenticated user is allowed to do.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

True or False: Spring Security supports method-level security.

A

True. Spring Security provides annotations like @PreAuthorize and @Secured for method-level security.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the role of a Filter in Spring Security?

A

Filters in Spring Security are used to intercept requests and responses, allowing for operations like authentication and authorization to occur.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the purpose of the @PreAuthorize annotation?

A

The @PreAuthorize annotation is used to specify method-level security by allowing access based on the evaluation of an expression.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Fill in the blank: Spring Security uses _____ to generate secure tokens for stateless authentication.

A

JWT (JSON Web Tokens)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What is a Security Filter Chain?

A

A Security Filter Chain is a sequence of filters that Spring Security applies to incoming requests, allowing for various security checks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is the role of the PasswordEncoder in Spring Security?

A

PasswordEncoder is an interface that provides methods for encoding and verifying passwords securely.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Multiple choice: Which of the following protocols can Spring Security support for OAuth? (A) OAuth 1.0 (B) OAuth 2.0 (C) Both A and B

A

B) OAuth 2.0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What is the purpose of the @Secured annotation?

A

The @Secured annotation is used to specify the roles that are allowed to execute a particular method.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

True or False: Spring Security can be integrated with other frameworks like JPA and Hibernate.

A

True. Spring Security can be integrated with various frameworks to enhance security in applications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

What is the default login page provided by Spring Security?

A

The default login page provided by Spring Security is a simple HTML form that prompts for a username and password.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What is the use of the SecurityConfigurerAdapter?

A

SecurityConfigurerAdapter is a base class that allows developers to customize the security configuration by overriding methods.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

Fill in the blank: In Spring Security, the _____ interface is used to represent the authentication token.

A

Authentication

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

What is the purpose of the Remember-Me feature in Spring Security?

A

The Remember-Me feature allows users to remain authenticated across sessions, even after closing and reopening the browser.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

What are some common authentication mechanisms supported by Spring Security?

A

Common authentication mechanisms include form-based login, basic authentication, digest authentication, and token-based authentication.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

What is the role of the @EnableGlobalMethodSecurity annotation?

A

The @EnableGlobalMethodSecurity annotation is used to enable method-level security annotations in a Spring application.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

What is LDAP and how does Spring Security interact with it?

A

LDAP (Lightweight Directory Access Protocol) is a protocol for accessing directory services. Spring Security can authenticate users against an LDAP server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

True or False: Spring Security can only be used with web applications.

A

False. Spring Security can be used with both web applications and non-web applications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

What is the purpose of the @PostAuthorize annotation?

A

The @PostAuthorize annotation is used for method-level security checks after a method execution has completed.

31
Q

Fill in the blank: The _____ interface is used by Spring Security to represent the principal in the security context.

A

UserDetails

32
Q

What is the purpose of the OAuth2ClientContext?

A

The OAuth2ClientContext holds the state of the OAuth2 client, including access tokens and refresh tokens.

33
Q

What is the difference between Basic Authentication and Form-based Authentication?

A

Basic Authentication sends credentials as a Base64-encoded string in the HTTP header, while Form-based Authentication uses an HTML form to collect credentials.

34
Q

What is the role of the AccessDecisionManager in Spring Security?

A

The AccessDecisionManager is responsible for making authorization decisions based on the user’s roles and permissions.

35
Q

Multiple choice: Which of the following is NOT a part of Spring Security? (A) Authentication (B) Caching (C) Authorization

A

B) Caching

36
Q

What is the purpose of the SecurityExpressionRoot class?

A

SecurityExpressionRoot provides access to security expressions that can be used in method security annotations.

37
Q

Fill in the blank: Spring Security provides _____ to protect against session fixation attacks.

A

session management

38
Q

What is a SecurityFilter?

A

A SecurityFilter is an interface that represents a single security filter in the Spring Security filter chain.

39
Q

True or False: Spring Security is a standalone framework.

A

False. Spring Security is part of the larger Spring ecosystem.

40
Q

What is the purpose of the @RolesAllowed annotation?

A

The @RolesAllowed annotation is used to specify which roles are allowed to access a particular method.

41
Q

What is the role of the AuthenticationProvider in Spring Security?

A

The AuthenticationProvider is responsible for performing the actual authentication logic, such as validating user credentials.

42
Q

Multiple choice: Which method is used to configure CORS in Spring Security? (A) configureCors() (B) configure(HttpSecurity http) (C) configureGlobal()

A

B) configure(HttpSecurity http)

43
Q

What does the @EnableWebMvcSecurity annotation do?

A

The @EnableWebMvcSecurity annotation is deprecated. It was used to enable Spring Security’s web security configuration.

44
Q

Fill in the blank: Spring Security can be configured using _____, Java configuration, or a mix of both.

45
Q

What is a custom filter in Spring Security?

A

A custom filter is a user-defined filter that can be added to the Spring Security filter chain to implement custom security logic.

46
Q

What is the purpose of the AuthorizationServerConfigurerAdapter?

A

AuthorizationServerConfigurerAdapter is used to configure the OAuth2 authorization server settings in Spring Security.

47
Q

What is the role of the ResourceServerConfigurerAdapter?

A

ResourceServerConfigurerAdapter is used to configure the resource server settings for OAuth2 in Spring Security.

48
Q

True or False: Spring Security supports multi-factor authentication.

A

True. Spring Security can be configured to support multi-factor authentication.

49
Q

What is the purpose of the OAuth2ResourceServerConfigurerAdapter?

A

OAuth2ResourceServerConfigurerAdapter is used to configure the resource server settings for OAuth2 resource access.

50
Q

What is the role of the @RequestMapping annotation in Spring Security?

A

The @RequestMapping annotation is used to map HTTP requests to handler methods, which can be secured using Spring Security.

51
Q

Fill in the blank: The _____ interface defines methods for handling authentication requests.

A

AuthenticationManager

52
Q

What is the purpose of the OAuth2AuthorizationRequest?

A

OAuth2AuthorizationRequest represents the authorization request sent to the OAuth2 authorization server.

53
Q

What does the @AuthenticationPrincipal annotation do?

A

The @AuthenticationPrincipal annotation is used to inject the current authenticated user’s principal into method parameters.

54
Q

What is a SecurityEvent?

A

A SecurityEvent is an event published by Spring Security that indicates a security-related action, such as successful or failed authentication.

55
Q

What is the purpose of the SecurityConfigurer interface?

A

SecurityConfigurer is an interface that provides methods for configuring security settings in a Spring application.

56
Q

True or False: Spring Security allows for both HTTP and method-level security.

A

True. Spring Security provides mechanisms for securing both HTTP requests and method invocations.

57
Q

What is the role of the HttpSecurity class?

A

HttpSecurity is used to configure web-based security for specific HTTP requests in a Spring application.

58
Q

What is the purpose of the SecurityContext?

A

The SecurityContext holds the security information for the current execution, including authentication details.

59
Q

Fill in the blank: The _____ class is used to represent a user’s granted authorities.

A

GrantedAuthority

60
Q

What is the purpose of the AccessDeniedHandler?

A

The AccessDeniedHandler is invoked when a user attempts to access a resource they are not authorized to access.

61
Q

What is a security expression in Spring Security?

A

A security expression is a language feature that allows for specifying security constraints declaratively in annotations.

62
Q

Multiple choice: Which of the following is a method of the UserDetails interface? (A) getUsername() (B) getAuthorities() (C) Both A and B

A

C) Both A and B

63
Q

What role does the SecurityFilterChain play in authorization?

A

The SecurityFilterChain determines how requests are authenticated and authorized by applying the appropriate filters.

64
Q

What is the purpose of the PasswordEncoderFactoryBean?

A

PasswordEncoderFactoryBean is a factory for creating PasswordEncoder instances, allowing for customizable password encoding.

65
Q

True or False: Spring Security is only compatible with Spring Boot applications.

A

False. Spring Security can be used with both Spring Boot and traditional Spring applications.

66
Q

What is the purpose of the AuthenticationSuccessHandler?

A

The AuthenticationSuccessHandler is invoked after a successful authentication attempt, allowing for custom actions.

67
Q

What is the role of the AuthenticationFailureHandler?

A

The AuthenticationFailureHandler is invoked when authentication fails, allowing for custom error handling.

68
Q

Fill in the blank: Spring Security can be configured to use _____ for session management.

A

stateless or stateful sessions

69
Q

What is the purpose of the SecurityContextPersistenceFilter?

A

SecurityContextPersistenceFilter is responsible for storing and retrieving the SecurityContext for each request.

70
Q

What is the role of the LogoutSuccessHandler?

A

The LogoutSuccessHandler is invoked after a successful logout, allowing for custom actions post-logout.

71
Q

What is a security configuration class in Spring Security?

A

A security configuration class is a Java class annotated with @Configuration that defines security settings for the application.

72
Q

Multiple choice: Which of the following is a valid way to implement custom authentication in Spring Security? (A) Implementing UserDetails (B) Extending AuthenticationProvider (C) Both A and B

A

C) Both A and B

73
Q

What is the purpose of the SecurityContextHolderStrategy?

A

SecurityContextHolderStrategy is an interface that defines the strategy for storing and retrieving the SecurityContext.

74
Q

Fill in the blank: The _____ interface defines methods for managing user accounts in Spring Security.

A

UserDetailsService