1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2026-03-07 06:31:33 +01:00
GTFOBins.github.io/_gtfobins/hashcat
2026-01-16 23:30:32 +01:00

13 lines
417 B
Plaintext

---
functions:
file-write:
- code: |-
echo -n DATA | tee /path/to/wordlist | md5sum | awk '{print $1}' >/path/to/hash
hashcat -m 0 --quiet --potfile-disable -o /path/to/output-file --outfile-format=2 --outfile-autohex-disable /path/to/hash /path/to/wordlist
comment: |-
Append data to the end of the output file, creating if does not exist.
contexts:
sudo:
unprivileged:
...