mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
Refactor cp
This commit is contained in:
parent
b6f1947354
commit
834cae88be
@ -1,21 +1,21 @@
|
|||||||
---
|
---
|
||||||
description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges.
|
|
||||||
functions:
|
functions:
|
||||||
suid:
|
file-read:
|
||||||
- code: |
|
- code: |
|
||||||
|
LFILE=file_to_read
|
||||||
|
cp "$LFILE" /dev/stdout
|
||||||
|
suid:
|
||||||
|
- 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
|
LFILE=file_to_write
|
||||||
TF=$(mktemp)
|
TF=$(mktemp)
|
||||||
echo "DATA" > $TF
|
echo "DATA" > $TF
|
||||||
./cp $TF $LFILE
|
./cp $TF $LFILE
|
||||||
sudo:
|
sudo:
|
||||||
- code: |
|
- 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
|
LFILE=file_to_write
|
||||||
TF=$(mktemp)
|
TF=$(mktemp)
|
||||||
echo "DATA" > $TF
|
echo "DATA" > $TF
|
||||||
sudo cp $TF $LFILE
|
sudo cp $TF $LFILE
|
||||||
file-read:
|
|
||||||
- description: It reads data from files, it may be used to do privileged reads or disclose files outside a restricted file system. The path must be absolute.
|
|
||||||
code: |
|
|
||||||
LFILE=file_to_read
|
|
||||||
cp "$LFILE" /dev/stdout
|
|
||||||
---
|
---
|
||||||
|
Loading…
Reference in New Issue
Block a user