Last active
March 9, 2018 08:45
-
-
Save jgamblin/90c7aa1b369d1aa1e77b0af03216b9e1 to your computer and use it in GitHub Desktop.
Automatic Burp Script With Slack Reporting.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
java -jar -Xmx2g -Djava.awt.headless=true ~/BurpSuitePro/burpsuite_pro.jar http jerrygamblin.com 80 | |
cp *.html ~/BurpSuitePro/scan.html | |
wkhtmltopdf scan.html scan.pdf | |
curl -F [email protected] -F initial_comment="BurpProxy JerryGamblin.com Scan" -F channels=#burpreports -F token=(Your Token) https://slack.com/api/files.upload | |
rm *.html | |
rm *.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How do we handle sessions and authentication while automating? Please advise.