From 6af1e0f731760801d7b659b39897de5888714355 Mon Sep 17 00:00:00 2001 From: skyper <5938498+SkyperTHC@users.noreply.github.com> Date: Tue, 27 May 2025 11:32:20 +0100 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 01b67c9..72f88e9 100644 --- a/README.md +++ b/README.md @@ -924,10 +924,10 @@ nice -n 19 hashcat -o cracked.txt my-hash.txt -w1 -a3 10-days_7-16.hcmask -O -d2 Crack OpenSSH's `known_hosts` hashes to reveal the IP address: ```shell -curl -SsfL https://github.com/chris408/known_hosts-hashcat/raw/refs/heads/master/ipv4_hcmask.txt -o ipv4_hcmask.txt -curl -SsfL https://github.com/chris408/known_hosts-hashcat/raw/refs/heads/master/kh-converter.py -o kh-converter.py -python kh-converter.py ~/.ssh/known_hosts >~/.ssh/known_hosts_hashes -hashcat -m 160 --quiet --hex-salt ~/ssh/known_hosts_hashes -a 3 ipv4_hcmask.txt +curl -SsfL https://github.com/chris408/known_hosts-hashcat/raw/refs/heads/master/ipv4_hcmask.txt -O +curl -SsfL https://github.com/chris408/known_hosts-hashcat/raw/refs/heads/master/kh-converter.py -O +python3 kh-converter.py ~/.ssh/known_hosts >known_hosts_hashes +hashcat -m 160 --quiet --hex-salt known_hosts_hashes -a 3 ipv4_hcmask.txt ``` 👉 Read the [FAQ](https://hashcat.net/wiki/doku.php?id=frequently_asked_questions).