GithubHelp home page GithubHelp logo

discord-account-generator's Introduction

Discord-Account-Generator

Proof of concept of how the creation of Discord accounts can be automated without the need to type/click buttons on browser.

Patched

Token gets automatically disabled when joining servers

About

A script that automates creating discord accounts. It shows how accounts can be created automatically without the user typing unless there is a captcha (h-Captcha just needs to be clicked) . It automatically verifies your Discord account via email for you and automatically saves login info in login.txt in email:password:token format. This is used for educational purposes only.

Chromedriver Fix

If Chrome doesn't open/crashes, try getting the latest version of chromedriver.exe here > https://chromedriver.chromium.org/downloads. Replace the current chromedriver.exe in the folder with the latest version you have downloaded

Make sure your chromedriver.exe file is the same version as your current Chrome web browser version. To check your current Chrome version, paste chrome://settings/help in chrome.

Features

  • Auto scrape email
  • Random username from list
  • Random password
  • Random date
  • Auto-email-verify
  • Automatically get Discord token and other login info
  • Proxy support
  • Multi-threading

Preview

Picture

Usage

  1. You can customize usernames by editing the usernames in discord_usernames.txt.
  2. Run the file and use normal mode if you are a inexperienced with proxies and theading.

Get Python

If you dont have python installed, download python 3.7.6 and make sure you click on the 'ADD TO PATH' option during the installation.

Run via Python

  1. install the required modules
pip install selenium
pip install undetected-chromedriver
pip install colorama
pip install bs4
pip install lxml
pip install requests
  1. To run the script..
python discordgenerator.py

Proxy support

  • If you want to use proxies, simply paste the proxies in config/proxies.txt. If you want to stop using proxies, just remove all the proxies from the .txt file. The script automatically checks for proxies on startup. HTTP proxies are only supported as of now. If the proxies are not alive, the script will throw a WebDriver error.

Threading mode

  • Uses multiple chrome windows
  • Only run this when you have proxies or else one of you Chrome windows will get rate limited.
  • Do put more than 6 threads unless you think your PC can handle it. I recommend using 2-3 threads.

No Threading

  • This only uses one chrome window.

FAQ

Where can i found my generated accounts?

  1. It is located in the output folder. Open up login.txt to see the accounts that has been generated.

discord-account-generator's People

Contributors

nightfallgt avatar notmoaiad avatar sarlay 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  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  avatar  avatar  avatar  avatar  avatar

discord-account-generator's Issues

Not working

Finally got it to show me the discord generator stuff and now whenever I do it, it fails to verify it and I can't login with the accounts created

ChromeDriver only supports Chrome version 89

Traceback (most recent call last): File "E:\Github\Discord-Account-Generator-main\discordgenerator.py", line 382, in <module> main() File "E:\Github\Discord-Account-Generator-main\discordgenerator.py", line 379, in main worker() File "E:\Github\Discord-Account-Generator-main\discordgenerator.py", line 257, in worker d = DiscordGen(new_email, username, password) File "E:\Github\Discord-Account-Generator-main\discordgenerator.py", line 67, in __init__ self.driver = webdriver.Chrome(options=options, executable_path=r"chromedriver.exe") File "C:\Python39\lib\site-packages\undetected_chromedriver\__init__.py", line 53, in __new__ instance.__init__(*args, **kwargs) File "C:\Python39\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 76, in __init__ RemoteWebDriver.__init__( File "C:\Python39\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 157, in __init__ self.start_session(capabilities, browser_profile) File "C:\Python39\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 252, in start_session response = self.execute(Command.NEW_SESSION, parameters) File "C:\Python39\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute self.error_handler.check_response(response) File "C:\Python39\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response raise exception_class(message, screen, stacktrace) selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 89 Current browser version is 91.0.4472.124 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe

================ F I X E D ===================

Error

Message: unknown error: cannot find Chrome binary

mistery error

(followed all steps in readme.md)

