
otp bot
绕过来自 Paypal、Instagram、Snapchat、Google、3D Secure 等服务的短信验证……使用一个 Discord Bot 或私有 API。
这非常简单。想象一下,你的朋友有一个 Snapchat 账号,你尝试使用短信系统重置他的密码:
然后,你使用这个 bot(!call 33612345678 snapchat)。bot 会使用 snapchat 服务给他打电话,并索要他收到的验证码。如果他在数字键盘上输入验证码,你就能收到该验证码,从而重置密码。这就像一套用于社会工程学的自动化系统。
可用且有效的 API 请求:
/call,使用 POST DATA:
to: theClientPhoneNumberuser: theUserservice: theUsedServicename: theNameOfTheUserpassword: yourApiPassword/get,使用 POST DATA:
callSid: theCallSidpassword: yourApiPassword/stream/service,使用 GET DATA:
service: theServiceNameYouWannaUse/voice/password,使用 POST DATA:
password: yourApiPasswordcallSid: theCallSidDigits: theDigitsEnteredByTheUSer(非必需)所有管理员命令:
!user add @user:允许某人使用 bot 及发起呼叫!user delete @user:将某人或某个管理员从 bot 中移除!user info @user:获取某个用户的信息!user setadmin @user:将某个用户设为管理员所有用户命令:
!secret yoursecretpassword @user:无需管理员权限即可将某个用户设为管理员!call phonenumber service 或例如 !call 33612345678 paypal:使用 bot 呼叫该电话号码并获取短信验证码支持的各类呼叫服务:
PaypalGoogleSnapchatInstagramFacebookWhatsappTwitterAmazonCdiscountDefault : work for all the systemsBanque : bypass 3D Secure!call 3312345678 paypal 时,Discord Bot 会向我们的私有 API 发送一个 POST 请求,该 API 会将这次呼叫保存到我们的 sqlite 数据库中,并将呼叫发送到我们的 Twilio API。/status 路由来了解在呼叫中要做什么,status 路由会向 Twilio 返回 TwiML 代码。/status 路由使用 /stream/service 路由返回自托管服务提示音。/status 路由会通过 webhook 将验证码发送到您的 Discord 频道。从 GitHub 下载 API 文件
git clone https://github.com/Ross1337/SMSBotBypass.git
进入我们的 API 文件夹
cd /SMSBotBypass/api/
安装依赖
npm i
启动 api,等待 15 秒,然后停止它
npm start
修改 config.js 文件
开放端口 1337
为了检查一切是否正常,我制作了一个完整的测试系统。如果您的 Twilio 账户未升级,请在测试前转到 /test/call.js 文件,并将第 122 行的电话号码修改为您的电话号码。
npm test

您的私有 API 现在可以正常工作了!如果您的 API 无法工作,请升级您的 Twilio 账户并重试。
请注意,您还需要更改 TTS 语言,请访问 https://www.twilio.com/console/voice/twiml/text-to-speech ,并将 TTS 语言从英语改为法语,并使用 Lea 语音。
从您的 api 文件夹中的 config.js 文件中获取您的 API 密码,我们将在下面使用它
cd ../bots/discord
修改 config.js 文件
创建两个 Discord 角色,一个为“Admin”,拥有 Administrator 权限,另一个为“Bot User”,拥有任意权限。
将 bot 添加到 Discord 服务器
初始化 discord bot
npm i
您现在可以启动 discord bot
node bot.js
您可以通过执行 !help 获取 Discord 上所需的所有信息

这段代码仅仅是 POC 代码,请不要非法使用它。滥用此代码可能会导致被捕。请仅在您的电话号码或同意测试此代码的人身上使用。
欢迎通过 fork 本仓库并提交 pull request 来为这个项目做出贡献!