Post: numeric wordlist generator
11-21-2011, 07:51 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Ever need a numeric wordlist for aircrack, backtrack, or any brute force program? Well now you can!

I created a batch file that creates a numeric wordlist from 1-infinity! enjoy! Happy

You must login or register to view this content.

(no need for virus scan because it's like 10 lines of coding, and you can edit yourself, not a virus Winky Winky)
(adsbygoogle = window.adsbygoogle || []).push({});
11-24-2011, 06:22 PM #11
Pichu
RIP PICHU.
Originally posted by Team
I am working on this.

%char% = "abcdefghijklmnopqrstuvwxyz"

%sel% = len(1)

%randomchar% = %sel%(%char%)

Or something like that...


Yea, I'm going to start working on one that allows user selection with a UI. When and if I complete I'll upload for you all.

(Reason for the "If" part is I get busy or go off and play my PS3 lol). :P
11-24-2011, 09:44 PM #12
Looks cool. This would be great for my Minecraft account cracker.
11-24-2011, 10:37 PM #13
Originally posted by Sublimity View Post
Yea, I'm going to start working on one that allows user selection with a UI. When and if I complete I'll upload for you all.

(Reason for the "If" part is I get busy or go off and play my PS3 lol). :P


If you need any help im here. I've coded in rb, c objective, and java. (as well as some others) but if you need anything hit me up Smile
11-24-2011, 11:03 PM #14
Epic?
Awe-Inspiring
Originally posted by Sublimity View Post
Yea, I'm going to start working on one that allows user selection with a UI. When and if I complete I'll upload for you all.

(Reason for the "If" part is I get busy or go off and play my PS3 lol). :P


I figure that you'll probably be programming in C# or VB.NET...

A while ago I wrote a class for a friend, you can find it You must login or register to view this content. if you were so inclined. Anyways, it basically deals with generating pseudo-random values.

I won't post the whole class here as it's not all relevant, but here's a method I wrote (in C#) for generating random strings:


    public string GetRandomString(int numberOfChars, string charsToUse = "qwertyuiopasdfghjklzxcvbnmQWERTYIOPASDFGHJKLZXCVBNM")
{
System.Random random = new System.Random();
if (string.IsNullOrEmpty(charsToUse))
charsToUse = "qwertyuiopasdfghjklzxcvbnmQWERTYIOPASDFGHJKLZXCVBNM";

System.Text.StringBuilder returnMe = new System.Text.StringBuilder();

for (int i = 0; i < numberOfChars; i++)
returnMe.Append(charsToUse[random.Next(0, charsToUse.Length)]);

return returnMe.ToString();
}


You should see the rest of the class if you want to generate random booleans, numbers, etc.
11-25-2011, 01:14 AM #15
Originally posted by Team
Ever need a numeric wordlist for aircrack, backtrack, or any brute force program? Well now you can!

I created a batch file that creates a numeric wordlist from 1-infinity! enjoy! Happy

You must login or register to view this content.

(no need for virus scan because it's like 10 lines of coding, and you can edit yourself, not a virus Winky Winky)


you should've just posted the code. lol just saying.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo