短信发送 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 偶尔小丧, 大佬们多多关照小萌新。
蓝鲸落
Yes, it's true :revolving_hearts: This repository has 301 stars.

Yes, it's true! Inspired by a similar repository from @RealPeha, but implemented using a webhook on AWS Lambda and API Gateway, so it's serv

511 Dec 30, 2022
A custom rom post bot for Telegram.

Rom Poster Bot A simple Post Bot written in Python using pyTelegramBotAPI to post rom updates to telegram whenever you need. Made by lazy peep for laz

Prajwal 6 Nov 03, 2022
Análise de dados abertos do programa Taxigov.

Análise de dados do Taxigov Este repositório contém os cadernos Jupyter usados no projeto de análise de dados do Taxigov. Conjunto de dados O conjunto

Augusto Herrmann 1 Jan 10, 2022
EC2 that automatically move files received through FTP to S3

ftp-ec2-s3-cf EC2 that automatically move files received through FTP to S3 Installation CloudFormation template Deploy now! Usage IP / domain name: ta

Javier Santana 1 Jun 19, 2021
BanAllBot - Telegram Code To Ban All Group Members very fast

BanAllBot Telegram Code To Ban All Group Members very fast FORK AND KANG WITH CR

27 May 13, 2022
Discord bot ( discord.py ), uses pandas library from python for data-management.

Discord_bot A Best and the most easy-to-use Discord bot !! Some simple basic auto moderations, Chat functions. It includes a game similar to Casino, g

Jaitej 4 Aug 30, 2022
The wrapper you need for the osu!api v2

oppy (op.py) oppy is the wrapper for use on the osu! v2 API. Version 1.0.0 Installation To install please use pip to install oppy pip install op.py To

Wayde 2 May 01, 2022
It was increasingly cumbersome to eye-grep CF output in the AWS console.

cfplot Overview It was increasingly cumbersome to eye-grep CF output in the AWS console. I couldn't find another tool out there to provide individual

46 Dec 26, 2022
The Sue Gray Alert System was a 5 minute project that just beeps every time a new article is updated or published on Gov.UK's news pages.

The Sue Gray Alert System was a 5 minute project that just beeps every time a new article is updated or published on Gov.UK's news pages.

Dafydd 1 Jan 31, 2022
Telegram bot for logistic - Telegram bot for logistic

Демонстрационный телеграм-бот для нужд транспортной компании Цель проекта Реализ

M1chigun 1 Feb 05, 2022
b2blaze

b2blaze Welcome to the b2blaze library for Python. Backblaze B2 provides the cheapest cloud object storage and transfer available on the internet. Com

George Sibble 603 Jan 03, 2023
A solution designed to extract, transform and load Chicago crime data from an RDS instance to other services in AWS.

This project is intended to implement a solution designed to extract, transform and load Chicago crime data from an RDS instance to other services in AWS.

Yesaswi Avula 1 Feb 04, 2022
Métamorphose Renamer v2

Métamorphose 2 Métamorphose is a graphical mass renaming program for files and folders. These are the command line options: -h, --help Show hel

Métamorphose 129 Dec 30, 2022
A multipurpose Telegram Bot written in Python for mirroring files on the Internet to Google Drive

Mirror Leech Bot Mirror Leech Bot is a multipurpose Telegram Bot written in Python for mirroring files on the Internet to our beloved Google Drive. Ba

1 Jan 01, 2022
With this program you can work English & Turkish

1 - How Can I Work This? You must have Python compilers in order to run this program. First of all, download the compiler in the link. Compiler 2 - Do

Mustafa Bahadır Doğrusöz 3 Aug 07, 2021
A Telelgram Bot to Extract Text from an Image

Text-Scanner-OCR A Telelgram Bot to Extract Text from an Image Configs Vars API_KEY: Your API_KEY from OCR Space GROUP: Your Group Username without '@

ALBY 8 Feb 20, 2022
An inline Telegram bot to keep your private messages hidden from prying eyes.

Hide This Bot Hide This Bot is an inline Telegram bot to keep your private messages hidden from prying eyes.     How do I host it? Here is a brief gui

41 Dec 02, 2022
A code that can make an account bump your discord server 24/7!

BumpCord A code that can make an account bump your discord server 24/7! The main.py is the main file. keep_alive.py prevents your repl from going to s

Phantom 28 Aug 20, 2022
Build better AWS infrastructure

Sceptre About Sceptre is a tool to drive AWS CloudFormation. It automates the mundane, repetitive and error-prone tasks, enabling you to concentrate o

sceptre 1.4k Jan 04, 2023
A Anything goes Discord bot written in python and uses the wrapper Discord.py

GerardTheWizard A Anything goes Discord bot written in python and uses the wrapper Discord.py What can he do? Allow users to level up through typing,

1 May 05, 2022