Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-

Faking email sender

Name: Anonymous 2012-12-06 21:12

I have been receiving some spam addressed something like "asshole@server.com". But server.com admin checked and said that there are no email going out from that address.. Which by the way he says it does not exist. I noticed that the email is send from an ip from russia, while server.com is from usa.
Is possible that someone is faking server.com name? How is that possible?

Name: 4ct !3lWjo8kf8k 2012-12-08 14:52

It's called email spoofing, see below!

http://en.wikipedia.org/wiki/Email_spoofing

Name: Anonymous 2012-12-10 15:32

You can do it with telnet

Name: Anonymous 2012-12-18 13:44


#!/usr/bin/perl

use strict;
use warnings;  # Healthy coding

my $to = 'user1@domain.com, user2@domain.com, fag@dick.com';
my $from = 'nonexistant@email';
my $subject = "SPUFIN UP YO MAIL, BEE-YATCH!!!";

open(MAIL, "|/usr/sbin/sendmail -t");
print MAIL "To: $to\n";
print MAIL "From: $from\n";
print MAIL "Subject: $subject\n\n";
print MAIL "Body of the email, type whatever the fuck you want.";
close(MAIL);

print "...Complete!\n";


It might only work on internal mail servers... otherwise play around with sendmail, you'll get it eventually.

Don't change these.
Name: Email:
Entire Thread Thread List