cwong-scw / action-playground

0 stars 2 forks source link

Add feature 2 #38

Closed cwong-scw closed 3 years ago

cwong-scw commented 3 years ago

sqli

cwong-scw commented 3 years ago

xss

cwong-scw commented 3 years ago

csrf

temp-scw-app[bot] commented 3 years ago

Micro-Learning Topic: Cross-site request forgery (Detected by phrase)

Matched on "csrf"

What is this? (2min video)

Session-related but not session-based, this attack is based on the ability of an attacker to force an action on a user’s browser (commonly in the form of a POST request) to perform an unauthorized action on behalf of the user. This can often occur without the user even noticing it… or only noticing when it is too late. The root cause is that browsers automatically send session cookies with all requests to a given domain, regardless of where the source of the request came from, and the application server cannot differentiate between a request that came from pages it served or a request that came from an unrelated page.

Try this challenge in Secure Code Warrior

cwong-scw commented 3 years ago

ssrf

cwong-scw commented 3 years ago

csrf ssrf

temp-scw-app[bot] commented 3 years ago

Micro-Learning Topic: Cross-site request forgery (Detected by phrase)

Matched on "csrf"

What is this? (2min video)

Session-related but not session-based, this attack is based on the ability of an attacker to force an action on a user’s browser (commonly in the form of a POST request) to perform an unauthorized action on behalf of the user. This can often occur without the user even noticing it… or only noticing when it is too late. The root cause is that browsers automatically send session cookies with all requests to a given domain, regardless of where the source of the request came from, and the application server cannot differentiate between a request that came from pages it served or a request that came from an unrelated page.

Try this challenge in Secure Code Warrior