Traceback (most recent call last):
File "C:\Users\rudil\Desktop\Discord-Account-Generator-main\discordgenerator.py", line 382, in
main()
File "C:\Users\rudil\Desktop\Discord-Account-Generator-main\discordgenerator.py", line 375, in main
worker(random.choice(proxies))
File "C:\Users\rudil\Desktop\Discord-Account-Generator-main\discordgenerator.py", line 260, in worker
d = DiscordGen(new_email, username, password, proxy = proxy)
File "C:\Users\rudil\Desktop\Discord-Account-Generator-main\discordgenerator.py", line 67, in init
self.driver = webdriver.Chrome(options=options, executable_path=r"chromedriver.exe")
File "C:\Users\rudil\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\undetected_chromedriver_init_.py", line 57, in new
instance.init(*args, **kwargs)
File "C:\Users\rudil\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\selenium\webdriver\chrome\webdriver.py", line 69, in init
super(WebDriver, self).init(DesiredCapabilities.CHROME['browserName'], "goog",
File "C:\Users\rudil\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\selenium\webdriver\chromium\webdriver.py", line 93, in init
RemoteWebDriver.init(
File "C:\Users\rudil\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\selenium\webdriver\remote\webdriver.py", line 248, in init
self.start_session(capabilities, browser_profile)
File "C:\Users\rudil\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\selenium\webdriver\remote\webdriver.py", line 339, in start_session
response = self.execute(Command.NEW_SESSION, parameters)
File "C:\Users\rudil\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\selenium\webdriver\remote\webdriver.py", line 400, in execute
self.error_handler.check_response(response)
File "C:\Users\rudil\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\selenium\webdriver\remote\errorhandler.py", line 236, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 89
Current browser version is 92.0.4515.131 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe
Stacktrace:
Backtrace:
Ordinal0 [0x0039E7D3+124883]
Ordinal0 [0x0039E7B1+124849]
GetHandleVerifier [0x005E8688+193832]
GetHandleVerifier [0x00603AC5+305509]
GetHandleVerifier [0x0060021B+291003]
GetHandleVerifier [0x005FE0AC+282444]
GetHandleVerifier [0x00624A90+440624]
GetHandleVerifier [0x006247FC+439964]
GetHandleVerifier [0x0062154B+426987]
GetHandleVerifier [0x00604FFD+310941]
GetHandleVerifier [0x00605D8E+314414]
GetHandleVerifier [0x00605D19+314297]
GetHandleVerifier [0x006C31EC+1089676]
GetHandleVerifier [0x006C17C9+1082985]
GetHandleVerifier [0x006C13A3+1081923]
GetHandleVerifier [0x007BD9FD+2115741]
Ordinal0 [0x004EB82E+1488942]
Ordinal0 [0x00485A7D+1071741]
Ordinal0 [0x0048559B+1070491]
Ordinal0 [0x004854B1+1070257]
Ordinal0 [0x004BFF53+1310547]
BaseThreadInitThunk [0x75E0FA29+25]
RtlGetAppContainerNamedObjectPath [0x77B67A7E+286]
RtlGetAppContainerNamedObjectPath [0x77B67A4E+238]

Working but Phone verifion problem

It's a working, Account is generating. But the problem is for Phone Verification.
Can't usage the account for joining in account without phone verification.

How procedure?

Automatic Ratelimit

Whenever I run the tool (with or without proxies), it automatically says I'm being ratelimited upon attempting to create an account. I tried waiting for a while and trying again, but it immediately ratelimited again after I did the verification without creating an account.
image

Birthdate error

it doesnt put the birthdate in for me i have to do it myself??

Weird bug

im getting iv>

  <div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">

Cloudflare Ray ID: 65f64ee23b34e768 β€’ Your IP: 2601:45:4002:20b0:548a:a35c:23e:68fc β€’ Performance & security by Cloudflare

</div>
<script type="text/javascript"> window._cf_translation = {}; </script>

question

how can u not get them phone locked

patch for new server

the new server bug can be patched by making the bot first make a server of its own after 5 seconds

Detected as backdoor

I tried to install it and Windows Defender alerted me that this is a backdoor I'm sure this isn't real

Chrome Tab

Hey, i would like to know why after when i run the script and start it, it opens a chrome tab for a second and closes and the script closes as well... if you could help me out with this issue it would be gladly appreciated.

Webdrive error

When I run it this happens:

[*] Proxy used 110.77.197.137:4145
[!] Scraping email.
[*] Scraped [email protected]
[!] Webdriver wait
[!] Webdriver Error. Unable to continue.
[!] Worker task ended.

Settings:
proxies - free but working
usernames - default .txt
chrome driver - v90.0.4430.24
chrome - v90.0.4430.212

Just a feature request

I believe you can automate it into getting the token then writing it to the desired .txt fileπŸ˜„

Not issue, recommendation

The program could be able to make more accounts (i don't mean threading, i mean it finishes making account, its gonna save credentials and tokens in different files (add this pls also) and then restart the entire process.
Also i think its getting slowly detected, im using decent proxies but the tokens get banned within minutes after starting to use them

Proxies dont work

Hello, if you input any proxies into the proxies.txt file it gives me an error on chromedriver.
Here is pic of the proxy error:
image

Also does anyone know how to make the program find the tokens on its own?
I have seen someone saying that they have implemented into the code in one of the issues but they diddnt share the code and i don't know how to code selfbots. rip

I think this project is super cool, but i need support

Trouble with account being disabled

Is it possible to avoid detection? I would like automation without failure, I understand that is hard. The account becomes locked when inside, but it does work with my proxies. I'd like to know if there's a way a to perhaps "spoof" this,

Proxy Frmatting

Hello, the tool is working great however im not usre in wich format i should enter a proxy into the proxyfile. the proxy i wanna use has a IP, Port, Username and a Password. No format i tried worked.
grafik

New Api

Hello, i know that the accounts get disabled instantly but I found a temp mail that works for discord and does not get disabled, could you help me change it so it uses this website. It also has a free API. Someone please help me change it, I do not know how to change it because I do not know how to code.

Will this work on termux?

Hello I am termux user will this work on termux also the created accounts will join servers by them self or we have to manually do that (I want them to join my server for dank farm 🀫)

Dosent work

I'm trying to open the file but it imediatly closes

Can't seem to get it to run

Started to learn python and needa a discord account generator heard good things about this but it wont run nor can i get pip to install anything its asking, My discord is The1337Gamers#6857

Delete it i fixed

self.driver = webdriver.Chrome(options=options, executable_path=r"chromedriver.exe")
TypeError: init() got an unexpected keyword argument 'options'
already tried to download same version as chrome and didnt work

open in browser account generator

if you using incognito mode on chrome and go to discord.com and click open in browser type random name and click next
and refresh you will get token

join server manually you wont get disable, but if you join multipie time using discord api your account will get disable.

Webdriver Error when i use a Proxy

When I run the script with a proxy, I get a webdriver error. As in the README, I checked my Chrome version and downloaded the appropriate chromedriver. Didn't do anything unfortunately. The proxies are also all working and should work.

01-03-2021_13-55-22

Without proxy the script runs fine.

Cheers.

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.