短信发送 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 偶尔小丧, 大佬们多多关照小萌新。
蓝鲸落
Simple Discord Nuke Bot.

Discord-Nuke-Bot Simple Discord Nuke Bot. Simple Discord Nuke Bot Python 3.6 - 3.8 Features Delete Channels Ban All Members Delete Roles Create Channe

9X4N 6 Aug 16, 2022
Nft-maker - Create your own NFT!

nft-maker How to If you're going to use this program, change the pictures in the "images" folder. All images must be of the same resolution and size.

Georgii Arakelian 4 Mar 13, 2022
A Telegram bot that searches for the original source of anime, manga, and art

A Telegram bot that searches for the original source of anime, manga, and art How to use the bot Just send a screenshot of the anime, manga or art or

Kira Kormak 9 Dec 28, 2022
The raid botnet for Telegram

telegram-raid-botnet The raid botnet for Telegram Что нужно сделать перед запуском? Установить модули pip3 install -r requirements.txt Добавить аккаун

Maxim 68 Jan 03, 2023
✖️ Unofficial API of 1337x.to

✖️ Unofficial Python API Wrapper of 1337x This is the unofficial API of 1337x. It supports all proxies of 1337x and almost all functions of 1337x. You

Hemanta Pokharel 71 Dec 26, 2022
Video Bot: an Advanced Telegram Bot that's allow you to play Video & Music on Telegram Group Video Chat

Video Bot is an Advanced Telegram Bot that's allow you to play Video & Music on

5 Jan 26, 2022
A Python API wrapper for the Twitter API!

PyTweet PyTweet is an api wrapper made for twitter using twitter's api version 2! Installation Windows py3 -m pip install PyTweet Linux python -m pip

TheFarGG 1 Nov 19, 2022
Herramienta para transferir eventos de Sucuri WAF hacia Azure Blob Storage.

Transfiere eventos de Sucuri hacia Azure Blob Storage Script para transferir eventos del Sucuri Web Application Firewall (WAF) hacia Azure Blob Storag

CSIRT-RD 1 Dec 22, 2021
A Script to automate fowarding all new messages from one/many channel(s) to another channel(s), without the forwarded tag.

Channel Auto Message Forward A script to automate fowarding all new messages from one/many channel(s) to another channel(s), without the forwarded tag

16 Oct 21, 2022
Pythonic event-processing library based on decorators

Process Events In Style This library aims to simplify the common pattern of event processing. It simplifies the process of filtering, dispatching and

Nicolas Marier 3 Sep 01, 2022
Discord Bot Sending Members - Leaked by BambiKu ( Me )

Wokify Bot Discord Bot Sending Members - Leaked by BambiKu ( Me ) Info The Bot was orginaly made by someone else! Ghost-Dev just wanted to sell "priva

bambiku 6 Jul 05, 2022
Modified Version Of Media Search bot

Modified Version Of Media Search bot

1 Oct 09, 2021
Bagas Mirror&Leech Bot is a multipurpose Telegram Bot written in Python for mirroring files on the Internet to our beloved Google Drive. Based on python-aria-mirror-bot

- [ MAYBE UPDATE & ADD MORE MODULE ] Bagas Mirror&Leech Bot Bagas Mirror&Leech Bot is a multipurpose Telegram Bot written in Python for mirroring file

4 Nov 23, 2021
Unofficial Python wrapper for official Hacker News API

haxor Unofficial Python wrapper for official Hacker News API. Installation pip install haxor Usage Import and initialization: from hackernews import H

147 Sep 18, 2022
Utilizing the freqtrade high-frequency cryptocurrency trading framework to build and optimize trading strategies. The bot runs nonstop on a Rasberry Pi.

Freqtrade Strategy Repository Please test all scripts and dry run them before using them in live mode Contact me on discord if you have any questions!

Michael Fourie 90 Jan 01, 2023
Auto Join: A GitHub action script to automatically invite everyone to the organization who comment at the issue page.

Auto Invite To Org By Issue Comment A GitHub action script to automatically invite everyone to the organization who comment at the issue page. What is

Max Base 6 Jun 08, 2022
The most Advanced yet simple Multi Cloud tool to transfer Your Data from any cloud to any cloud remotely based on Rclone.⚡

Multi Cloud Transfer (Advanced!) 🔥 1.Setup and Start using Rclone on Google Colab and Create/Edit/View and delete your Rclone config file and keep th

Dr.Caduceus 162 Jan 08, 2023
Cogs for Red-DiscordBot

Redbot cogs for Red-DiscordBot authored by Kreusada This is my repository for Red Discord-Bot. I built these cogs because these were the features that

Kreus Amredes 26 Nov 07, 2022
Covid19 API. (Currently Scrapes: worldometers)

Covid19-API An opensource Covid19 API (currently uses worldometer only) Output Examples Covid19 Every Country Data Request URL your-ip/api/all Resp

Amresh Prasad Sinha 14 Oct 03, 2022
Python Proof of Concept for retrieving Now Playing on YouTube Music with TabFS

Youtube Music TabFS Python Proof of Concept for retrieving Now Playing on YouTube Music with TabFS. music_information = get_now_playing() pprint(music

Junho Yeo 41 Nov 06, 2022