This commit is contained in:
Roman Mueller 2018-10-03 09:57:51 +02:00 committed by Andrea Cardaci
parent fbb0ccefa4
commit 0bca156294

15
_gtfobins/grep.md Normal file
View File

@ -0,0 +1,15 @@
---
functions:
file-read:
- code: |
LFILE=file_to_read
grep '' $LFILE
suid-enabled:
- code: |
LFILE=file_to_read
./grep '' $LFILE
sudo-enabled:
- code: |
LFILE=file_to_read
sudo grep '' $LFILE
---