GIAC Systems and Network Auditor v1.0

Page:    1 / 28   
Exam contains 417 questions

Which of the following statements about a session are true? (Choose two)

  • A. The creation time can be obtained using the getSessionCreationTime() method of the HttpSession.
  • B. The getAttribute() method of the HttpSession interface returns a String.
  • C. The time for the setMaxInactiveInterval() method of the HttpSession interface is specified in seconds.
  • D. The isNew() method is used to identify if the session is new.


Answer : Answer: A is incorrect. The creation time of a session can be obtained using the getCreationTime() method of the HttpSession.

Explanation:
The setMaxInactiveInterval() method sets the maximum time in seconds before a session becomes invalid. The syntax of this method is as follows: public void setMaxInactiveInterval(int interval) Here, interval is specified in seconds. The isNew() method of the HttpSession interface returns true if the client does not yet know about the session, or if the client chooses not to join the session. This method throws an IllegalStateException if called on an invalidated session.
Answer B is incorrect. The getAttribute(String name) method of the HttpSession interface returns the value of the named attribute as an object. It returns a null value if no attribute with the given name is bound to the session. This method throws an IllegalStateException if it is called on an invalidated session.

Which of the following statements is true about a relational database?

  • A. It is difficult to extend a relational database.
  • B. The standard user and application program interface to a relational database is Programming Language (PL).
  • C. It is a collection of data items organized as a set of formally-described tables.
  • D. It is a set of tables containing data fitted into runtime defined categories.


Answer : Answer: B is incorrect. The standard user and application program interface to a relational database is the structured query language (SQL).

Explanation:
A relational database is a collection of data items organized as a set of formally-described tables from which data can be accessed or reassembled in many different ways without having to reorganize the database tables. contains one or more data categories in columns. Each row contains a unique instance of data for the categories defined by the columns.

You work as a Network Administrator for BetaTech Inc. You have been assigned the task of designing the firewall policy for the company.
Which of the following statements is unacceptable in the 'acceptable use statement' portion of the firewall policy?

  • A. The computers and their applications should be used for organizational related activities only.
  • B. Computers may not be left unattended with a user account still logged on.
  • C. Applications other than those supplied or approved by the company can be installed on any computer.
  • D. The installed e-mail application can only be used as the authorized e-mail service.


Answer : Applications other than those supplied or approved by the company shall not be installed on any computer. Answer: A, B, D are incorrect. All of these statements

Explanation:
stand true in the 'acceptable use statement' portion of the firewall policy.

You have recently joined as a Network Auditor in XYZ CORP. The company has a Windows-based network. You have been assigned the task to determine whether or not the company's goal is being achieved.
As an auditor, which of the following tasks should you perform before conducting the data center review? Each correct answer represents a complete solution.
Choose three.

  • A. Review the future IT organization chart.
  • B. Meet with IT management to determine possible areas of concern.
  • C. Review the company's IT policies and procedures.
  • D. Research all operating systems, software applications, and data center equipment operating within the data center.


Answer : Answer: A is incorrect. An auditor should review the current organization chart. Reviewing the future organization chart would not help in finding the current threats

Explanation:
The auditor should be adequately educated about the company and its critical business activities before conducting a data center review. The objective of the data center is to align data center activities with the goals of the business while maintaining the security and integrity of critical information and processes. To adequately determine if whether or not the client's goal is being achieved, the auditor should perform the following before conducting the review: Meet with IT management to determine possible areas of concern. Review the current IT organization chart. Review job descriptions of data center employees. Research all operating systems, software applications, and data center equipment operating within the data center. Review the company's IT policies and procedures. Evaluate the company's IT budget and systems planning documentation. Review the data center's disaster recovery plan. to the organization.

Patricia joins XYZ CORP., as a Web Developer. While reviewing the company's Web site, she finds that many words including keywords are misspelled.
How will this affect the Web site traffic?

  • A. Leave a bad impression on users.
  • B. Search engine relevancy may be altered.
  • C. Link exchange with other sites becomes difficult.
  • D. The domain name cannot be registered.


Answer : B

Explanation:
Web site traffic depends upon the number of users who are able to locate a Web site. Search engines are one of the most frequently used tools to locate Web sites. They perform searches on the basis of keywords contained in the Web pages of a Web site. Keywords are simple text strings that are associated with one or more topics of a Web page. Misspelled keywords prevent Web pages from being displayed in the search results.

You work as a Network Administrator for ABC Inc. The company uses a secure wireless network. John complains to you that his computer is not working properly.
What type of security audit do you need to conduct to resolve the problem?

  • A. Non-operational audit
  • B. Dependent audit
  • C. Independent audit
  • D. Operational audit


Answer : Answer: B is incorrect. It is not a valid type of security audit.

