. One of the vulnerabilities the Morris worm used was a networking service called finger. The purpose of the finger service is to:A.
report which device drivers a computer uses

B.
determine which ports are open on a computer

C.
report the status of individual computer users

D.
determine which operating system is running on a computer

Answers

Answer 1
Answer:

Answer: C)report the status of individual computer users

Explanation:Morris worm is known as the program that replicates itself automatically and hides in the computer system.Because of the vulnerability of the system ,the worm worked as finger protocol for the gaining of the user information and status.

Other option are incorrect as the they are not the vulnerability factor for the Morris worm to work on it and thus finger protocols don't work on those option.Thus, the correct answer is option(c)


Related Questions

A cybersecurity analyst is currently investigating a server outage. The analyst has discovered the following value was entered for the username: 0xbfff601a. Which of the following attacks may be occurring?(A) Buffer overflow attack(B) Man-in-the-middle attack(C) Smurf attack(D) Format string attack(E) Denial of service attack
_ is an important management tool that is used to monitor and manage that contract and/or project
Describe how a web browser and web server work together to send a web page to a user
In dealing with facial recognition technology, what term describes the rate at which imposters are recognized as legitimate users?
1. The system admin staff would like you to create a cron job that runs only on weekdays (Monday - Friday) at 1am, continuously throughout the year. The job should write a list of all processes that are currently running on the host to a file called processes.txt 2. The Helpdesk would like to keep metrics on disk usage for a short period of time. Write a cron job that writes the output of the 'df -h' command to a local file titled metric.txt. The job should run on Wednesday from 10am till 2pm and update every 2 minutes. Make sure that you don't OVERWRITE the data that's already in the file. You'll need to structure your command so that it APPENDS to the file, saving the data that's already been written.

Write a function named minMax() that accepts three integers arguments from the keyboard and finds the smallest and largest integers. Include the function minMax() in a working program. Make sure your function is called from main().Test the function by passing various combinations of three integers to it.

Answers

Answer:

public class Main

{

public static void main(String[] args) {

 minMax(1, 2, 3);

 minMax(100, 25, 33);

 minMax(11, 222, 37);

}

public static void minMax(int n1, int n2, int n3){

    int max, min;

    if(n1 >= n2 && n1 >= n3){

        max = n1;

    }

    else if(n2 >= n1 && n2 >= n3){

        max = n2;

    }

    else{

        max = n3;

    }

   

    if(n1 <= n2 && n1 <= n3){

        min = n1;

    }

    else if(n2 <= n1 && n2 <= n3){

        min = n2;

    }

    else{

        min = n3;

    }

    System.out.println("The max is " + max + "\nThe min is " + min);    

}

}

Explanation:

*The code is in Java.

Create a function named minMax() that takes three integers, n1, n2 and n3

Inside the function:

Declare the min and max

Check if n1 is greater than or equal to n2 and n3. If it is set it as max. If not, check if n2 is greater than or equal to n1 and n3. If it is set it as max. Otherwise, set n3 as max

Check if n1 is smaller than or equal to n2 and n3. If it is set it as min. If not, check if n2 is smaller than or equal to n1 and n3. If it is set it as min. Otherwise, set n3 as min

Print the max and min

Inside the main:

Call the minMax() with different combinations

Given the following: int funcOne(int n) { n *= 2; return n; } int funcTwo(int &n) { n *= 10; return n; } What will the following code output? int n = 30; n = funcOne(funcTwo(n)); cout << "num1 = " << n << endl; Group of answer choices Error num1 = 60 num 1 = 30 num1 = 600 num1 = 300

Answers

Answer:

num1 = 600

Explanation:

Given

The attached code snippet

Required

The output of n = funcOne(funcTwo(n));  when n = 30

The inner function is first executed, i.e.

funcTwo(n)

When n = 30, we have:

funcTwo(30)

This returns the product of n and 10 i.e. 30 * 10 = 300

So:

funcTwo(30) = 300

n = funcOne(funcTwo(n)); becomes: n = funcOne(300);

This passes 300 to funcOne; So, we have:

n = funcOne(300);

This returns the product of n and 2 i.e. 300 * 2 = 600

Hence, the output is 600

Debugging is not testing, but always occurs as a consequence of testing. A) TRUE
B) FALSE

Answers

It is true to say that Debugging is not testing but always occurs as a consequence of testing.

What is Debugging?

Debugging is the process of identifying and fixing defects in computer programs, software, or systems. It is a crucial step in computer programming and software development.

Debugging is used to identify and correct errors. The testing procedure just displays the consequences of the coding fault on the application; it does not assist the developer in identifying the mistake in the code.

Software developers and engineers use debugging to find and correct bugs in programs before making them available to the general public. It's an additional step to testing, which entails discovering how an issue impacts a program as a whole.

Debugging is the act of locating and fixing problems in software code that might lead to unexpected behavior or crashes. These mistakes are sometimes referred to as "bugs." Debugging is used to identify and fix faults or flaws in software or systems so that they don't operate incorrectly.

To read more about Debugging, refer to - brainly.com/question/13966274

#SPJ2

A) True Hope that helps

What is a software? 2 sentences please, I'll mark u as brailiest

Answers

Answer:

Computer software, or simply software, is a collection of data or computer instructions that tell the computer how to work. This is in contrast to physical hardware, from which the system is built and actually performs the work.

Explanation:

)when you classify data into groups and subgroups you are using a(n) ____ order?A. Circular

B. Hierarchical

C. Linear

D. Group

Answers

Answer:B)Hierarchical

Explanation: Hierarchical order classifies the distribution of the data into the groups and their subgroups .The division of these groups and subgroups appear in the structure of pyramid generally.

The classification done in the hierarchical order is based on the authority on each level e.g.-the level with high authority is situated at higher level and below it, followed by its subgroup components.So, the correct option is option(B).

Which type of error occurred in the following lines of code? >>> print(9 / 0)

Traceback (most recent call last):

File " ", line 1, in

9/0

ZeroDivisionError: division by zero
Answer choices:
reserved word error

logical error

exception

syntax error

Answers

Answer: Logical Error

The division by 0 is a logical error.

Other Questions