Author Topic: [VB6] Bruteforce Method  (Read 10600 times)

0 Members and 1 Guest are viewing this topic.

Offline Quik

  • Webmaster Guy
  • x86
  • Hero Member
  • *****
  • Posts: 3262
  • \x51 \x75 \x69 \x6B \x5B \x78 \x38 \x36 \x5D
    • View Profile
Re: [VB6] Bruteforce Method
« Reply #15 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!
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

Offline MyndFyre

  • Boticulator Extraordinaire
  • x86
  • Hero Member
  • *****
  • Posts: 4540
  • The wait is over.
    • View Profile
    • JinxBot :: the evolution in boticulation
Re: [VB6] Bruteforce Method
« Reply #16 on: August 24, 2005, 09:12:08 pm »
It's not like it would be that hard...

Here's a hint: BufferedReader.readLine().
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Our species really annoys me.

Offline Quik

  • Webmaster Guy
  • x86
  • Hero Member
  • *****
  • Posts: 3262
  • \x51 \x75 \x69 \x6B \x5B \x78 \x38 \x36 \x5D
    • View Profile
Re: [VB6] Bruteforce Method
« Reply #17 on: August 24, 2005, 09:22: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

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: [VB6] Bruteforce Method
« Reply #18 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)

Code: [Select]
// 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

Offline Joe

  • B&
  • Moderator
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: [VB6] Bruteforce Method
« Reply #19 on: August 24, 2005, 10:25:59 pm »
Quote
boner

Nice wordlist iago.
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline Blaze

  • x86
  • Hero Member
  • *****
  • Posts: 7136
  • Canadian
    • View Profile
    • Maide
Re: [VB6] Bruteforce Method
« Reply #20 on: August 24, 2005, 11:20:39 pm »
Quote
batman
It has everything!
And like a fool I believed myself, and thought I was somebody else...

Offline Quik

  • Webmaster Guy
  • x86
  • Hero Member
  • *****
  • Posts: 3262
  • \x51 \x75 \x69 \x6B \x5B \x78 \x38 \x36 \x5D
    • View Profile
Re: [VB6] Bruteforce Method
« Reply #21 on: August 25, 2005, 12:35:38 am »
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)

Code: [Select]
// 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