Keyspace List for WPA on Default Routers
#70
(07-16-2017, 03:11 AM)devilsadvocate Wrote: The python code for the 599 is functional, but it is very memory hungry.

You can probably fix that by replacing
Code:
return [y for y in cands if pwgen(y)[:l]==x]
with
Code:
return (y for y in cands if pwgen(y)[:l]==x)
Reply


Messages In This Thread
RE: Keyspace List for WPA on Default Routers - by undeath - 07-16-2017, 05:52 PM