1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-19 02:11:39 +02:00
This commit is contained in:
Andrea Cardaci 2018-05-30 19:20:51 +02:00
parent 5aee2ec17e
commit 852407bb02

16
_gtfobins/tee.md Normal file
View File

@ -0,0 +1,16 @@
---
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"
---