Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/attackercan/burp-xss-sql-plugin


https://github.com/attackercan/burp-xss-sql-plugin

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# burp-xss-sql-plugin

Publishing plugin which I used for years which helped me to find several bugbounty-worthy XSSes, OpenRedirects and SQLi.

__HTML Inj__: Special symbols are checked one-by-one if they appear in output. WAF/base64encoding/location/content-type/etc detections.

__SQL Inj__: All parameters are transfered through SQLMap API to host, which in used for asynchronous scanning.

__Tip__: Change Burp's Active Scan scope so it will automatically append new HTTP requests into queue, e.g.:

```
Host: bugbounty.com
File: (? $task) {
$task_data = json_decode(file_get_contents("http://0.0.0.0:8775/scan/".$id."/data"), true);
if(count($task_data['data']) > 0)
echo "[".$id."]

SQL Inj!


";
//else echo "[".$id."] None...
";
}
}

?>
```