Question

Cyber Security EXERCISE 1: One very simple tool to figure out if a “host” (any device...

Cyber Security

EXERCISE 1:

One very simple tool to figure out if a “host” (any device with an address on a network) is turned on and communicating over the network is “PING.” Of course, system administrators can prevent hosts from responding to pings.

DO:

  1. Check out the website: In Kali, open up the browser (Iceweasel). In the address bar type the URL http://www.foo.com to notice that there is a site configured with that domain.
  2. Open up the command line on Kali and ping (ping domainname i.e. ping www.foo.com) the above domain.
    1. After a few echoes hit “CTRL+C” to cancel the ping process. Obviously, this website is running on a server and if the site is on we did not really need to ping it to find if “it is up.” The ping does give us some basic information.
    2. Alternatively type ping -c 4 www.foo.com to send only four echo requests or change 4 to another number you desire.

Exercise 1 Questions

Q 1.1) Is the computer corresponding to the domain name on and communicating? (YES/NO)

Q 1.2) What is the IP version 4 address of this computer?

Q 1.3) What did we “attackers” learn from this simple procedure? (Be sure to read about ping, what it reveals (beyond the IP address), whether it is good or bad to enable ping responses or whether it doesn’t matter. Hint: start with finding out what underlying protocol is used for pings. Note: When reading you will find a wide variety of opinions on pings. I am not looking for the right answer. I am interested in how much you research this topic and what you learn about it)

EXERCISE 2:

In this exercise, we will use a tool available on most *nix platforms for obtaining DNS information, called DIG. Similar functionality is available through tools such as “NSLOOKUP” (also available on Windows) and “HOST”. Here we focus on “DIG”.

DO: (if you haven’t watched the videos on DIG mentioned above, please do so)

At the command line in Kali, issue a simple dig command for the above domain:
dig www.foo.com

Exercise 2 Questions

Q 2.1) Examine the Question Section in the output of the above command. What “question” (precisely in DNS terminology) did we ask in this query?

Q 2.2) Examine the Answer Section.

  1. What is the IP (version 4) address associated with that name?

Q 2.3) Examine the Authority Section. What type of record is returned here? What is the name of the name server associated with this domain? (Don’t be confused with its name, it does not matter what it is called, simply report the name in the record type NS)

Q 2.4) Examine the Additional Section. What is the IP address of the name server?

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Q 1.1) Is the computer corresponding to the domain name on and communicating? (YES/NO)
Yes but in my kali its not configured so i have used www.google.com rather concept is same if xampp server or any website was running in my kali then ip would be 127.0.0.1 with whatever hostname.


Q 1.2) What is the IP version 4 address of this computer?
10.0.2.15

Q 1.3) What did we “attackers” learn from this simple procedure?
to know any website's ip address we can ping to that website and get to know the ip

Q 2.1) Examine the Question Section in the output of the above command. What “question” (precisely in DNS terminology) did we ask in this query?

;; QUESTION SECTION:
;www.google.com.           IN   A

its asking to google for return the A address of the site
Q 2.2) Examine the Answer Section.


;; ANSWER SECTION:
www.google.com.       203   IN   A   172.217.31.4

its replies to question which was asking for ip and in answer section replies with demand

We are allowed to do only 4 exercise out of any given.

if you have any doubt then please ask me without any hesitation in the comment section below , if you like my answer then please thumbs up for the answer , before giving thumbs down please discuss the question it may possible that we may understand the question different way and we can edit and change the answers if you argue, thanks :)

