News:

Help! We're trapped in the computer, and the computer is trapped in 2008! Someone call the time police!

Main Menu

[VB6] Bruteforce Method

Started by Joe, August 24, 2005, 12:09:04 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Quik

But there isn't a nice dictionary list/script in written in java that's open source and linked to from this forum, yet!
Quote[20:21:13] xar: i was just thinking about the time iago came over here and we made this huge bomb and light up the sky for 6 min
[20:21:15] xar: that was funny

MyndFyre

It's not like it would be that hard...

Here's a hint: BufferedReader.readLine().
Quote from: Joe on January 23, 2011, 11:47:54 PM
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Quote from: Rule on May 26, 2009, 02:02:12 PMOur species really annoys me.

Quik

Quote from: Quik on August 24, 2005, 08:53:23 PM
But there isn't a nice dictionary list/script in written in java that's open source and linked to from this forum, yet!

Search for "hard" displayed 0 results.
Quote[20:21:13] xar: i was just thinking about the time iago came over here and we made this huge bomb and light up the sky for 6 min
[20:21:15] xar: that was funny

iago

Why would you need a dictionary programmed? All it is is a list of words. 

Here is the shortest wordlist I have: http://www.javaop.com/~iago/commonpwd.txt

If you really want to use it from Java, this might or might not work (untested)

// ReadDictionary.java
public class ReadDictionary
{
  public static void main(String []args) throws Exception
  {
    BufferedReader in = new BufferedReader(new FileReader(new File("commandpwd.txt")));
    String line;
    while((line = in.readLine()) != null)
      dosomethingwith(line);
  }
}


There, now you have an opensource thinger :P

Anyway, the problem with your idea is that, to my knowledge, there's no way to pull a list of words from dictionary.com.  Even if there was, it would be nothing remotely simiilar to getting the definition, so my plugin would be useless  So :P

Joe

Quoteboner

Nice wordlist iago.
Quote from: Camel on June 09, 2009, 04:12:23 PMI'd personally do as Joe suggests

Quote from: AntiVirus on October 19, 2010, 02:36:52 PM
You might be right about that, Joe.


Blaze

Quote
batman
It has everything!
And like a fool I believed myself, and thought I was somebody else...

Quik

Quote from: iago on August 24, 2005, 10:06:38 PM
Why would you need a dictionary programmed? All it is is a list of words.

Here is the shortest wordlist I have: http://www.javaop.com/~iago/commonpwd.txt

If you really want to use it from Java, this might or might not work (untested)

// ReadDictionary.java
public class ReadDictionary
{
public static void main(String []args) throws Exception
{
BufferedReader in = new BufferedReader(new FileReader(new File("commandpwd.txt")));
String line;
while((line = in.readLine()) != null)
dosomethingwith(line);
}
}


There, now you have an opensource thinger :P

Anyway, the problem with your idea is that, to my knowledge, there's no way to pull a list of words from dictionary.com. Even if there was, it would be nothing remotely simiilar to getting the definition, so my plugin would be useless So :P

It was an example; I didn't even check to see if it would work. Shut up, hoe.
Quote[20:21:13] xar: i was just thinking about the time iago came over here and we made this huge bomb and light up the sky for 6 min
[20:21:15] xar: that was funny