Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


how to Brute Force MD5 filter_list
Author
Message
RE: how to Brute Force MD5 #7
In the GUI you must have a button in order to select the wordlist, now when the user selects the wordlist just read that file.

For Reading/Writing: https://docs.oracle.com/javase/tutorial/.../file.html

Now for the compare part:

Code:
try (BufferedReader reader = Files.newBufferedReader(file, charset)) {
    String line = null;
    while ((line = reader.readLine()) != null) {
        String hash = md5(line); //Use some library for MD5 conversion
        if(hash == hashToCrack) {
               System.out.println("Found a possible match! Word is: " + line);
               break;
        }
    }
} catch (IOException x) {
    System.err.format("IOException: %s%n", x);
}

Java Docs are your friend dude, use em. Plus Stack Overflow too
My Blog: http://www.procurity.wordpress.com
Donations: 1HLjiSbnWMpeQU46eUVCrYdbkrtduX7snG

Reply





Messages In This Thread
how to Brute Force MD5 - by Mr.Kurd - 07-26-2016, 01:02 PM
RE: how to Brute Force MD5 - by Ex094 - 07-26-2016, 01:38 PM
RE: how to Brute Force MD5 - by Skullmeat - 07-26-2016, 03:15 PM
RE: how to Brute Force MD5 - by Mr.Kurd - 07-26-2016, 03:53 PM
RE: how to Brute Force MD5 - by Ex094 - 07-26-2016, 04:00 PM
RE: how to Brute Force MD5 - by Mr.Kurd - 07-26-2016, 04:04 PM
RE: how to Brute Force MD5 - by Ex094 - 07-26-2016, 04:18 PM
RE: how to Brute Force MD5 - by Mr.Kurd - 07-26-2016, 04:21 PM
RE: how to Brute Force MD5 - by Ex094 - 07-26-2016, 04:23 PM
RE: how to Brute Force MD5 - by Mr.Kurd - 07-26-2016, 04:25 PM
RE: how to Brute Force MD5 - by Mr.Kurd - 07-26-2016, 06:10 PM
RE: how to Brute Force MD5 - by Ex094 - 07-26-2016, 07:10 PM
RE: how to Brute Force MD5 - by Mr.Kurd - 07-26-2016, 07:31 PM
RE: how to Brute Force MD5 - by Ex094 - 07-26-2016, 07:36 PM
RE: how to Brute Force MD5 - by Mr.Kurd - 07-26-2016, 07:39 PM
RE: how to Brute Force MD5 - by Mr.Kurd - 07-27-2016, 11:48 AM
RE: how to Brute Force MD5 - by Ex094 - 07-27-2016, 12:03 PM



Users browsing this thread: 2 Guest(s)