Add a comment
Know the answer?
Add Answer to:
Cyber Security EXERCISE 1: One very simple tool to figure out if a “host” (any device...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • please give me clear picture Section 1: DNS nslookup The Domain Name System (DNS) translates hostnames...

    please give me clear picture Section 1: DNS nslookup The Domain Name System (DNS) translates hostnames to IP addresses, fulfilling a critical role in the Internet infrastructure. In this lab, we’ll take a closer look at the client side of DNS. Recall that the client’s role in the DNS is relatively simple – a client sends a query to its local DNS server, and receives a response back. Much can go on “under the covers,” invisible to the DNS clients,...

  • 2. The dig command can be used to obtain information from the DNS records for a...

    2. The dig command can be used to obtain information from the DNS records for a giver domain name or IP address. What is the output for the following commands and what is the difference between them? a. dig www.cs.csub.edu b. dig soa www.cs.csub.edu 3. You are getting probes from some host in the 209.9.244.* (Class C) network. Which of the following commands will find the Start of Authority record for that network (the answer section will have an authority...

  • Project 4-3: In the following steps, you will learn more about the PING (Packet Internet Grouper)...

    Project 4-3: In the following steps, you will learn more about the PING (Packet Internet Grouper) utility, which can be used on a network running IPv4 to verify that TCP/IP is configured correctly and communicating with the network. A ping test is typically the first thing network professionals try when troubleshooting a TCP/IP connection problem. For this project, you can use any type of workstation that's running TCP/IPv4, preferably one connected to the Internet. The output described in the following...

  • use TOLEDO OHIO USA IP ADDRESS and typed please! 1 of 1 Environment variables are some of the most useful tools avai...

    use TOLEDO OHIO USA IP ADDRESS and typed please! 1 of 1 Environment variables are some of the most useful tools available to command shell script writers. By default, all Windows systems include a host of environment variables that can provide important information about the system and the current user a Run ipconfig /all in the command line. What is your computer's running Ipv6 address? 2) To list all your system's environment variables, you can type "set". What the COMPUTERNAME...

  • Description: In this assignment, you will be launching a denial of service attack on a web...

    Description: In this assignment, you will be launching a denial of service attack on a web server. We will be using hping3, a command-line oriented network security tool inside Kali Linux (an advanced penetration testing Linux distribution). Setting up the victim machine Download the Windows XP virtual machine with WebGoat server installed, using the following link. We will use this machine as the victim machine and launch a DoS attack on the WebGoat server.https://drive.google.com/open?id=0BwCbaZv8DevUejBPWlNHREFVc2s Open the victim machine and launch...

  • ANSWER NETWORKS QUESTIONS (MCQS AND CALCULATIONS) QUESTIONS ( 11 - 20) QUESTION 11 1.     Consider the following...

    ANSWER NETWORKS QUESTIONS (MCQS AND CALCULATIONS) QUESTIONS ( 11 - 20) QUESTION 11 1.     Consider the following excerpt from a simple server side UDP program: Server.py from socket import * sName=’127.0.0.1’ sSocket=socket(AF_INET,SOCK_DGRAM) sSocket.bind((sName, 12005)) while True: msg, cAddr =sSocket.recvfrom(2048) newMsg = msg.decode().lower()   sSocket.sendto(*********************) What code could be used to replace the **********’s in line 8? newMsg.encode(), cAddr newMsg.encode() msg.encode(), cAddr msg.encode() none of the above 1 points    QUESTION 12 For a client to obtain an IP address from the local...

  • computer networks help please !!! could someone help with the following tasks! ANY HELP WILL BE...

    computer networks help please !!! could someone help with the following tasks! ANY HELP WILL BE IMMENSELY APPRECIATED! THANKS. Task 1 In the following scenario, we would like to find out more information about a host that is on out network. Given an IP address we would like to search for additional information, we can start with obtaining the IP address off the default route. When running on a Linux VM, this like most likely to be the internal IP...

  • can you please help me with this homework. DCOM 101 – Introduction to Data Communications Final Project Instructions: In this Final Project, you will test the skills and knowledge gained throughout th...

    can you please help me with this homework. DCOM 101 – Introduction to Data Communications Final Project Instructions: In this Final Project, you will test the skills and knowledge gained throughout this course. The steps listed below are loosely based on the Assignments you have completed thus far, so don’t hesitate to look back and use those resources. Follow the steps in each section, and paste screenshots when prompted. This assignment is worth 10% of your final grade. Basic Network...

  • on calculations can i see how did the expect come to the solution ,all the workout...

    on calculations can i see how did the expect come to the solution ,all the workout should be included QUESTION 1 A file of size F = 8 Gbits needs to be distributed to10 peers. Suppose the server has an upload rate of u = 68 Mbps, and that the 10 peers have upload rates of: u1 = 20 Mbps, u2 = 22 Mbps, u3 = 12 Mbps, u4 = 19 Mbps, u5 = 25 Mbps, u6 = 24 Mbps,...

  • I NEED HELP WITH NETWORKS ( 1 - 11) QUESTIONS , ENSURE YOU ANSWER THEM ALL...

    I NEED HELP WITH NETWORKS ( 1 - 11) QUESTIONS , ENSURE YOU ANSWER THEM ALL QUESTION 1 Which of the following could be valid DNS resource record entries? (mysite.com, 125.245.206.3, NS) (ibm.com, backup6.ibm.com, CNAME) (158.223.21.2, mypage.edu, A) All of the above None of the above 1 points    QUESTION 2 Which mail protocol keeps state information across sessions? SMTP POP3 IMAP All of the above None of the above 1 points    QUESTION 3 What type of message is...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT