短信发送 Python 程序(包含1000+有效接口)

Overview

短信轰炸 Python 程序(包含1000+有效接口)

前言

  • 这是一个爬取网络上在线轰炸的接口,后通过 Python 异步 请求接口以达到 手机短信轰炸 的目的。
  • 此为开源项目,仅供娱乐学习使用,使用者所带来的一切后果作者无关,使用请遵守相关的法律法规合理使用,请勿滥用

食用方法

1. 爬取接口

  • 寻找网上形如:http://www.sss.pet/在线轰炸网站 轰炸网站实例

  • 输入手机号并启动轰炸,这时会刷新界面,观察构造出来的地址

    轰炸网站地址

    可以发现地址从:

    http://www.sss.pet/

    变成了

    http://www.sss.pet/index.php?hm={手机号码}&ok=
  • 修改 main.py 文件

    实例化SMS对象参数

    实例化并运行

    在函数入口实例化SMS对象,此对象要传入一个主网站url,和url后面的参数key,key中的手机号用{SMS.default_phone}代替。

非常规

例如上图一个非常规 Key 的网站。

调用SMS对象main()方法即可多线程校验接口。

调用SMS对象get_sms_api()即可查看调试网址接口总数。

前面注释的网址我都校验过了,大家都不用再校验了【狗头】

  • 运行过程

    1. 运行后会先请求轰炸网站正则获取其接口API。

    2. 把获取到的接口Put到检验队列。

    3. Put完队列后启动多线程校验,如果请求接口的HTTP状态码为200就写入到sqlite3数据库,数据库文件在项目目录下的data.db

      注意:HTTP状态码为200的不一定是有用的接口**(好多都不能用的,敲!),不过HTTP状态码不正常或者无法访问的一定是不可以用的**。

      目前只想到这一种检验接口的方法

      支持数据库自动去重,不用担心数据重复问题。

    4. 2021.8.10 我已经校验了1113个接口(不重复)到 data.db 大家可以直接使用(看下面)

2. 启动异步轰炸

  • 修改boom.py下的手机号启动轰炸异步请求。

    修改手机号轰炸

  • 2021.8.10 亲测:

    在5分钟内发了29条短信。

    img

Todo

  • ?? 允许添加自定义接口json格式,自定义请求头、方法、内容。
  • 🎈 优化数据库结构,兼容自定义接口。
  • 🎈 添加多线程、异步两种轰炸方式。
  • 🎈 添加GUI页面方便操作。
  • 🎈 Flask做个轰炸API,支持异步返回调用。
  • .....未完待续......

欢迎提出issue 🤔 以便开发者完善,也欢迎大佬们Pr完善此项目。

PS:开发者目前初三 🐣 ,写的垃圾代码,还请大佬们多多指教。 😘

😡 禁止用于非法用途 😡

😾 使用者造成的一切法律后果与本人无关 😾

You might also like...
Python On WhatsApp - Run your python codes on whatsapp along with talking to a chatbot
Python On WhatsApp - Run your python codes on whatsapp along with talking to a chatbot

Python On WhatsApp Run your python codes on whatsapp along with talking to a chatbot This is a small python project to run python on whatsapp. and i c

Get-Phone-Number-Details-using-Python - To get the details of any number, we can use an amazing Python module known as phonenumbers.

Get-Phone-Number-Details-using-Python To get the details of any number, we can use an amazing Python module known as phonenumbers. We can use the amaz

Python-random-quote - A file-based quote bot written in Python

Let's Write a Python Quote Bot! This repository will get you started with building a quote bot in Python. It's meant to be used along with the Learnin

Student-Management-System-in-Python - Student Management System in Python
Student-Management-System-in-Python - Student Management System in Python

Student-Management-System-in-Python Student Management System in Python

WhatsApp Api Python - This documentation aims to exemplify the use of Moorse Whatsapp API in Python
WhatsApp Api Python - This documentation aims to exemplify the use of Moorse Whatsapp API in Python

WhatsApp API Python ChatBot Este repositório contém uma aplicação que se utiliza

OpenSea-Python-Bot - OpenSea Python Bot can be used in 2 modes

OpenSea-Python-Bot OpenSea Python Bot can be used in 2 modes. When --nft paramet

Cdk-python-crud-app - CDK Python CRUD App

Welcome to your CDK Python project! You should explore the contents of this proj

OGE-2022-na-Python - Solving problems in python for the OGE 2022
OGE-2022-na-Python - Solving problems in python for the OGE 2022

OGE-2022-na-Python Решение задачек на питоне для ОГЭ 2022 Тут разобраны разные в

Crud-python-sqlite: used to manage telephone contacts through python and sqlite

crud-python-sqlite This program is used to manage telephone contacts through python and sqlite. Dependencicas python3 sqlite3 Installation Clone the r

