![]() |
|
Multiple accounts? - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials) +--- Thread: Multiple accounts? (/Thread-Multiple-accounts) |
Multiple accounts? - therealmelgail - 02-15-2017 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? RE: Multiple accounts? - Blink - 02-15-2017 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. RE: Multiple accounts? - Bish0pQ - 02-15-2017 This could be pretty easy with the python "requests" library. You should check it out. RE: Multiple accounts? - m0dem - 02-16-2017 It's all fun and games... until you hit bot-proofing. Are there any anti-bot measures on this site? (captcha... etc.) RE: Multiple accounts? - DarkMuse - 02-16-2017 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. RE: Multiple accounts? - m0dem - 02-16-2017 (02-16-2017, 12:17 AM)DarkMuse Wrote: 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. Why is my sarcasm meter in the red? ![]() Or am I missing something? RE: Multiple accounts? - DarkMuse - 02-16-2017 (02-16-2017, 12:25 AM)m0dem Wrote:(02-16-2017, 12:17 AM)DarkMuse Wrote: 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. No sarcasm, just a general outline for him to start to approach this matter. Gotta think like a hacker not a skid
RE: Multiple accounts? - m0dem - 02-16-2017 (02-16-2017, 01:22 AM)DarkMuse Wrote:(02-16-2017, 12:25 AM)m0dem Wrote:(02-16-2017, 12:17 AM)DarkMuse Wrote: 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. Help me understand this. "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. " 1) Find a web scraping script A 2) "Process" script A through script B or script A (???) 3) Inject "the info" back into the site (???) RE: Multiple accounts? - DarkMuse - 02-16-2017 (02-16-2017, 02:26 AM)m0dem Wrote:(02-16-2017, 01:22 AM)DarkMuse Wrote:(02-16-2017, 12:25 AM)m0dem Wrote: Why is my sarcasm meter in the red? It was a haphazard reply and personally I've never done anything like this before but I would personally find a script to scrape a site, process the data returned, return to the website using possibly a different script if need be to plug in random data generated by the script. Is that not even remotely possible? RE: Multiple accounts? - m0dem - 02-16-2017 (02-16-2017, 02:30 AM)DarkMuse Wrote:(02-16-2017, 02:26 AM)m0dem Wrote:(02-16-2017, 01:22 AM)DarkMuse Wrote: No sarcasm, just a general outline for him to start to approach this matter. Gotta think like a hacker not a skid That makes a little more sense, but the OP needs to create "100" users on a site and he wants to automate the process so I think this needs a different approach. 1) Poke around with Firebug to get the necessary info. (login fields, xpaths, possible roadblocks, ...) 2) Make an appropriate Python script using gathered info and libraries such as Request or Selenium. 3) Run script. 4) ... 5) $$$ But if the OP doesn't know programming... he could hire someone. OP, tell us more. (does the sign up have captcha's or anything?) |