Nine Years of Service
Posts: 6
Threads: 3
Multiple accounts? 02-15-2017, 10:09 PM
#1
Maybe I can get help here.
I am new to this.
Say if I wanted to make 100+ accounts to sign up on a webstite without having to type all the information in over and over, how would I go about making a program like that? Where would I start?
•
Nine Years of Service
Posts: 2,395
Threads: 130
RE: Multiple accounts? 02-15-2017, 10:11 PM
#2
Selenium + PhantomJS works ok, you need to learn Python or a similar language for that.
Another option is libraries such as Requests and Mechanize, again, you need to know Python.
(11-02-2018, 02:51 AM)Skullmeat Wrote: Ok, there no real practical reason for doing this, but that's never stopped me.
•
Ten Years of Service
Posts: 3,024
Threads: 155
RE: Multiple accounts? 02-15-2017, 11:09 PM
#3
This could be pretty easy with the python "requests" library. You should check it out.
~~ Might be back? ~~
•
Twelve Years of Service
Posts: 1,334
Threads: 67
RE: Multiple accounts? 02-16-2017, 12:10 AM
#4
It's all fun and games... until you hit bot-proofing.
Are there any anti-bot measures on this site? (captcha... etc.)
(This post was last modified: 02-16-2017, 12:14 AM by m0dem.)
Twelve Years of Service
Posts: 1,224
Threads: 88
RE: Multiple accounts? 02-16-2017, 12:17 AM
#5
Automation script, look up some scripts that are good for webpage information grabbing, process that through another script or possibly the same script and inject the info back into the site.
•