Added notes on Hashcat
This commit is contained in:
parent
e296912304
commit
c636c1f217
26
arch-config/Dokumente/Hashcat-testing.md
Normal file
26
arch-config/Dokumente/Hashcat-testing.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Hashcat
|
||||||
|
|
||||||
|
## Benchmark performance
|
||||||
|
```bash
|
||||||
|
hashcat --benchmark
|
||||||
|
```
|
||||||
|
|
||||||
|
## Wordlists
|
||||||
|
|
||||||
|
## Cracking
|
||||||
|
```bash
|
||||||
|
hashcat -a 0 -m 0 <inputfile>.txt -o passwords.txt <path/to/wordlist>.txt --disable-potfile
|
||||||
|
```
|
||||||
|
|
||||||
|
### Useful options
|
||||||
|
|
||||||
|
-a [num]: attack mode
|
||||||
|
-m [num]: hash type
|
||||||
|
-D [num]: openCL device to use. Multiple are separated with commas.
|
||||||
|
|
||||||
|
# Generate md5 hash
|
||||||
|
|
||||||
|
Also outputs the hash into a file.
|
||||||
|
```bash
|
||||||
|
openssl passwd -1 > <file>.txt
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user