Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing broken links #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pages/reviewing-code-for-cross-site-request-forgery-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permalink: /reviewing-code-for-csrf-issues

## Overview

[CSRF](CSRF "wikilink") is an attack which forces an end user to execute
[CSRF](https://owasp.org/www-community/attacks/csrf) is an attack which forces an end user to execute
unwanted actions on a web application in which he/she is currently
authenticated. With a little help of social engineering (like sending a
link via email/chat), an attacker may force the users of a web
Expand All @@ -21,13 +21,13 @@ can compromise the entire web application.

### Description of CSRF Vulnerabilities

See the OWASP article on [CSRF](CSRF "wikilink") Vulnerabilities.
See the OWASP article on [CSRF](https://owasp.org/www-community/attacks/csrf) Vulnerabilities.

### How to Test for CSRF Vulnerabilities

See the [OWASP Testing
Guide](:Category:OWASP_Testing_Project "wikilink") article on how to
[Test for CSRF](Testing_for_CSRF_\(OWASP-SM-005\) "wikilink")
[Test for CSRF](https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/06-Session_Management_Testing/05-Testing_for_Cross_Site_Request_Forgery.html)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Vulnerabilities.

## Introduction
Expand Down Expand Up @@ -177,7 +177,7 @@ attack.

## Related Articles

[CSRF Guard](CSRF_Guard "wikilink")
[CSRF Guard](https://owasp.org/www-project-csrfguard/)

[Category:OWASP Code Review
Project](Category:OWASP_Code_Review_Project "wikilink")
Expand Down