Question

Write the nmap scan command to run an aggressive, stealth scan for the full port range...

Write the nmap scan command to run an aggressive, stealth scan for the full port range against a target ip-192.168.10.20. The scan should also provide verbose output.

Homework Answers

Answer #1

nmap scan cmd to run the aggresive , steath scan with the verbose using "-v" tag in the command for the full the port range against a target ip : 192.168.10.20

nmap -v --top-ports 20 192.168.10.20


Explanation:

If we want to run nmap scan command on a home server, It is automatically scans a number of the most ‘popular’ ports for a given host 192.168.10.20 , replace the “20” with the number of range of the ports to scan using above nmap command , and nmap will scans that many ports given / provided in the command and It will returns a concise output that details the status of the most common ports using verbose "-v," tag provided in the command and this will quickly see whether we have any unnecessarily open ports or not.

Know the answer?
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
Similar Questions
Write the nmap scan command to run an aggressive, stealth scan for the full port range...
Write the nmap scan command to run an aggressive, stealth scan for the full port range against a target ip-192.168.10.20. The scan should also provide verbose output.
1.Write a for loop that displays the run number and your full name 5 times on...
1.Write a for loop that displays the run number and your full name 5 times on the command window. Your output should look similar to following: using matlab
The first script you need to write is login.sh, a simple script that you might run...
The first script you need to write is login.sh, a simple script that you might run when you first log in to a machine. We'll expand this script later, but for now it should include your name, username, hostname, current directory, and the current time. Here is some sample output to help guide you. Note that the bolded lines that start with "[user@localhost ~]$" are the terminal prompts where you type in a command, not part of the script. Of...
Write a user defined MATLAB program that performs power factor correction. The inputs to the MATLAB...
Write a user defined MATLAB program that performs power factor correction. The inputs to the MATLAB function should be voltage across the load (in Vrms, assume 0 phase), frequency Resistance of the load Inductance of the load power factor of the load target power factor The output of the function should be the size of the capacitor that one would need to place in parallel with the load to reach the target power factor. Please submit the code for the...
(Do this in C++ please and make sure no compile/run errors): I. Write a function that...
(Do this in C++ please and make sure no compile/run errors): I. Write a function that writes a series of random Fahrenheit temperatures and their correspond- ing Celsius temperatures to a tab-delimited file. Use 32 to 212 as your temperature range. From the user, obtain the following: 1. The number of temperatures to randomly generate. 2. The name of the output file. A sample run is included below (you must follow the format provided below): Please enter the name of...
Write a complete program that will generate equally likely random shoe sizes in the inclusive range...
Write a complete program that will generate equally likely random shoe sizes in the inclusive range [5, 13.5], with whole or half sizes allowed. The number of values to generate will be input by the program user. It will also count and display the total number of times small (5, 5.5, 6, 6.5) and large (12, 12.5, 13, 13.5) sizes are generated. We have provided skeleton code for you to use. You must implement the helper method as given in...
6) Let’s try to understand the long-run and short-run implications of monetary policy issues. Let’s assume...
6) Let’s try to understand the long-run and short-run implications of monetary policy issues. Let’s assume inflation is currently 2% and that monetary policy has an inflation targeting rule that makes desired (targeted) inflation also 2%. Finally, suppose the equilibrium real interest rate in the economy is 1% and that “beta” in the Phillips curve is 1.2. a) In the long-run, the output gap should be 0% and there should be no shocks to inflation. In that situation what will...
The code I have written runs but I need it us UDP not TCP. Also I...
The code I have written runs but I need it us UDP not TCP. Also I just need someone to check my work and make sure that it works properly. The python code needs to be run with command line so you can add more than one client. The directions: 1. The chat is performed between 2 clients and not the server. 2. The server will first start up and choose a port number. Then the server prints out its...
Solve the following problem using the MATLAB environment Write a function [approx_root, num_its] = bisection(f,a,b,tol) that...
Solve the following problem using the MATLAB environment Write a function [approx_root, num_its] = bisection(f,a,b,tol) that implements the bisection method. You function should take as input 4 arguments with the last argument being optional, i.e, if the user does not provide the accuracy tol use a default of 1.0e-6 (use varargin to attain this). Your function should output the approximate root, approx_root and the number of iterations it took to attain the root, num_its. However, if the user calls the...
You will write a program that loops until the user selects 0 to exit. In the...
You will write a program that loops until the user selects 0 to exit. In the loop the user interactively selects a menu choice to compress or decompress a file. There are three menu options: Option 0: allows the user to exit the program. Option 1: allows the user to compress the specified input file and store the result in an output file. Option 2: allows the user to decompress the specified input file and store the result in an...