digits list
digits list
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.
- bad_brain
- Site Owner
- Posts: 11638
- Joined: 06 Apr 2005, 16:00
- 19
- Location: In your eye floaters.
- Contact:
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:
this script prints the numbers from 1 to 1.000.000 on the screen, to get a txt-file simply pipe it:
that´s it!
Code: Select all
#! /usr/bin/perl -w
for ($i=1;$i<=1000000;$i++)
{
print "$i\n";
}
Code: Select all
perl scriptname.pl > textfile.txt
brute force, messy and really a DOS
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..
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
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..
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.
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.