New Tool: kwprocessor
#12
BTW another tool that i'm currently looking for, although that's really a different topic, is:

"take a sentence and only use the first letter of each word"

I've also used this a lot for my own passwords in the past, before i moved on to passwords created by a password generator. - I have seen this the first time already 20 years ago, with "Our father who art in Heaven, ..." which would result in ofwaih. In fact it took several years to find out where "vuihgwdn" came from, thats the german version "Vater unser im Himmel, geheiligt werde dein Name. ...". Actually a priest told me years later, because he did recognize the pattern LOL.

# our father who art in heaven ...
grep "ofwaih" 10-million-combos.txt | wc -l
6

# timsp = this is my secret password
grep -i "timsp" 10-million-combos.txt | wc -l
26

# my dirty little secret
grep -i "mdls" 10-million-combos.txt | wc -l
15

But the counts are quite low. - Might be unattractive for hashdump cracking, but if you need "that one single password" any candidate is a win, right?


--
edit:
And yet another idea: SSIDs that are not pre-defined defaults are also user-chosen strings and therefore might be a source for additional statistics. As most of you know there are databases like wigle.net, so maybe it's also worth a try getting all user-defined SSIDs and see how they perform on password cracking. I have seen SSIDs that are actually keyboard walks (therefore also potentially a password somewhere else), and other SSIDs that just look like a password. Many will be useless, though. - However, simple scenario: a reversed SSID might just be the password for that wifi. - Many places like bars and restaurants had similar wifi passwords (in the sense of low levenshtein distance) which were closely related to the SSID. And so on ...


Messages In This Thread
New Tool: kwprocessor - by atom - 08-15-2016, 11:09 AM
RE: New Tool: kwprocessor - by richk - 08-15-2016, 12:12 PM
RE: New Tool: kwprocessor - by jodler303 - 08-15-2016, 02:00 PM
RE: New Tool: kwprocessor - by richk - 08-15-2016, 10:30 PM
RE: New Tool: kwprocessor - by jodler303 - 08-15-2016, 11:25 PM
RE: New Tool: kwprocessor - by richk - 08-16-2016, 12:28 AM
RE: New Tool: kwprocessor - by BeanBagKing - 08-15-2016, 05:41 PM
RE: New Tool: kwprocessor - by kiara - 08-15-2016, 06:17 PM
RE: New Tool: kwprocessor - by Kgx Pnqvhm - 08-15-2016, 09:54 PM
RE: New Tool: kwprocessor - by jodler303 - 08-16-2016, 01:36 AM
RE: New Tool: kwprocessor - by richk - 08-16-2016, 03:40 AM
RE: New Tool: kwprocessor - by jodler303 - 08-16-2016, 01:13 PM
RE: New Tool: kwprocessor - by atom - 08-17-2016, 05:02 PM
RE: New Tool: kwprocessor - by atom - 08-21-2016, 08:49 PM