You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://owasp.org/www-community/attacks/csrf[Cross-Site Request Forgery (CSRF)] is an attack that forces an end user to execute unwanted actions on a web application in which they are currently authenticated.
13
13
@@ -24,15 +24,15 @@ First, we need a new project.
24
24
Create a new project with the following command:
25
25
26
26
:create-app-artifact-id: security-csrf-prevention
27
-
:create-app-extensions: csrf-reactive
27
+
:create-app-extensions: rest-csrf
28
28
include::{includes}/devtools/create-app.adoc[]
29
29
30
-
This command generates a project which imports the `csrf-reactive` extension.
30
+
This command generates a project which imports the `rest-csrf` extension.
31
31
32
-
If you already have your Quarkus project configured, you can add the `csrf-reactive` extension
32
+
If you already have your Quarkus project configured, you can add the `rest-csrf` extension
33
33
to your project by running the following command in your project base directory:
34
34
35
-
:add-extension-extensions: csrf-reactive
35
+
:add-extension-extensions: rest-csrf
36
36
include::{includes}/devtools/extension-add.adoc[]
37
37
38
38
This will add the following to your build file:
@@ -42,14 +42,14 @@ This will add the following to your build file:
0 commit comments