├── .gitignore ├── LICENSE ├── README.md ├── bot.py └── talker.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging. 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | 80 | # IPython 81 | profile_default/ 82 | ipython_config.py 83 | 84 | # pyenv 85 | .python-version 86 | 87 | # pipenv 88 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 89 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 90 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 91 | # install all needed dependencies. 92 | #Pipfile.lock 93 | 94 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 95 | __pypackages__/ 96 | 97 | # Celery stuff 98 | celerybeat-schedule 99 | celerybeat.pid 100 | 101 | # SageMath parsed files 102 | *.sage.py 103 | 104 | # Environments 105 | .env 106 | .venv 107 | env/ 108 | venv/ 109 | ENV/ 110 | env.bak/ 111 | venv.bak/ 112 | 113 | # Spyder project settings 114 | .spyderproject 115 | .spyproject 116 | 117 | # Rope project settings 118 | .ropeproject 119 | 120 | # mkdocs documentation 121 | /site 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 coder089. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # New Version Of Simple My OTP Bot 2 | 3 | Simple OTP Bot, working with any company or service name. 4 | New OTP Bot, working with any company or service name to fetch otp code. 5 | 6 | ![See the bot in action](https://user-images.githubusercontent.com/117955242/203935966-e3e8ee3c-384b-448d-b86b-d5189d66b585.png) 7 | 8 | Send command: "/dial" to start grabbing your OTP 9 | 10 | # THIS SOURCE CODE IS FREE AND FOR EDUCATION PURPOSE ONLY. 11 | 12 | For Step-By-Step Installation Process Join My Discord Server. 13 | And For more advanced Discord and Telegram OTP Bots. 14 | 15 | 16 | # For Customization or Private OTP Bots Contact me on my new Chennel and Server 17 | 18 | Discord Server: https://discord.gg/CVgscsvRRx 19 | Telegram Channel https://t.me/otpbotc 20 | Telegram Bot https://t.me/coder00089bot 21 | DM Discord: Coder089#8305 22 | DM Telegram: @Coder00089 23 | Discord Server: https://discord.gg/CVgscsvRRx 24 | 25 | NEW Telegram Channel https://t.me/otpbotc 26 | 27 | Old Telegram Channel https://t.me/+fzkvq8FdnQY2ZmNh 28 | 29 | (Old Channels are Banned) 30 | https://t.me/+I2QcslRt8HM2YTEx 31 | https://discord.gg/ghHtyDevI 32 | https://t.me/+uftsns3gsKhdLfc1tUy 33 | https://t.me/+fzkvq8FdnQY2ZmNh 34 | 35 | 36 | # Buy me coffee: 37 | 38 | Ethereum: 0x06F0ff15A132410389C41fd4B52c9E458666F579 39 | LTC: ltc1qs89vzwyete5jnn5mcpqp2zvrlzv8gdwq0a4tt6 40 | 41 | 42 | # SETUP 43 | 44 | Download ngrok and run ngrok.exe http 5000 45 | Download python and Install 46 | Unzip Your Bot files 47 | 48 | pip3 install discord 49 | pip install Flask 50 | pip install discord-py-slash-command 51 | pip install twilio 52 | 53 | # First create a discord group 54 | Go to your discord developer page https://discord.com/developers/applications/ 55 | Click "New Application", create application 56 | Click "OAuth2" 57 | Click "URL Generator"** 58 | 59 | # OAuth2 URL Generator Page 60 | 61 | # SCOPE 62 | Check "Bot" 63 | Check "applications.commands" 64 | 65 | # BOT PERMISSIONS 66 | Check All Permissions 67 | Dont check "Administrator" 68 | 69 | # GENERATED URL 70 | Copy the URL 71 | Open new Tab in your browser where you logged your discord 72 | Paste the URL and follow it, authorize the Bot in your group. 73 | Go back to to your discord developer Tab 74 | Left side, click "Bot" and click "add" Bot 75 | Left side, click "Bot" and click "add" Bot 76 | Click "Reset Token" and click "Copy" to copy token 77 | Open "bot.py" add bot_token 78 | Go to discord server/group 79 | Left side, right-click on the server and click "copy ID" 80 | Go to "bot.py" add server_id 81 | 82 | # Twilio Details 83 | Go to Twilio Account Copy "Account SID" 84 | Go to "bot.py" add account_sid 85 | Go to Twilio Account again Copy "Auth Token" 86 | Go to "bot.py" add auth_token 87 | Go to Twilio Account again Copy "Your Twilio Phone Number" 88 | Go to "bot.py" add Twilio Phone Number (e.g "+1987654321") 89 | Go to terminal where you run ngron, copy your https link/url 90 | Go to "bot.py" add ngrok_url 91 | Save bot.py, close file and run bot.py in python 92 | Run talker.py in python 93 | 94 | # Start Calling 95 | Go to your server and type command: "/dial" and fill your info. 96 | E.G: /dial cell_phone:+1987654321 otp_digits:6 client_name:Smith company_name:PayPal 97 | 98 | # Error 99 | DM or Join Channels 100 | -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder0089/otp-bot-new-version/60b8209abcb7bcc02999f662b28fe10e94728c63/bot.py -------------------------------------------------------------------------------- /talker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder0089/otp-bot-new-version/60b8209abcb7bcc02999f662b28fe10e94728c63/talker.py --------------------------------------------------------------------------------