toxydose / pnwgen

A very flexible phone number wordlist generator
60 stars 17 forks source link

Suffixes #2

Closed toxydose closed 7 years ago

toxydose commented 7 years ago

Is it necessary to add an ability to set a list of suffixes? I don`t want to overload the program with useless modules. Suffixes can help you when you will find the half-hidden phone numbers (looks like +0 000 *****00) during information gathering to generating thin-targeted wordlists.

knkrth commented 7 years ago

Yes it is. So that it won't generate sequence large number and it will reduce the load by only generating given prefix & suffix. For eg: prefix as 70 & suffix as 10 so that it will generate,

7000000010 7000000110 7000000210 ........................

toxydose commented 7 years ago

Thank you for your feedback. I will implement this feature soon.

knkrth commented 7 years ago

You are welcome but I'm using this right now http://textmechanic.com/text-tools/numeration-tools/generate-list-numbers/ works well & easy.

toxydose commented 7 years ago

i saw the sites like this, but sometimes it is faster to generate the sequence on your PC then generate remotely and then download. Sometimes you don`t have a good Internet connection.

knkrth commented 7 years ago

Yes, You are absolutely right.

toxydose commented 7 years ago

Added functionality https://github.com/toxydose/pnwgen/commit/f5af60a7acc4a8255d11a661010b62ce6685189d

Just run the program with the suffix in the argument: e.g

$python3 pnwgen.py 11

also, now you can quickly generate one sequence:

python3 pnwgen.py [prefix] [suffix]
knkrth commented 7 years ago

Thank you.