mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 14:30:07 +01:00
parent
834cae88be
commit
2e55528e82
@ -4,7 +4,14 @@ functions:
|
|||||||
- code: |
|
- code: |
|
||||||
LFILE=file_to_read
|
LFILE=file_to_read
|
||||||
cp "$LFILE" /dev/stdout
|
cp "$LFILE" /dev/stdout
|
||||||
|
file-write:
|
||||||
|
- code: |
|
||||||
|
LFILE=file_to_write
|
||||||
|
echo "DATA" | cp /dev/stdin "$LFILE"
|
||||||
suid:
|
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.
|
- description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges.
|
||||||
code: |
|
code: |
|
||||||
LFILE=file_to_write
|
LFILE=file_to_write
|
||||||
@ -12,6 +19,9 @@ functions:
|
|||||||
echo "DATA" > $TF
|
echo "DATA" > $TF
|
||||||
./cp $TF $LFILE
|
./cp $TF $LFILE
|
||||||
sudo:
|
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.
|
- description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges.
|
||||||
code: |
|
code: |
|
||||||
LFILE=file_to_write
|
LFILE=file_to_write
|
||||||
|
Loading…
Reference in New Issue
Block a user