Which of the following BEST describes privilege escalation in the context of kernel security?
Reveal answer details Close answer details
Correct answerD
ISACA · ISACA-CCOA
Preview real exam questions, verified answers and available explanations before choosing a study plan.
|
Single choice
Which of the following BEST describes privilege escalation in the context of kernel security? Reveal answer details Close answer detailsCorrect answerD
Single choice
Which of the following BEST offers data encryption, authentication, and integrity of data flowing between a server and the client? Reveal answer details Close answer detailsCorrect answerC
Lab simulation
Simulation Analyze the file titled pcap_artifact5.txt on the AnalystDesktop. Decode the contents of the file and save the output in atext file with a filename of pcap_artifact5_decoded.txton the Analyst Desktop. Reveal model answer Close model answerOpen the Analyst Desktop --> Investigations (or the folder where "pcap_artifact5.txt" resides) and open the file in a viewer (Notepad/Notepad++/less) to quickly profile the encoding. Look for telltale patterns: Base64: only A-Z, a-z, 0-9, +, /, with optional = padding; often wrapped across lines If you're on Windows (PowerShell), use this decision path and save exactly to the Analyst Desktop as PowerShell - try Base64 first (most common in PCAP artifacts) Start --> Windows PowerShell Run (adjust the input path if needed): Write-Host "Base64 decode succeeded"; If Base64 fails, test URL-decode (common after Base64 or alone) If hex-encoded text is suspected If text looks like ROT13 (letters only, "gurer", "pbqr", etc.) If the first decode yields another encoded blob, repeat the appropriate step but set the input to the If you're on Linux/macOS (Terminal), use this decision path and save the output file to the Desktop. Base64 (first try) tr -d '\r\n\t ' < ~/Desktop/pcap_artifact5.txt | base64 -d > /Desktop/pcap_artifact5_decoded.txt 2>/Desktop/ If Base64 fails, try Base32 base32 -d ~/Desktop/pcap_artifact5.txt > /Desktop/pcap_artifact5_decoded.txt 2>/Desktop/ If hex is suspected (strip non-hex, then convert) tr -cd '0-9A-Fa-f' < ~/Desktop/pcap_artifact5.txt | xxd -r -p > ~/Desktop/pcap_artifact5_decoded.txt If URL-encoded python3 - << 'PY' > ~/Desktop/pcap_artifact5_decoded.txt If ROT13 tr 'A-Za-z' 'N-ZA-Mn-za-m' < ~/Desktop/pcap_artifact5.txt > ~/Desktop/pcap_artifact5_decoded.txt If decoding reveals another layer (e.g., Base64 --> URL-encoded --> text), feed the new output back through the appropriate decoder until you end with clear text (repeat the relevant command with input = pcap_artifact5_decoded.txt and write back to the same file or a temp, then move it to the required filename). Validate the final output and ensure the exact filename/location Open the resulting file to confirm it's human-readable and complete: Windows: notepad $env:USERPROFILE\Desktop\pcap_artifact5_decoded.txt Linux/macOS: less ~/Desktop/pcap_artifact5_decoded.txt Ensure the file is named exactly pcap_artifact5_decoded.txt and sits on the Analyst Desktop.
Single choice
Which types of network devices are MOST vulnerable due to age and complexity? Reveal answer details Close answer detailsCorrect answerC
Single choice
Which of the following Isa PRIMARY purpose of middleware? Reveal answer details Close answer detailsCorrect answerA
Single choice
Which of the following services would pose the GREATEST risk when used to permit access to and from the Internet? Reveal answer details Close answer detailsCorrect answerD
Single choice
Target discovery and service enumeration would MOST likely be used by an attacker who has the initial objective of: Reveal answer details Close answer detailsCorrect answerB
Single choice
Which of the following is the PRIMARY purpose for an organization to adopt a cyber security framework? Reveal answer details Close answer detailsCorrect answerC
Single choice
Which of the following MOST directly supports the cyber security objective of integrity? Reveal answer details Close answer detailsCorrect answerB
Single choice
A cybersecurity analyst has discovered a vulnerability in an organization's web application. Which ofthe following should be done FIRST to address this vulnerability? Reveal answer details Close answer detailsCorrect answerC
Single choice
Which of the following is the MOST effective way to prevent man-in-the-middle attacks? Reveal answer details Close answer detailsCorrect answerC
Single choice
An organization has received complaints from a number of its customers that their data has been breached. However, after an investigation, the organization cannot detect any indicators of compromise. Reveal answer details Close answer detailsCorrect answerA
Single choice
Which layer ofthe TCP/IP stack promotes the reliable transmission of data? Reveal answer details Close answer detailsCorrect answerD
Single choice
Which of the following should occur FIRST during the vulnerability identification phase? Reveal answer details Close answer detailsCorrect answerA
Single choice
An insecure continuous integration and continuous delivery (CI/CD) pipeline would MOST likely lead to: Reveal answer details Close answer detailsCorrect answerA
Single choice
A penetration tester has been hired and given access to all code, diagrams,and documentation. Which type oftesting is being conducted? Reveal answer details Close answer detailsCorrect answerA
Single choice
Which of the following can be used to identity malicious activity through a take user identity? Reveal answer details Close answer detailsCorrect answerB
Single choice
Which of the following is MOST helpful to significantly reduce application risk throughout the system development life cycle (SOLC)? Reveal answer details Close answer detailsCorrect answerA
Single choice
SOAP and REST are Iwo different approaches related to: Reveal answer details Close answer detailsCorrect answerD
Single choice
The Platform as a Service (PaaS) model is often used to support which of the following? Reveal answer details Close answer detailsCorrect answerA
Single choice
Which of the following BEST describes JSON web tokens? Reveal answer details Close answer detailsCorrect answerA |