312-50v10 Exam Question 11

An attacker is using nmap to do a ping sweep and a port scanning in a subnet of 254 addresses.
In which order should he perform these steps?
  • 312-50v10 Exam Question 12

    The chance of a hard drive failure is once every three years. The cost to buy a new hard drive is $300. It will require 10 hours to restore the OS and software to the new hard disk. It will require a further 4 hours to restore the database from the last backup to the new hard disk. The recovery person earns $10/hour. Calculate the SLE, ARO, and ALE. Assume the EF = 1 (100%).
    What is the closest approximate cost of this replacement and recovery operation per year?
  • 312-50v10 Exam Question 13

    During a security audit of IT processes, an IS auditor found that there were no documented security procedures. What should the IS auditor do?
  • 312-50v10 Exam Question 14

    You are logged in as a local admin on a Windows 7 system and you need to launch the Computer Management Console from command line.
    Which command would you use?
  • 312-50v10 Exam Question 15

    Which of the following programming languages is most susceptible to buffer overflow attacks, due to its lack of a built-in-bounds checking mechanism?
    Code:
    #include <string.h>
    int main(){
    char buffer[8];
    strcpy(buffer, ""11111111111111111111111111111"");
    }
    Output:
    Segmentation fault