Bulk email verification using ping to smtp but keep getting blacklist

longvanren

Newbie
Joined
Jan 24, 2022
Messages
14
Reaction score
0
I'm currently create a email verifier. And have gone through a lot of step but stuck on this last step
- Deep-level extended SMTP verifications on each email address

I have encounter problem with the last step is to perfom SMTP verifications.

- I try to check for mx record of that domain.Then try to connect to that smtp server. Then perfom command EHLO -> MAIL -> RCPT TO ... -> QUIT.
But i'm keep getting blacklist when try to connect to smtp server or after serveral connect my ip got blacklist.


But how did service like hunter.io or any service that have email verifier not getting on black list?
- My question is, is there any other way that this can be done? How do these services claim reliable validation in light of the above? I know that they are not going to reveal their methodologies, but can anyone on SO shed some more light?
 
When you know that you will have your own services that's why few things are not public they are pushed to some corner. if you need some light then just concentrate on error codes i cannot really give more information above that..

Good luck :)
 
and the funny thing is even after you master all those secrets it's not going to make any big difference for your email marketing. The email lists you download or scrape from public sources are still not going to generate enough leads.

There are other ways to filter the list. For example, Do you know you can try to register an account on a popular service using someone else's email address? If the account was used there before you will get an error like: "This email has already been used"...........
 
and the funny thing is even after you master all those secrets it's not going to make any big difference for your email marketing. The email lists you download or scrape from public sources are still not going to generate enough leads.

There are other ways to filter the list. For example, Do you know you can try to register an account on a popular service using someone else's email address? If the account was used there before you will get an error like: "This email has already been used"...........
yes thank you for the suggestion
 
When you know that you will have your own services that's why few things are not public they are pushed to some corner. if you need some light then just concentrate on error codes i cannot really give more information above that..

Good luck :)
Yes your word had made me improve a lot. But if you feel comfortable can you suggest some corner for me?
Thanks you in advanced
 
MTA's will never let you know for REAL if an e-mail address exists or not until you actually pass an e-mail to it. The best you can do in terms of verifying if a domain exists and if it allows e-mails or not is to check MX Records for that domain.
Ping and half requests etc will get you banned only.
 
MTA's will never let you know for REAL if an e-mail address exists or not until you actually pass an e-mail to it. The best you can do in terms of verifying if a domain exists and if it allows e-mails or not is to check MX Records for that domain.
Ping and half requests etc will get you banned only.
Thanks for your recommend
 
and the funny thing is even after you master all those secrets it's not going to make any big difference for your email marketing. The email lists you download or scrape from public sources are still not going to generate enough leads.

There are other ways to filter the list. For example, Do you know you can try to register an account on a popular service using someone else's email address? If the account was used there before you will get an error like: "This email has already been used"...........

Hey hey, I guess I'm not the only one.

But please for the love of God do not mass sign up hundreds of thousands of people to random sites for the sake of verifying them.

1. Now that method is dead for everyone that tries after you.

2. All these people will be slammed with random sign up/confirmation emails, likely alerting them to contact the website worried they are hacked. This only brings the attention to their admins and tightens up bot protection, again, harming alot of other peoples gigs who run bots on that site for various things. Also bans your IP.

What I would suggest alternatively which is much more affective and does not burn anything, is create an account on all popular platforms with any dummy email. Once you are logged in, go to edit account details and try to update the accounts email to an email you want to check if its in their DB, it won't let you change to an email that alreayd exists.

Run a script to multi-thread and automate attempting all the emails in your list (use more than one account). This way doesn't burn the method.
 
When testing with SMTP, you need to have some rotating proxies that allow SMTP.
 
Hey hey, I guess I'm not the only one.

But please for the love of God do not mass sign up hundreds of thousands of people to random sites for the sake of verifying them.

1. Now that method is dead for everyone that tries after you.

2. All these people will be slammed with random sign up/confirmation emails, likely alerting them to contact the website worried they are hacked. This only brings the attention to their admins and tightens up bot protection, again, harming alot of other peoples gigs who run bots on that site for various things. Also bans your IP.

What I would suggest alternatively which is much more affective and does not burn anything, is create an account on all popular platforms with any dummy email. Once you are logged in, go to edit account details and try to update the accounts email to an email you want to check if its in their DB, it won't let you change to an email that alreayd exists.

Run a script to multi-thread and automate attempting all the emails in your list (use more than one account). This way doesn't burn the method.
Hi tidelow. Im very appreciate for your suggestion. Now i understand i dont need to follow the old school. Need to think out of the box.
Thank you very much for the help!
 
Back
Top