digits list

No explicit questions like "how do I hack xxx.com" please!
Post Reply
User avatar
godlike
Newbie
Newbie
Posts: 4
Joined: 08 Mar 2006, 17:00
18

digits list

Post by godlike »

Hello sory for mistakes because I am from overseas. Can you give me a link where can I find lists of numbers. I need it for brutforce. List of words I have, but I need list of digits. Do you understood a question? Thanks for help.

User avatar
Gogeta70
^_^
^_^
Posts: 3275
Joined: 25 Jun 2005, 16:00
18

Post by Gogeta70 »

google: "wordlists"
¯\_(ツ)_/¯ It works on my machine...

User avatar
godlike
Newbie
Newbie
Posts: 4
Joined: 08 Mar 2006, 17:00
18

Post by godlike »

I tried it first. But there were just words list but not digits list. Anyway thanks for help.

User avatar
bad_brain
Site Owner
Site Owner
Posts: 11636
Joined: 06 Apr 2005, 16:00
19
Location: In your eye floaters.
Contact:

Post by bad_brain »

generate a list by your own, it´s very easy and works by a simple loop, here´s how I would do it in Perl for example:

Code: Select all

#! /usr/bin/perl -w
for ($i=1;$i<=1000000;$i++)
{
print "$i\n";
}
this script prints the numbers from 1 to 1.000.000 on the screen, to get a txt-file simply pipe it:

Code: Select all

perl scriptname.pl > textfile.txt
that´s it!
:wink:

User avatar
DNR
Digital Mercenary
Digital Mercenary
Posts: 6114
Joined: 24 Feb 2006, 17:00
18
Location: Michigan USA
Contact:

brute force, messy and really a DOS

Post by DNR »

Brute forcing is NOISY and messy. It is akin to using a shotgun
to pick a lock on a door. Your IP will be logged as well, so I hope
you understand proxies.

Brute force = DOS attack. You will likely just lock out the user from
their account as most software will lock out an account after so many
failed log-ins. No use running 4mb wordlist file when the account will
be locked out after three tries.. :roll:

Use a search engine to do your own homework:


http://zedz.net/
http://www.phenoelit.de/obiwan/download.html
http://www.justpain.com/ut_maps/wordlists/
http://www.antiserver.it/Password-Crackers/
http://www.geocities.com/SiliconValley/Sector/4834/

Use the damn search engine here:
http://www2.packetstormsecurity.org/

DNR
-
He gives wisdom to the wise and knowledge to the discerning. He reveals deep and hidden things; he knows what lies in Darkness, and Light dwells with him.

User avatar
godlike
Newbie
Newbie
Posts: 4
Joined: 08 Mar 2006, 17:00
18

Post by godlike »

I will try that script. I was bruteforcing one email account and trust me no matter how long you brutforsing it. So thanks for help.

Post Reply