GTFOBins.github.io/_gtfobins/tee.md

17 lines
372 B
Markdown
Raw Normal View History

2018-05-30 19:20:51 +02:00
---
description: It can only append data if the destination exists.
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"
---