> For the complete documentation index, see [llms.txt](https://paul-gleason.gitbook.io/sec-335-eth.-hacking-and-pen.-testing/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://paul-gleason.gitbook.io/sec-335-eth.-hacking-and-pen.-testing/tools-recon/hashcat.md).

# Hashcat

### Usage

How this works is hash cat takes in a file with the shadow and password combined.

```bash
hashcat -m <Method or algorithm that produced the hash> -a 0 -o <input file> <output file> <wordlist>
```

### Example

```bash
hashcat -m 1800 -a 0 -o crack.txt unshadowed.txt wordlist.txt
```
