UltraMysterious
Newbie
- Nov 11, 2017
- 35
- 10
Hi All,
I'm making a mass youtube account generator and have had success with a system which mimics human mouse movements by clicking on the page elements and sending keystrokes to fill out random information. However, it takes time and I would like it to run a lot faster, so I looked into sending the post requests directly, which would be a hell of a lot faster.
To begin, I changed the form method on accounts.google.com/signup from 'post' to 'get' to see the fields which were passed. When I entered this information into a post utility online, the response was the content of accounts.google.com/signup, meaning it didn't let me move on to the next page which is phone verification.
Here are the test values I used with Content-Type: application/x-www-form-urlencoded:
timeStmp=1510412433018
secTok=.AG5fkS_ThPLevf7mcaNj0aUeqsgaNodeiA%3D%3D // taken from sign in page
dsh=-5878283877936222433 // taken from sign in page
ktl=
ktf=
_utf8=%26%239731%3B // snowman character for some reason
bgresponse=js_disabled
FirstName=UltraMysteriousXYZ
LastName=Spoopingtons
[email protected]
Passwd=UltraMysteriousXYZSpoopingtons
PasswdAgain=UltraMysteriousXYZSpoopingtons
BirthMonth=01
BirthDay=12
BirthYear=1992
Gender=FEMALE
RecoveryPhoneCountry=GB
RecoveryPhoneNumber=
RecoveryEmailAddress=
CountryCode=GB
timeStmp2=1510412436018 // a little while later than timeStmp so it seems time has been taken
secTok2=.AG5fkS8nN3CgR079tyM_-PAW2lf3ps3LqQ%3D%3D // taken from sign in page
submitbutton=Next+step
I noticed there's a cookie called GAPS whose value changed when I clicked out of certain elements, as if it was storing my actions
The user agent field was User-Agent: runscope/0.1, I already have working code to fake my user agent if this is the issue.
Any help towards figuring out what needs to be done to get this working would be greatly appreciated. My concern is that there's some js behind the scenes monitoring the user's mouse movements, with their servers denying account creation requests unless there has been sufficient and non-robotic mouse movement on the page. If this is the case, I'm sure I can invoke some functions to get things working, but naturally I don't want to have to look into that if I don't need to c:
I'm making a mass youtube account generator and have had success with a system which mimics human mouse movements by clicking on the page elements and sending keystrokes to fill out random information. However, it takes time and I would like it to run a lot faster, so I looked into sending the post requests directly, which would be a hell of a lot faster.
To begin, I changed the form method on accounts.google.com/signup from 'post' to 'get' to see the fields which were passed. When I entered this information into a post utility online, the response was the content of accounts.google.com/signup, meaning it didn't let me move on to the next page which is phone verification.
Here are the test values I used with Content-Type: application/x-www-form-urlencoded:
timeStmp=1510412433018
secTok=.AG5fkS_ThPLevf7mcaNj0aUeqsgaNodeiA%3D%3D // taken from sign in page
dsh=-5878283877936222433 // taken from sign in page
ktl=
ktf=
_utf8=%26%239731%3B // snowman character for some reason
bgresponse=js_disabled
FirstName=UltraMysteriousXYZ
LastName=Spoopingtons
[email protected]
Passwd=UltraMysteriousXYZSpoopingtons
PasswdAgain=UltraMysteriousXYZSpoopingtons
BirthMonth=01
BirthDay=12
BirthYear=1992
Gender=FEMALE
RecoveryPhoneCountry=GB
RecoveryPhoneNumber=
RecoveryEmailAddress=
CountryCode=GB
timeStmp2=1510412436018 // a little while later than timeStmp so it seems time has been taken
secTok2=.AG5fkS8nN3CgR079tyM_-PAW2lf3ps3LqQ%3D%3D // taken from sign in page
submitbutton=Next+step
I noticed there's a cookie called GAPS whose value changed when I clicked out of certain elements, as if it was storing my actions
The user agent field was User-Agent: runscope/0.1, I already have working code to fake my user agent if this is the issue.
Any help towards figuring out what needs to be done to get this working would be greatly appreciated. My concern is that there's some js behind the scenes monitoring the user's mouse movements, with their servers denying account creation requests unless there has been sufficient and non-robotic mouse movement on the page. If this is the case, I'm sure I can invoke some functions to get things working, but naturally I don't want to have to look into that if I don't need to c:
Last edited: