Spring security Flashcards

1
Q

Hvad står jwt for

A

JSon Web Token.

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

Hvad bliver JWT brugt til?

A

JWT bruges ofte til at autenticere brugere og give dem adgang til ressourcer eller tjenester

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

SECRET_KEY

A

is a secret cryptographic key used to sign and verify JWTs.

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

If authentication fail we get…

A

401 error..

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

If authorization fail we get…

A

403 error

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

local storage / session storage

A

bruges til at gemme data, på brugerens computer direkte i browseren.

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

What is Spring Security?

A

A powerful and customizable authentication and access-control framework for Java applications.

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

What is the primary purpose of authentication in Spring Security?

A

To verify the identity of a user.

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

What does the term ‘authorization’ refer to in Spring Security?

A

The process of determining whether a user has permission to access a resource.

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

Which annotation is used to secure methods in Spring Security?

A

@PreAuthorize

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

What is a Security Filter Chain?

A

A series of filters that process requests and responses in Spring Security.

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

What is the function of the UserDetailsService interface?

A

To load user-specific data.

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

What does CSRF stand for?

A

Cross-Site Request Forgery

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

True or False: CSRF protection is enabled by default in Spring Security.

A

True

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

Multiple Choice: Which of the following is a common way to secure REST APIs in Spring Security? A) Form-based authentication B) Token-based authentication C) Basic authentication D) All of the above

A

D) All of the above

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

What is the default role prefix used in Spring Security?

17
Q

CSRF

A

hvis du skal bruge en side der kræver authentication,

undgå at andre kan få adgang til dine oplysninger og ændre login osv..

18
Q

CORS

A

en sikkerhedsmekanisme i browsere, der styrer hvilke domæner der må tilgå din server.

@crossOrgin(origine =”*”)