Take a look to crunch. Maybe it can help you
How can I make a wordlist of all the possible phone number combinations that are in my area.
For example, I live in California where the area code to phone numbers is 818. So I need to learn how to make a wordlist with the numbers going from 8180000000 to 8189999999.
Can anyone help me out?
~Thanks
So sorry for posting this. I should've lurked more.
perl -e 'for($i=0; $i<=9999999999; $i++) {print "$i\n"}' > numberlist.txt
Take a look to crunch. Maybe it can help you
Google is your best friend :D