mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-24 13:59:17 +01:00
Fix iconv bin name
This commit is contained in:
parent
7aa5510f29
commit
aca4fbe67b
@ -4,18 +4,18 @@ functions:
|
||||
- description: Write ASCII data to file.
|
||||
code: |
|
||||
LFILE=file_to_write
|
||||
echo "DATA" | inconv -o "$LFILE"
|
||||
echo "DATA" | iconv -o "$LFILE"
|
||||
file-read:
|
||||
- description: Read data from file as UTF-8.
|
||||
code: |
|
||||
LFILE=file_to_read
|
||||
inconv -f UTF8 "$LFILE"
|
||||
iconv -f UTF8 "$LFILE"
|
||||
suid:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
./inconv -f UTF8 "$LFILE"
|
||||
./iconv -f UTF8 "$LFILE"
|
||||
sudo:
|
||||
- code: |
|
||||
LFILE=file_to_read
|
||||
sudo inconv -f UTF8 "$LFILE"
|
||||
sudo iconv -f UTF8 "$LFILE"
|
||||
---
|
||||
|
Loading…
Reference in New Issue
Block a user