Explanation:
An independent audit is an audit that is usually conducted by external or outside resources. It is the process of reviewing detailed audit logs for the following purposes:
-> To examine the system activities and access logs
-> To assess the adequacy of system methods
-> To assess the adequacy of system controls
-> To examine compliance with established enterprise network system policies
-> To examine compliance with established enterprise network system procedures
-> To examine effectiveness of enabling, support, and core processes

You have an online video library. You want to upload a directory of movies. Since this process will take several hours, you want to ensure that the process continues even after the terminal is shut down or session is closed.
What will you do to accomplish the task?

  • A. Use the bg command to run the process at the background.
  • B. Add the nohup command in front of the process.
  • C. Add the nohup command at the end of the process.
  • D. Run the process inside a GNU Screen-style screen multiplexer.


Answer : Answer: C is incorrect. The nohup command works when it is added in front of a command.

Explanation:
Whenever the nohup command is added in front of any command or process, it makes the command or process run even after the terminal is shut down or session is closed. All processes, except the 'at' and batch requests, are killed when a user logs out. If a user wants a background process to continue running even after he logs out, he must use the nohup command to submit that background command. To nohup running processes, press ctrl+z, enter "bg" and enter
"disown". The other way to accomplish the task is to run the command/process inside a GNU Screen-style screen multiplexer, and then detach the screen. GNU
Screen maintains the illusion that the user is always logged in, and allows the user to reattach at any time. This has the advantage of being able to continue to interact with the program once reattached (which is impossible with nohup alone).

You work as a Web Deployer for UcTech Inc. You write the <security constraint> element for an application in which you write the <auth-constraint> sub-element as follows: <auth-constraint> <role-name>*</role-name> </auth-constraint> Who will have access to the application?

  • A. Only the administrator
  • B. No user
  • C. All users
  • D. It depends on the application.


Answer : C

Explanation:
The <auth-constraint> element is a sub-element of the <security-constraint> element. It defines the roles that are allowed to access the Web resources specified by the <web-resource-collection> sub-elements.
The <auth-constraint> element is written in the deployment descriptor as follows:
<security-constraint> <web-resource-collection> ---------------- </web-resource-collection> <auth-constraint> <role-name>Administrator</role-name> </auth- constraint> </security-constraint>
Writing Administrator within the <role-name> element will allow only the administrator to have access to the resource defined within the <web-resource-collection> element.

You work as a Network Administrator for XYZ CORP. The company has a TCP/IP-based network environment. The network contains Cisco switches and a Cisco router.
You run the following command for a router interface:
show interface serial0
You get the following output:
Serial0 is administratively down, line protocol is down
What will be your conclusion after viewing this output?

  • A. There is a physical problem either with the interface or the cable attached to it.
  • B. The router has no power.
  • C. There is a problem related to encapsulation.
  • D. The interface is shut down.


Answer : Answer: A is incorrect. Had there been a physical problem with the interface, the output would not have displayed "administratively down". Instead, the output

Explanation:
According to the question, the output displays that the interface is administratively down. Administratively down means that the interface is shut down. In order to up the interface, you will have to open the interface with the no shutdown command. would be as follows: serial0 is down, line protocol is down

Sam works as a Web Developer for McRobert Inc. He creates a Web site. He wants to include the following table in the Web site:
He writes the following HTML code to create the table:
1. <TABLE BORDER="1" WIDTH="500">
2. <TR>
3.
4.
5. </TR>
6. <TR>
7. <TD>
8. </TD>
9. <TD>
10. </TD>
11. <TD>
12. </TD>
13. </TR>
14. <TR>
15. <TD>
16. </TD>
17. <TD>
18. </TD>
19. <TD>
20. </TD>
21. </TR>
22. </TABLE>
Which of the following tags will Sam place at lines 3 and 4 to create the table?

  • A. at line 3 at line 4
  • B. at line 3 at line 4
  • C. at line4 at line
  • D. at line 3 at line 4


Answer : Answer: C is incorrect.

Explanation:
The tag is used to specify each cell of the table. It can be used only within a row in a table. The ROWSPAN attribute of the tag specifies the number of rows that a cell spans over in a table. Since, the first cell of the table spans over three rows, Sam will use specifies the number of columns that the head row contains.

John works as a professional Ethical Hacker. He has been assigned the project of testing the security of www.we-are-secure.com. He is using the Linux operating system. He wants to use a wireless sniffer to sniff the We-are-secure network.
Which of the following tools will he use to accomplish his task?

  • A. WEPCrack
  • B. Kismet
  • C. Snadboy's Revelation
  • D. NetStumbler


Answer : Answer: D is incorrect. NetStumbler is a Windows-based tool that is used for the detection of wireless LANs using the IEEE 802.11a, 802.11b, and 802.11g

