Welcome to the home of the OWASP CSRFGuard Project! OWASP CSRFGuard is a library that implements a variant of the synchronizer token pattern to mitigate the risk of Cross-Site Request Forgery (CSRF) attacks. The OWASP CSRFGuard library is integrated through the use of a JavaEE Filter and exposes various automated and manual ways to integrate per-session or pseudo-per-request tokens into HTML. When a user interacts with this HTML, CSRF prevention tokens (i.e. cryptographically random synchronizer tokens) are submitted with the corresponding HTTP request. It is the responsibility of OWASP CSRFGuard to ensure the token is present and is valid for the current HTTP request. Any attempt to submit a request to a protected resource without the correct corresponding token is viewed as a CSRF attack in progress and is discarded. Prior to discarding the request, CSRFGuard can be configured to take one or more actions such as logging aspects of the request and redirecting the user to a landing page. The latest release enhances this strategy to support the optional verification of HTTP requests submitted using Ajax as well as the optional verification of referrer headers.
The CSRFGuard project is run by Azzeddine RAMRAMI and Istvan ALBERT-TOTH.
Add the following dependencies to your Maven POM file to use the library:
Note: for the Jakarta releases use the -jakarta
suffix in the version
.
<dependency>
<groupId>org.owasp</groupId>
<artifactId>csrfguard</artifactId>
<version>4.3.0</version>
</dependency>
<!-- Stateful web application support -->
<dependency>
<groupId>org.owasp</groupId>
<artifactId>csrfguard-extension-session</artifactId>
<version>4.3.0</version>
</dependency>
<!-- JSP TAG support -->
<dependency>
<groupId>org.owasp</groupId>
<artifactId>csrfguard-jsp-tags</artifactId>
<version>4.3.0</version>
</dependency>
- Make sure you have Apache Maven 3.6.3+, JDK 1.8+ and respectively JDK 11+ for Jakarta installed
- Clone this repository locally
- Build the project by running
mvn clean install
in the project root directory - Build and run the test JSP web application by running one of the following commands:
mvn pre-integration-test -Pdeploy-jsp-webapp -pl csrfguard-test/csrfguard-test-jsp
mvn -Pdeploy-jsp-webapp -pl csrfguard-test/csrfguard-test-jsp tomcat7:run
- Optional: you can use
mvnDebug
to enable remote debugging, then connect your IDE to it (default port is 8000) - Use a web browser to access
http://localhost:8080
to open the home page of the test project
- Follow the Sonatype Open-Source Project Maven Repository Usage Guide to create a Sonatype user account;
- Next, open a support request to get your newly created username added to the Maven groupId
org.owasp
; - The ticket must be approved by a CSRFGuard project leader or someone who already has permissions to deploy under the group and artifactId.
- Once the support request has been completed, follow the instructions in the Sonatype Maven repository usage guide mentioned above to upload new versions to the Maven Central repository.
See: https://central.sonatype.org/publish/requirements/gpg/
gpg --full-gen-key
gpg --list-keys
gpg --list-secret-keys # if you've migrated your keys from another machine, make sure you have your secret key(s) imported
gpg --keyserver keys.gnupg.net --send-key <your_public_key_here> # you can define other supported key servers as well
<settings xmlns="https://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>ossrh</id> <!-- the id must match with the repository id defined in distributionManagement -->
<username><!--your_oss_sonatype_username--></username>
<password><!--your_oss_sonatype_password--></password>
</server>
</servers>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.passphrase><!--your_gpg_passphrase--></gpg.passphrase>
</properties>
</profile>
</profiles>
</settings>
Test signing your artifacts manually:
mvn clean verify -Psign-artifacts -Dgpg.passphrase=<your_gpg_passphrase> # should generate .asc files in the target directory
mvn clean deploy
mvn release:clean release:prepare
- Set the version number you want to release in <MAJOR.MINOR.PATCH> format (e.g.
4.0.0
) - Set the SCM release tag: (e.g.
4.0.0
) - Set the new development version (e.g.
4.0.1-SNAPSHOT
)
Check the created commits and tag to make sure everything looks as expected:
git log
git show HEAD
git show HEAD^
git tag -l # list tags
mvn release:rollback # or "git reset HEAD^^ --hard"
git tag -d <tag_name_to_delete>
mvn release:perform
The maven-release-plugin
executes the deploy
(default). This triggers the execution of the nexus-staging-maven-plugin
, which uploads the artifacts to the OSS Sonatype staging repository and releases them if they meet the requirements.
Manual release of a staging repository (in case autoReleaseAfterClose
is set to false
)
- Visit https://oss.sonatype.org/#stagingRepositories
- Review the newly created repository against the requirements (JAR files, sources, JavaDocs and associated PGP armored ASCII files are present with the desired version etc.)
Close
the repository to trigger the validation of the uploaded components- If there were no errors, click
Release
Upon release, the new version is published to the Central Repository, typically within 30 minutes, but updates to search can take up to 4 hours.
git push origin master
git push origin <tag_name>
You can download pre-compiled versions from: