Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In this project, you will explore how to spoof and email using the commandline in Windows. Essentially, you will be manually issuing commands that your
In this project, you will explore how to spoof and email using the commandline in Windows. Essentially, you will be manually issuing commands that your email program normally issues behindthescenes when you send an email. To complete this project, you will need to connect to the mail server. Ask your instructor for the name of the mail server you should use. In this example you will send the spoofed message to your own email address; keep in mind that you should never send a spoof email to anyone but yourself.
To open a command prompt window, click start, click run, type cmd and then press enter.
Recall that port is the wellknown port used to send SMTP messages. Connect to port on the mail server by typing the following command
telnet localhost
A welcome message should appear. This will vary depending on the server. next introduce yourself to the mail server
HELO mailserver
To make it appear to the recipient that the email is coming from the indicated address, type the following command, using the email address that is shown.
MAIL FROM:penguin@southpole.com
To address the email to yourself, type the following commands
RCPT TO: youremailaddress
To forge themessage header, type the following
data
from:penguin@southpole.com
Date:Sat, Dec ::
Subject: Greetings from down below!
Press enter and the type the following
It's cold down here!
To create a blank line press enter.
press enter
to exit type quit
check your email
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started