Explanation:
According to the scenario, John will use Kismet. Kismet is a Linux-based 802.11 wireless network sniffer and intrusion detection system. It can work with any wireless card that supports raw monitoring (rfmon) mode. Kismet can sniff 802.11b, 802.11a, 802.11g, and802.11n traffic. Kismet can be used for the following tasks:
-> To identify networks by passively collecting packets
-> To detect standard named networks
-> To detect masked networks
-> To collect the presence of non-beaconing networks via data traffic standards. It detects wireless networks and marks their relative position with a GPS.

You work as a Network Administrator of a TCP/IP network. You are having DNS resolution problem.
Which of the following utilities will you use to diagnose the problem?

  • A. PING
  • B. IPCONFIG
  • C. TRACERT
  • D. NSLOOKUP


Answer : Answer: A is incorrect. The ping command-line utility is used to test connectivity with a host on a TCP/IP-based network. This is achieved by sending out a series

Explanation:
NSLOOKUP is a tool for diagnosing and troubleshooting Domain Name System (DNS) problems. It performs its function by sending queries to the DNS server and obtaining detailed responses at the command prompt. This information can be useful for diagnosing and resolving name resolution issues, verifying whether or not the resource records are added or updated correctly in a zone, and debugging other server-related problems. This tool is installed along with the TCP/IP protocol through the Control Panel. of packets to a specified destination host. On receiving the packets, the destination host responds with a series of replies. These replies can be used to determine whether or not the network is working properly.
Configuration Protocol (DHCP) allocated leases. It is also used to display, register, or flush Domain Name System (DNS) names.
Domain Name (FQDN) and the IP address of each gateway along the route to the remote host.

John works as a professional Ethical Hacker. He is assigned a project to test the security of www.we-are-secure.com. He is working on the Linux operating system. He wants to sniff the we-are-secure network and intercept a conversation between two employees of the company through session hijacking.
Which of the following tools will John use to accomplish the task?

  • A. IPChains
  • B. Tripwire
  • C. Hunt
  • D. Ethercap


Answer : Answer: D is incorrect. Ethercap is a network sniffer and packet generator. It may be an option, but John wants to do session hijacking as well. Hence, he will not

Explanation:
In such a scenario, John will use Hunt which is capable of performing both the hacking techniques, sniffing and session hijacking. use Ethercap.

In which of the following CAATs (Computer Assisted Auditing Techniques) does an auditor perform tests on computer files and databases?

  • A. Parallel Simulation
  • B. Generalized Audit Software (GAS)
  • C. Test Data
  • D. Custom Audit Software (CAS)


Answer : B

Explanation:
CAATs (Computer Assisted Auditing Techniques) are used to test application controls as well as perform substantive tests on sample items. Following are the types of CAATs:
Generalized Audit Software (GAS): It allows the auditor to perform tests on computer files and databases.
Custom Audit Software (CAS): It is generally written by auditors for specific audit tasks. CAS is necessary when the organization's computer system is not compatible with the auditor's GAS or when the auditor wants to conduct some testing that may not be possible with the GAS.
Test Data: The auditor uses test data for testing the application controls in the client's computer programs. The auditor includes simulated valid and invalid test data, used to test the accuracy of the computer system's operations. This technique can be used to check data validation controls and error detection routines, processing logic controls, and arithmetic calculations, to name a few.
Parallel Simulation: The auditor must construct a computer simulation that mimics the client's production programs.
Integrated TestFacility: The auditor enters test data along with actual data in a normal application run.

You are concerned about an attacker being able to get into your network. You want to make sure that you are informed of any network activity that is outside normal parameters.
What is the best way to do this?

  • A. Utilize protocol analyzers.
  • B. User performance monitors.
  • C. Implement signature based antivirus.
  • D. Implement an anomaly based IDS.


Answer : Answer: C is incorrect. Antivirus software, while important, won't help detect the activities of intruders.

Explanation:
An anomaly based Intrusion Detection System will monitor the network for any activity that is outside normal parameters (i.e. an anomaly) and inform you of it.

Page:    1 / 28   
Exam contains 417 questions

Talk to us!


Have any questions or issues ? Please dont hesitate to contact us

Certlibrary.com is owned by MBS Tech Limited: Room 1905 Nam Wo Hong Building, 148 Wing Lok Street, Sheung Wan, Hong Kong. Company registration number: 2310926
Certlibrary doesn't offer Real Microsoft Exam Questions. Certlibrary Materials do not contain actual questions and answers from Cisco's Certification Exams.
CFA Institute does not endorse, promote or warrant the accuracy or quality of Certlibrary. CFA® and Chartered Financial Analyst® are registered trademarks owned by CFA Institute.
Terms & Conditions | Privacy Policy