This document has references and notes from the OWASP Global AppSec 2024 talk; "GraphQL Exploitation: Secondary Context Attacks and Business Logic Vulnerabilities".
- Github: BuffaloWill
- LinkedIn: Will Vandevanter
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| import requests | |
| import soft404 | |
| ### | |
| # usage: | |
| # - The script prints the URL to stdout if it is unlikely to be a soft 404. |
This document has references and notes from the OWASP Global AppSec 2024 talk; "GraphQL Exploitation: Secondary Context Attacks and Business Logic Vulnerabilities".