> For the complete documentation index, see [llms.txt](https://ed4m4s.blog/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ed4m4s.blog/password-attacks/unshadow.md).

# Unshadow

### Unshadow

If you have found the passwd and shadow files under linux you can combine them on a file using **unshadow** command and then crack them using **John**.&#x20;

```
unshadow passwd.txt shadow.txt 
unshadow passwd.txt shadow.txt > unshadow.txt
john --rules --wordlist=/usr/share/wordlists/rockyou.txt unshadow.txt 
```
