hobbit monitor
+ Reply to Thread
Results 1 to 11 of 11

Thread: Email Spoof?

  1. #1
    Join Date
    Sep 2006
    Posts
    1,649

    Email Spoof?

    Are there any email servers I can connect to to spoof emails? Because I found out about it today, and wanted to try it out. 'Cept the fact that when I tried hotmail. it gave me a warning and my connection timed out, and when it didn't, I never recieved my message. I've tried connecting to mail.yahoo and mail.google, except I can't either.

    Is there a way to connect to either of these. And if there isn't, is there another server I can use?

  2. #2
    Join Date
    Sep 2005
    Posts
    2,050
    Quote Originally Posted by Moonbat
    Are there any email servers I can connect to to spoof emails? Because I found out about it today, and wanted to try it out. 'Cept the fact that when I tried hotmail. it gave me a warning and my connection timed out, and when it didn't, I never recieved my message. I've tried connecting to mail.yahoo and mail.google, except I can't either.

    Is there a way to connect to either of these. And if there isn't, is there another server I can use?
    Any SMTP server allows you to spoof emails. There are no specific servers you need to connect to - all will allow you to input any 'from' address without authentication. Here's how to find the mail server of a domain:

    Code:
    nslookup -querytype=mx domain.com
    Remember to input domain.com, not [url]www.domain.com[/url].

    To spoof an email, you need to connect to the server of the target address, not your own service. If I wanted to spoof an email to [email]abc@hotmail.com[/email], I would do this:
    Code:
    telnet mx*.hotmail.com 25
    
    helo hotmail.com
    
    mail from: test@fakedomain.com
    
    rcpt to: target_email_address@hotmail.com
    
    data
    
    From: test@fakedomain.com
    To: target_email_address@hotmail.com
    Subject: Testing my email spoofing skills.
    
    This is my spoofed email.
    
    .
    
    quit
    It's important to remember the period (.) after the message. This tells the server where the end of the text is.

  3. #3
    Join Date
    Sep 2006
    Posts
    1,649

    for instance

    Wait, it has to be a mail server right?

    Couldn't I just get someone's IP who has port 25 open and go from there?

  4. #4
    Join Date
    Sep 2005
    Posts
    2,050
    Quote Originally Posted by Moonbat
    Wait, it has to be a mail server right?

    Couldn't I just get someone's IP who has port 25 open and go from there?
    It has to be a mail server.

    You can't just randomly connect to somebody with port 25 'open' and expect to send emails from there. What will handle the connection? There has to be a server program running on a specific port for you to get a response.

    Try reading these to understand how ports and server programs operate:

    [url]http://en.wikipedia.org/wiki/TCP_and_UDP_port[/url]
    [url]http://en.wikipedia.org/wiki/Port_forwarding[/url]

  5. #5
    Join Date
    Sep 2006
    Posts
    1,649

    thanks

    Thanks mike.

  6. #6
    Join Date
    May 2007
    Posts
    3
    I tried this out, and every time I tried to open a connection I got the message that it could not open a connection to the host on port 25. I'm sure I typed it in correctly though.

  7. #7
    Join Date
    Sep 2005
    Posts
    2,050
    Quote Originally Posted by rorshach View Post
    I tried this out, and every time I tried to open a connection I got the message that it could not open a connection to the host on port 25. I'm sure I typed it in correctly though.
    Are you connecting to a host that is running a mail server on port 25 and is fully accessible to the Internet without firewalls interfering?

  8. #8
    Join Date
    May 2007
    Posts
    3
    I know it's not the firewall interfering, so i guess im using the wrong the port, I just assumed that it was always port 25. How do you find out what port to use?

  9. #9
    Join Date
    Sep 2005
    Posts
    2,050
    Are you connecting to a host that is running a mail server?

  10. #10
    Join Date
    May 2007
    Posts
    3
    I'll be honest, I really don't know what I'm doing. I'm on a school network at a college, so now that I think of it, there could be a firewall that I'm not aware. Sorry that I'm not really giving you much to work with.

  11. #11
    Join Date
    Sep 2005
    Posts
    2,050
    Quote Originally Posted by rorshach View Post
    I'll be honest, I really don't know what I'm doing. I'm on a school network at a college, so now that I think of it, there could be a firewall that I'm not aware. Sorry that I'm not really giving you much to work with.
    If you're not connecting to a computer that's running mail server software, you'll get that "Could not establish connection" message. You can't connect to an IP address on a specific port without their computer both running a server and being accessible.

+ Reply to Thread

Similar Threads

  1. Get IP Add from email?
    By Still Learning in forum Internet Privacy
    Replies: 4
    Last Post: 02-12-2013, 08:53 PM
  2. Email
    By hkoom in forum General discussion
    Replies: 1
    Last Post: 11-15-2009, 01:04 PM
  3. gmx email pw - i need help
    By speedcore in forum Internet Privacy
    Replies: 1
    Last Post: 09-27-2007, 02:28 PM
  4. Getting and Email from a Profile?
    By brody125 in forum Internet Privacy
    Replies: 1
    Last Post: 12-25-2005, 10:41 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts