well, I just whipped this up in my spare timee.
I'm learning still, so don't hate, appreciate.
simply, upload to any site that supports PHP & MySQL
it's a mix of HTML and PHP.Code:<?php //usage: simply copy and paste to a new file and name it mailer.php, upload it to a server with SMTP. Navigate to the location of the file to use the GUI. The code does not need to be edited to use. //written by GoWRTeKz aka zzGoWR if (isset($_POST["submit"])) { $list=$_POST["list"]; $email=$_POST["email"]; $subject=$_POST["subject"]; $body=$_POST["body"]; $header="From: ".$email; $msg=""; $t_email=explode(", ",$list); for($i=0;$i<(count($t_email));$i=$i+1) { if (mail($t_email[$i],$subject,$body,$header)) { $msg.="Message successfully sent to ".$t_email[$i]."<br />"; } else { $msg.="Message failed to be sent to ".$t_email[$i]."<br />"; } } echo $msg; } ?> <html> <body> <form method="post"> <textarea name="list" rows="10" cols="40">Enter list of emails, seperated by a comma and a space (e.g. 1@gmail.com, 2@gmail.com)</textarea><br /> <input name="subject" value="Enter subject" size="53"/><br /> <textarea name="body" rows="10" cols="40">Enter email content</textarea><br /> <input name="email" value="Enter email to be spoofed" size="53"/><br /> <button name="submit" type="submit" style="width: 345px;"><span>Send</span></button> </form> </body> </html>
Example.
Proof
Results 1 to 3 of 3
- 31 Oct. 2010 02:32am #1
[Release] Advanced PHP Fake Mailer [GUI]
Last edited by zzGoWR; 31 Oct. 2010 at 02:56am.
Apply for BCK Hacking Crew! Read this link for more info.
My only MSN email is |[gowr@w.cn]|.
Adf.ly Referral. (Cuz you luv me <3)
My guide on Fake Login Windows + how to spread them.
[TuT] Making a FREE DepositFiles GOLD account!
Wordlists for Password Crackers [CRACKED 320 ACCOUNTS SO FAR!!! LEGIT!!!]
[TuT] Making your own Trainer
[GoWRTeKz] My Favorite Music
Signature
Thanks EliRocks!
- 31 Oct. 2010 03:16pm #2
That's not advanced in the least, but good job.
- 31 Oct. 2010 06:00pm #3
its more advanced than the other one I posted.
Thank you though, relly makes me feel happy inside dat i got sum HTML approval
<3
ilavuhtmlLast edited by zzGoWR; 31 Oct. 2010 at 06:01pm. Reason: HEY FUCK YOU MAN. NO MAN, FUCK YOU. NO REALLY, F U C K Y O U!
Apply for BCK Hacking Crew! Read this link for more info.
My only MSN email is |[gowr@w.cn]|.
Adf.ly Referral. (Cuz you luv me <3)
My guide on Fake Login Windows + how to spread them.
[TuT] Making a FREE DepositFiles GOLD account!
Wordlists for Password Crackers [CRACKED 320 ACCOUNTS SO FAR!!! LEGIT!!!]
[TuT] Making your own Trainer
[GoWRTeKz] My Favorite Music
Signature
Thanks EliRocks!