Giter Site home page Giter Site logo

reddit-account-generator-and-mass-upvoter's Introduction

Reddit-Account-Generator-and-Mass-Upvoter

***THIS SCRIPT IS NOW OUT OF DATE ***looking for someone to update, description here: #10

This program is the fastest way to generate large amounts of Reddit accounts without using a Captcha service or paying for a VPN. Tools are also included to generate random account names and upvote comments or posts.

Example video

The above is an example video of the tool's usage.

Prerequisites

Firefox browser.

You must have the Tor service installed and running for this to propery work. Reddit limits account creation from individual IP addresses and Tor allows you to get around this.

sudo apt-get install tor

Selenium

You must also have Selenium installed.

pip install selenium

This may or may not be an issue for you, but Seleinum would not run properly with Firefox on my system. I had to update my geckowebdriver by moving the most recent version into /usr/local/bin/.

Instructions

randomUsernames.py

This file will generate a text file will 100 random usernames and passwords in the format of username:password.

creator.py

This file will create your accounts. When run it will open firefox using tor and enter the first username:password combo from 'redditNameList.txt' into Reddits's account creator. The program will now pause and wait for you to solve the captcha and Press 'sign up'. After you have done this, press enter and that username:password combo will be removed from 'redditNameList.txt' and moved to 'createdNames.txt'. Tor will restart to bypass Reddit's IP limiting. You can repeat this process until you have as many accounts as you want or need.

Note: Ocassionally the Captcha will not appear. I'm not sure why this happens, but if you move to a new IP it seems to resolve itself. If you press 'r' then 'enter' instead of just 'enter', it will skip the current username:password combo leaving it in 'redditNameList.txt' and not moving it to 'createdNames.txt'.

upvoter.py

This file allows you to upvote posts or comments. You must enter the link to the post or comment at the top of the file in 'postLink' or 'commentPermaLink' variable. You must also comment out the function call you are not preforming in main. When ran, this will iterate through 'createdNames.txt' signing in each account, upvoting, then moving to the next account. Tor is not used in this file as I didn't notice any vote limiting.

reddit-account-generator-and-mass-upvoter's People

Contributors

ahaggard2013 avatar ajmeese7 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

reddit-account-generator-and-mass-upvoter's Issues

Update to provide support for new reddit implementation

Reddit has updated their website login page. This update changes the element ID's of the login page, along with requiring an email to be entered to register. Updating to handle this change would require:

  1. update the element IDs accessed via the script
  2. update to enter random email address's before attempting to create an account (it doesn't seem like they need to be verifed, this means it can be any email, it should just be unique to each account and could be generated in a similar way to usernames)
  3. research/test any possible changes to how account creation is processed, and if this technique is still viable.

This is a pretty good beginner python project for someone looking to learn how to collaborate with git or improve their python. I don't plan on updating this myself, but if anyone would like to help contribute I'd be happy to help work through issues you may run into. Create a pull request with the update, or ask any questions you may have!

Unable to get past ReCaptcha on account creation

Ran the creator.py program. Everything gets filled out just fine, but when I go to do the ReCaptcha a message pops up saying "Your computer or network may be sending automated queries. To protect our users, we can't process your request right now". Is there any way around this? Some other settings I need to configure?

OSError

Hey, not sure what I have done wrong but I followed all the steps and receive this error:

[+] creating account for R8AD19NP0RXXV1Q with password PJWHPJ7S89ILY4C
Traceback (most recent call last):
File "creator.py", line 79, in
main()
File "creator.py", line 59, in main
account_created = create_account(username, password)
File "creator.py", line 21, in create_account
browser = webdriver.Firefox(firefox_profile=profile)
File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/firefox/webdriver.py", line 142, in init
self.service.start()
File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/common/service.py", line 74, in start
stdout=self.log_file, stderr=self.log_file)
File "/usr/lib/python2.7/subprocess.py", line 710, in init
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1335, in _execute_child
raise child_exception
OSError: [Errno 8] Exec format error

Firefox opens but no page is loaded

When I run the script, it says on console that its creating the account, opens firefox, but doesn't load any page and firefox just keeps on "New Tab"

Upvoter + tor

Hi

Your system is very good and I try to add tor to upvoter.py, but not successfull.

Can you help me add tor for every comment and post upvote and restart tor for new IP.

If I upvote with only 1 IP reddit can ban my account.

Firefox not loading page after visiting permalink

[FIXED]
Edit: I don't know what I did, but it seems to work now with the permalinks, before Firefox wouldn't load permalinks but that seemed to be a Firefox issue rather than an issue with python. Everything works fine now thanks! Just one question!


What would I alter in the upvoter.py code to turn it into a downvoter.py ?

I assume it's under:

browser.find_element_by_css_selector( ), but what would the new parameters be for locating the downvote button rather than the upvote?

Thank you!

Reddit site retheme disables this tool

Well reddit's site updated today so the browser elements can't be found, no accounts can be made nor can votes be cast.

Will you be updating this to be compatible with it?

The proxy server is refusing connections

Just trying to run this program out the box and i'm getting that error. My selenium version is 3.9.0, my geckodriver version is the latest and so is my firefox and Tor.

This is the error message I receive:

`C:\Users\Administrator.DELL-26\AppData\Local\Programs\Python\Python36-32\python.exe
C:/Users/Administrator.DELL-26/PycharmProjects/untitled3/ghh/creator.py
[+] creating account for L7QQ64GZG7ESUFD with password CJA6P5381020LMI

'clear' is not recognized as an internal or external command,
operable program or batch file.

Traceback (most recent call last):
File "C:/Users/Administrator.DELL-26/PycharmProjects/untitled3/ghh/creator.py", line 74, in
main()

File "C:/Users/Administrator.DELL-26/PycharmProjects/untitled3/ghh/creator.py", line 54, in main
account_created = create_account(username, password)

File "C:/Users/Administrator.DELL-26/PycharmProjects/untitled3/ghh/creator.py", line 22, in create_account
browser.get('http://reddit.com/login')

File "C:\Users\Administrator.DELL-26\AppData\Local\Programs\Python\Python36-32\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 324, in get
self.execute(Command.GET, {'url': url})

File "C:\Users\Administrator.DELL-26\AppData\Local\Programs\Python\Python36-32\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute
self.error_handler.check_response(response)

File "C:\Users\Administrator.DELL-26\AppData\Local\Programs\Python\Python36-32\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=proxyConnectFailure&u=http%3A//reddit.com/login&c=UTF-8&f=regular&d=Firefox%20is%20configured%20to%20use%20a%20proxy%20server%20that%20is%20refusing%20connections.
`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.