Using SQLite Database as password list? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Using SQLite Database as password list? (/thread-7932.html) |
Using SQLite Database as password list? - Void.net - 11-07-2018 Hello, i wrote a program to store all the lists that clutter my dictionaries into one single databse. SQLlite 3 it is. with a command like : Code: hashcat -m2500 -w3 -O '/root/Dokumente/caps/Void.net/hashcap.hccapx' '/root/Ruby/databaser/database/BenchmarkBase.db' I was trying to crack my own WPA2 hash. Because I know the password, I put it into the DB between some else. Problem is now: Quote:Session..........: hashcat it seems that hashcat compare HEX values instead of compute them. So it was unable to crack anything. Can I do something about it? Did I miss a command? RE: Using SQLite Database as password list? - Mem5 - 11-07-2018 (11-07-2018, 08:42 PM)Void.net Wrote: SQLlite 3 it is. hashcat reads plain text file, not SQL. |