How to sp00f "from" mail address?

deeguy1

Regular Member
Joined
Mar 4, 2009
Messages
254
Reaction score
28
Anyone know a mailer that can spoof the "from" address to any email address of my choice?
 
Thanks, this seems like a start, but a bit tedious..I'm looking for more of a bulk solution
 
Depends what language and mail program you're using. Eg, perl and qmail
Code:
$from = 'webmaster(at)google(dot)com';
($ENV{'QMAILUSER'},$ENV{'QMAILHOST'}) = split(/\(at\)/,$from);
# send mail code
 
if you do spoof the from email id you would end up in spam so whats the point?!?!
 
Spoofing the sender email won't make you anonymous, all of the servers header info will still be in tact. There are ways to make it more or less impossible to trace you such as using anonymous proxies.. preferably socks or tor, bulk registration on free php hosts.. if php is the sending language that you choose, those are two simple things to start with. Here's a simple php script for sending email.
Code:
<?php
if (mail($_GET["to"], $_GET["subject"], $_GET["body"], "FROM: " . $_GET["from"])) {
 echo "Message sent!";
} else {
 echo "Message sending failed.";
}
?>
In theory it should work but I haven't tested it. If you save it as mail.php and upload it to your public_html folder you can call it like this:
Code:
www.yourhost.com/[email protected]&[email protected]&subject=This is a test&body=This is the email body.

If you do decide that you want to automate the process, send me a PM and we can talk.

Cheers,
captchaman
 
if you do spoof the from email id you would end up in spam so whats the point?!?!
not necessarily

i've just tried the tool posted above, email has been delivered into inbox, i tried with gmail and yahoo as well
 
This is really great. I tried it out and it works. However, I didn't see anyway for me to spoof the return address. Is there a way for the spoofed email to also be able to receive recipient emails? Please let me know! :cool:
 
I don't quite understand the PHP mail thing... Pretty much a n00b. Can someone please explain this to me in simple terms? I checked out the link but don't quite understand. Do I need to put in some commands for the (From E-mail:)?

I basically want to be able to email back and forth with the recipient using the spoofed email! Im sorry for the ignorance again... i really appreciate you guys help!!! :bigok::bigok:
 
Back
Top