1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2026-01-13 10:51:33 +01:00
GTFOBins.github.io/_gtfobins/tee.md
Andrea Cardaci 852407bb02 Add tee
2018-05-30 19:20:51 +02:00

17 lines
372 B
Markdown

---
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"
---