View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0000773 | Kali Linux | New Tool Requests | public | 2013-12-14 18:52 | 2025-07-14 09:18 |
| Reporter | Pokeswap | Assigned To | muts | ||
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | closed | Resolution | no change required | ||
| Platform | x64 | OS | Kali | OS Version | 1.0 |
| Summary | 0000773: file to do unshadow and john as one | ||||
| Description | I find it hard to crack linux shadow files with john/unshadow, so I created a shell script to do it all in one. I have attached the file to this report. Please consider including this small script in the next Kali release to make cracking linux passwords just a little easier. Thanks in advance for your consideration. | ||||
| Attached Files | linuxpwdcrack (347 bytes)
#/bin/bash echo "enter location of passwd file" read passwdfile echo "enter location of shadow file" read shadowfile echo "enter output file" read outputfile unshadow $passwdfile $shadowfile > /tmp/crackedpasswd.db john /tmp/crackedpasswd.db --format=sha512crypt john -show /tmp/crackedpasswd.db > $outputfile rm -f /tmp/crackedpasswd.db exit 1 | ||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2013-12-14 18:52 | Pokeswap | New Issue | |
| 2013-12-14 18:52 | Pokeswap | File Added: linuxpwdcrack | |
| 2013-12-15 15:44 | muts | Note Added: 0001209 | |
| 2013-12-15 15:44 | muts | Status | new => closed |
| 2013-12-15 15:44 | muts | Assigned To | => muts |
| 2013-12-15 15:44 | muts | Resolution | open => no change required |
| 2025-07-14 09:18 | g0tmi1k | Priority | low => normal |