1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-19 02:11:39 +02:00

Fix iconv bin name

This commit is contained in:
Andrea Cardaci 2020-03-15 11:50:02 +01:00
parent 7aa5510f29
commit aca4fbe67b

View File

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