Comments
  • Windows GUI

    Windows GUI

    复制以下代码到记事本中另存为 start.vbs ,将 start.vbs 复制到 到 smsboom_pyinstall.exe 文件平级目录,双击运行

    phone=inputbox("输入手机号码","短信炸弹","")
    thread=inputbox("输入线程数量","短信炸弹","")
    If phone= "" Or thread= "" Then
    Else
    
    Set ws = CreateObject("WScript.Shell")
    ws.Run "cmd.exe /k .\smsboom_pyinstall.exe run -t "+thread+" -p "+ phone
    End If
    

    image

    opened by bestK 3
  • smsboom_pyinstall.exe 的 -f 参数无法使用

    smsboom_pyinstall.exe 的 -f 参数无法使用

    .\smsboom_pyinstall.exe run -t 64 -p 15900000000 -f 10 Usage: smsboom_pyinstall.exe run [OPTIONS] Try 'smsboom_pyinstall.exe run --help' for help.

    Error: No such option: -f

    opened by TianbaoBai 3
  • Remove the exception squares in front of the log & fix issue #207 & Nums detection

    Remove the exception squares in front of the log & fix issue #207 & Nums detection

    Fix

    1. Fix Issue #207 -> Added an input() function internally

    2. Remove the {level.icon} in logger to remove the exception squares in front of the log

    (I don't know what the role of {level.icon} is)

    New

    1. Add non-pure digital detection
    opened by GuangChen2333 1
  • 读取接口出错!正在重新下载接口数据!....

    读取接口出错!正在重新下载接口数据!....

    D:\sms>smsboom_pyinstall.exe Usage: smsboom_pyinstall.exe [OPTIONS] COMMAND [ARGS]...

    Options: --help Show this message and exit.

    Commands: asyncrun 以最快的方式请求接口(真异步百万并发) onerun 单线程(测试使用) run 传入线程数和手机号启动轰炸,支持多手机号 update 从 github 获取最新接口

    D:\sms>smsboom_pyinstall.exe update ℹ️ 16:31:39,596 [INFO] MainThread smsboom:176 - 正在从GitHub拉取最新接口! ✔️ 16:31:41,725 [SUCCESS] MainThread smsboom:191 - 接口更新成功!

    D:\sms>smsboom_pyinstall.exe run -t 64 -p 13196834567 ℹ️ 16:32:20,390 [INFO] Usage: smsboom_pyinstall.exe [OPTIONS] Try 'smsboom_pyinstall.exe --help' for help.

    Error: No such option: -t MainThread smsboom:107 - 手机号:('13196834567',), 线程数:64, 执行次数:1, 间隔时间:60 ❌ 16:32:20,390 [ERROR] MainThread smsboom:76 - Json file syntax error:Expecting property name enclosed in double quotes: line 8 column 9 (char 205) ❌ 16:32:20,390 [ERROR] MainThread smsboom:120 - 读取接口出错!正在重新下载接口数据!....

    opened by xingxing8899 5
Releases(main)
  • main(Jul 7, 2022)

    Fix: https://github.com/OpenEthan/SMSBoom/issues/95

    1. Optimize the get proxy

    New features

    1. 支持使用代理IP。#59
    2. 支持多綫程、異步協程、單綫程運行。
    3. 支持設置轟炸次數(波束)
    4. 性能優化。
    5. 多語言版本。(CH、EN)

    從 2022/7/7 日起,原項目轉手由我開發,謝謝大家支持,如項目有 Bug,請到 Issue 処提出。 by Ethan.

    Source code(tar.gz)
    Source code(zip)
    smsboom.exe(8.64 MB)
    smsboom_EN.exe(8.64 MB)
  • test(Apr 11, 2022)

Owner
蓝鲸落
准高一在读 [狗头doge] 会点Python 偶尔小丧, 大佬们多多关照小萌新。
蓝鲸落
This is a story bot, that will scrape stories from r/stories subreddit and convert it into an Audio File.

Introduction This is a story bot, that will scrape stories from r/stories subreddit and convert it into an Audio File. Installation pip install -r req

Yasho 11 Jun 30, 2022
Powerful Ethereum Smart-Contract Toolkit

Heimdall Heimdall is an advanced and modular smart-contract toolkit which aims to make dealing with smart contracts on EVM based chains easier. Instal

Jonathan Becker 69 Dec 26, 2022
Ghostbuster - Eliminate dangling elastic IPs by performing analysis on your resources within all your AWS accounts

Table of Contents Table of Contents Ghostbuster The problem Project Features Ins

Assetnote 182 Dec 24, 2022
𝐀 𝐔𝐥𝐭𝐢𝐦𝐚𝐭𝐞 𝐓𝐞𝐥𝐞𝐠𝐫𝐚𝐦 𝐁𝐨𝐭 𝐅𝐨𝐫 𝐅𝐨𝐫𝐜𝐢𝐧𝐠 𝐘𝐨𝐮𝐫 𝐆𝐫𝐨𝐮𝐩 𝐌𝐞𝐦𝐛𝐞𝐫𝐬 𝐓𝐨 𝐒𝐮𝐛𝐬𝐜𝐫𝐢𝐛𝐞 𝐘𝐨𝐮𝐫 𝐓𝐞𝐥𝐞𝐠𝐫𝐚𝐦 𝐂𝐡𝐚𝐧𝐧𝐞𝐥

𝐇𝐨𝐰 𝐓𝐨 𝐃𝐞𝐩𝐥𝐨𝐲 For easiest way to deploy this Bot click on the below button 𝐌𝐚𝐝𝐞 𝐁𝐲 𝐒𝐮𝐩𝐩𝐨𝐫𝐭 𝐆𝐫𝐨𝐮𝐩 𝐒𝐨𝐮𝐫𝐜𝐞𝐬 𝐅𝐢𝐧𝐝

Mukesh Solanki 2 Jan 05, 2022
A PowerFull Telegram Mirror Bot.......

- [ DEAD REPO AND NO MORE UPDATE ] Slam Mirror Bot Slam Mirror Bot is a multipurpose Telegram Bot written in Python for mirroring files on the Interne

αвιנтн 2 Nov 09, 2021
Python interface to the World Bank Indicators and Climate APIs

wbpy A Python interface to the World Bank Indicators and Climate APIs. Readthedocs Github source World Bank API docs The Indicators API lets you acces

Matt Duck 47 Oct 31, 2022
TikTok 4L and 4C checker that doesn't count banned usernames as available

TikTok 4L and 4C checker that doesn't count banned usernames as available. Once a username is available, it will send it to your Discord Webhook.

cliphd 26 May 01, 2022
Unlimited Filter Telegram Bot 2

Mother NAther Bot Features Auto Filter Manuel Filter IMDB Admin Commands Broadcast Index IMDB search Inline Search Random pics ids and User info Stats

LɪᴏɴKᴇᴛᴛʏUᴅ 1 Oct 30, 2021
A very simple Salesforce.com REST API client for Python

Simple Salesforce Simple Salesforce is a basic Salesforce.com REST API client built for Python 3.5, 3.6, 3.7 and 3.8. The goal is to provide a very lo

simple salesforce 1.4k Dec 29, 2022
Group Management Bot

❤️ 𝗦𝗛𝗔𝗗𝗜𝗬𝗢 ❤️ A Powerful, Smart And Advance Group Manager ... Written with AioGram , Pyrogram and Telethon... ⭐️ Thanks to everyone who starred

Abdisamad Omar Mohamed 4 Dec 01, 2021
Powerful Telegram userbot to turn your PROFILE PICTURE & LAST NAME into a real time clock & to change your BIO automatically.

DATE_TIME_USERBOT-TeLeTiPs Powerful Telegram userbot to turn your PROFILE PICTURE & LAST NAME into a real time clock & to change your BIO automaticall

53 Jan 05, 2023
A simple Python library to integrate with the Heron Data API

Heron Python This library provides easy access to the Heron Data API from applications written in Python. Documentation No language-specific docs are

Heron Data 11 Nov 11, 2022
N3RP (the NFT Rental Protocol) allows users to trustlessly rent out their ERC721-based assets.

N3RP • N3RP - An NFT Rental Protocol (pronounced "nerp") Smart Contracts Passing Tests, Frontend Functional But Is Being Beautified. 🛠 Introduction T

Grant Stenger 56 Dec 07, 2022
radiant discord anti nuke src leaked lol.

radiant-anti-wizz-leaked radiant discord anti nuke src leaked lol, the whole anti sucks but idc. sucks to suck thats tuff bro LMAOOOOOO join my server

ok 15 Aug 06, 2022
A Telegram Bot for searching any channel messages from Inline by @AbirHasan2005

Message-Search-Bot A Telegram Bot for searching any channel messages from Inline by @AbirHasan2005. I made this for @AHListBot. You can use this for s

Abir Hasan 44 Dec 27, 2022
TESSARECT A Powerful Bot you'll ever need for anything

Tessarect TESSARECT A Powerful Bot you'll ever need for anything TESSARECT It is my First bot but very advanced and designed for all your needs , from

Prakarsh Prp 4 Aug 27, 2022
Телеграм бот решающий задания ЦДЗ, написанный на библиотеке libmesh.

MESHBot-Telegram Телеграм бот решающий задания ЦДЗ. Описание: Бот написан с использованием библиотеки libmesh. Для начала работы отправьте ему ссылку

2 Jun 19, 2022
Fetching tweets and integrating it with Kafka and PySpark

KafkaPySpark Zookeeper bin/zookeeper-server-start.sh config/zookeeper.properties Kafka Server bin/kafka-server-start.sh config/server.properties Kafka

Priyansh 2 Dec 29, 2021
Easy Discord Webhook Token Grabber!

Easy Discord Webhook Token Grabber!

†† 27 Jun 01, 2022
Discord Rpc With Python And 2 Buttons

Discord-RPC-With-Python- Discord Rpc With Python And 2 Buttons Packages pypresence time Required Programs Python Latest Version Random IDE Discord :P

Kaz 4 Dec 12, 2021