Add Logging, Email Permutation, Improved Multithreaded Performance, Random password generation, Buffered credential generation, test server#10
Conversation
leolion3
commented
Jun 29, 2024
- Added an old script of mine for generating email permutations, which generates thousands of emails per second.
- Used Faker for generating random data.
- Improved upon @sarimbinwaseem Using faker to generate data #3 implementation by shuffling email components (first, last names, numbers, symbols).
- Changed password generation to use random amount of characters and random combination.
- Used randomised user agents in each request
|
The idea of email permutation usually comes from developing bots, use a mail multiple times, to confirm registrations |
Thats why first shuffling the email components. Plus its not entirely true, as I've personally used these permutations on various websites that provide a new customer bonus per email address. Its actually only a gmail feature that dots get ignored in the username and that the gmail and googlemail domains are seen as identical. You can check out the demo here: https://github.com/leolion3/Portfolio/tree/master/Python/GmailPermutationGenerator |
|
For legitimate Services this might sometimes be the case (sometimes legal in nature), but if you want to "flood" a database with "legit looking" data, just adding dots and suffixes doesn't help, if it can be countered with a regex or simple script. A simple script to filter out "dots" for gmail accounts (append as you wish), to counter-act your script |
shuffling the components is valid |
|
@JanEickholt I changed the dots into email permutations, wanna take a look? :) @CybrZone other than that its ready for merge, code contains latest changes as well |