Skip to content

Instantly share code, notes, and snippets.

@jgamblin
Last active March 9, 2018 08:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jgamblin/90c7aa1b369d1aa1e77b0af03216b9e1 to your computer and use it in GitHub Desktop.
Save jgamblin/90c7aa1b369d1aa1e77b0af03216b9e1 to your computer and use it in GitHub Desktop.
Automatic Burp Script With Slack Reporting.
#!/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 file=@scan.pdf -F initial_comment="BurpProxy JerryGamblin.com Scan" -F channels=#burpreports -F token=(Your Token) https://slack.com/api/files.upload
rm *.html
rm *.pdf
@raajheshkannaa
Copy link

How do we handle sessions and authentication while automating? Please advise.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment