[Coding] How to automate gmail account creation process?

boleklolek

Senior Member
Joined
Nov 12, 2013
Messages
999
Reaction score
232
I have tried automating it using node and selenium, but no luck the account got instantly banned as soon as I created it, I have automated the process of inputing into the forms, getting number, inserting it retrieving sms and inputing it in verification with success, but google somehow detects it is made by bot.

A guess from another forum is that it was detected via selenium send_key where a human when presses the key after one another is like 80-100 miliseconds where with selenium it is like 8 miliseconds, so completely not natural.

Does anyone have any clue which tool one might use to accomplish it without getting banned at the end OR how to get around it?

Other hints were like reversing google bot guard but thats some hardcore stuff and I doubt if I would ever do this even If Ive spent my entire life on it lol
 
Your best bet is, as said, selenium.

The reason it's getting banned is because it was either:

  • Too fast creation
  • Not human like (google looks at mouse cursor amongst other things)
  • No proxies used (or no residential proxies)
Botting ain't as easy as you think ;)
 
Automating gmail creation is really hard. The key is to understand botguard is impossible for average JavaScript dev. The botguard decides if you get pv or not, use the same number or not. Anyway looks like Google audits every account based on various parameters and get banned even after a week
 
I believe that botguard is such a pain that they regenerate the file differently every interval of time, so even if you did get it, it could change afterward.

I think also selenium is detectable through a number of fingerprinting methods. It may be possible if you figure out how to disguise those. I have seen people who do it successfully but it certainly is not fun
 
Your best bet is, as said, selenium.

The reason it's getting banned is because it was either:

  • Too fast creation
  • Not human like (google looks at mouse cursor amongst other things)
  • No proxies used (or no residential proxies)
Botting ain't as easy as you think ;)

Automating gmail creation is really hard. The key is to understand botguard is impossible for average JavaScript dev. The botguard decides if you get pv or not, use the same number or not. Anyway looks like Google audits every account based on various parameters and get banned even after a week

I believe that botguard is such a pain that they regenerate the file differently every interval of time, so even if you did get it, it could change afterward.

I think also selenium is detectable through a number of fingerprinting methods. It may be possible if you figure out how to disguise those. I have seen people who do it successfully but it certainly is not fun

and what about Autoit ?? Might be possible with it too? Because I have never tried autoit, but from quick reading about it its possible to automate a lot of things.
 
Other hints were like reversing google bot guard but thats some hardcore stuff and I doubt if I would ever do this even If Ive spent my entire life on it lol

My interest has been piqued. Need to figure out what is all the buzz about this "botguard", this I must find, and reverse engineer it I must do.
 
Back
Top