1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-05-22 23:36:03 +02:00

Create strings.md

This commit is contained in:
bcoles 2020-03-18 00:25:54 +11:00 committed by GitHub
parent 03c2183f51
commit 4cb792888c
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

16
_gtfobins/strings.md Normal file
View File

@ -0,0 +1,16 @@
---
description: This only returns ASCII strings, thus it is not suitable for binary files.
functions:
file-read:
- code: |
LFILE=file_to_read
strings "$LFILE"
suid:
- code: |
LFILE=file_to_read
./strings "$LFILE"
sudo:
- code: |
LFILE=file_to_read
sudo strings "$LFILE"
---