1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-20 19:01:59 +02:00
GTFOBins.github.io/_gtfobins/tee.md

18 lines
376 B
Markdown
Raw Normal View History

2018-05-30 19:20:51 +02:00
---
2018-06-01 12:40:05 +02:00
description: |
It can only append data if the destination exists.
2018-05-30 19:20:51 +02:00
functions:
sudo-enabled:
- code: |
LFILE=file_to_write
echo data | sudo tee -a "$LFILE"
suid-enabled:
- code: |
LFILE=file_to_write
echo data | ./tee -a "$LFILE"
file-write:
- code: |
LFILE=file_to_write
echo data | ./tee -a "$LFILE"
---