1Which of the following is an example of volatile data in a Linux system?
Understand volatile and non-volatile data in Linux
Easy
A.Contents of RAM
B.Configuration files in /etc
C.System log files
D.Files on the hard disk
Correct Answer: Contents of RAM
Explanation:
Volatile data is lost when the system loses power. RAM contents are volatile, whereas disk files and configs persist across reboots.
Incorrect! Try again.
2Which Linux command displays the current running processes, useful for collecting volatile data?
Understand volatile and non-volatile data in Linux
Easy
A.mkdir
B.ps
C.chmod
D.cat
Correct Answer: ps
Explanation:
The ps command lists currently running processes, which is volatile information present only while the system is active.
Incorrect! Try again.
3Non-volatile data in Linux is best described as data that:
Understand volatile and non-volatile data in Linux
Easy
A.Exists only in memory
B.Is stored only in CPU registers
C.Disappears when a process ends
D.Persists after the system is powered off
Correct Answer: Persists after the system is powered off
Explanation:
Non-volatile data, such as files on disk, remains intact even after the system is shut down or loses power.
Incorrect! Try again.
4The Sleuth Kit (TSK) is primarily used for:
Analyze filesystem images using The Sleuth Kit
Easy
A.Capturing live network packets
B.Cracking Wi-Fi passwords
C.Editing digital photographs
D.Analyzing disk images and filesystems
Correct Answer: Analyzing disk images and filesystems
Explanation:
The Sleuth Kit is a collection of command-line tools for forensic analysis of disk images and filesystem data.
Incorrect! Try again.
5Which graphical interface is commonly used together with The Sleuth Kit?
Analyze filesystem images using The Sleuth Kit
Easy
A.Nmap
B.Wireshark
C.Autopsy
D.Metasploit
Correct Answer: Autopsy
Explanation:
Autopsy is a graphical front-end that uses The Sleuth Kit libraries to perform forensic analysis of disk images.
Incorrect! Try again.
6Which Sleuth Kit command is used to list files and directories in a filesystem image?
Analyze filesystem images using The Sleuth Kit
Easy
A.ssh
B.fls
C.grep
D.ping
Correct Answer: fls
Explanation:
The fls command lists file and directory names, including deleted entries, from a filesystem image.
Incorrect! Try again.
7Volatility is a framework primarily used for:
Demonstrate memory forensics using Volatility & PhotoRec
Easy
A.Website scanning
B.Password hashing
C.Firewall configuration
D.Memory (RAM) analysis
Correct Answer: Memory (RAM) analysis
Explanation:
Volatility is an open-source framework for analyzing memory dumps to extract processes, network connections, and other artifacts.
Incorrect! Try again.
8PhotoRec is a tool mainly used to:
Demonstrate memory forensics using Volatility & PhotoRec
Easy
A.Send network packets
B.Recover deleted or lost files
C.Encrypt disk partitions
D.Monitor CPU usage
Correct Answer: Recover deleted or lost files
Explanation:
PhotoRec is a file recovery tool that retrieves lost files, including photos and documents, from storage media.
Incorrect! Try again.
9A memory dump used in Volatility analysis represents:
Demonstrate memory forensics using Volatility & PhotoRec
Easy
A.A copy of the hard disk
B.A list of installed applications
C.A network traffic capture
D.A snapshot of the system's RAM
Correct Answer: A snapshot of the system's RAM
Explanation:
A memory dump captures the contents of RAM at a point in time, which Volatility parses for forensic artifacts.
Incorrect! Try again.
10Which file system is most commonly associated with modern macOS systems?
Understand Mac forensics
Easy
A.ext4
B.APFS
C.FAT32
D.NTFS
Correct Answer: APFS
Explanation:
APFS (Apple File System) is the default file system for modern macOS versions, replacing the older HFS+.
Incorrect! Try again.
11Which file format is commonly used for property list configuration files on macOS?
Understand Mac forensics
Easy
A..reg
B..exe
C..plist
D..dll
Correct Answer: .plist
Explanation:
Property list (.plist) files store configuration and preference settings on macOS and are valuable forensic artifacts.
Incorrect! Try again.
12Network forensics primarily focuses on:
Understand network forensics
Easy
A.Capturing and analyzing network traffic
B.Editing router firmware
C.Recovering deleted disk files
D.Analyzing RAM contents
Correct Answer: Capturing and analyzing network traffic
Explanation:
Network forensics involves monitoring, capturing, and analyzing network traffic to investigate security incidents.
Incorrect! Try again.
13Which tool is widely used to capture and inspect network packets?
Understand network forensics
Easy
A.Wireshark
B.Notepad
C.Photoshop
D.Excel
Correct Answer: Wireshark
Explanation:
Wireshark is a popular packet analyzer that captures and displays network traffic in detail for forensic examination.
Incorrect! Try again.
14In Linux, which directory typically stores system log files?
Logging fundamentals and network forensic readiness
Easy
A./dev
B./var/log
C./home
D./bin
Correct Answer: /var/log
Explanation:
The /var/log directory holds most system and application log files, which are essential for forensic investigations.
Incorrect! Try again.
15Network forensic readiness refers to an organization's ability to:
Logging fundamentals and network forensic readiness
Easy
A.Block all incoming traffic
B.Collect and preserve evidence before an incident occurs
C.Encrypt all user passwords
D.Delete logs regularly to save space
Correct Answer: Collect and preserve evidence before an incident occurs
Explanation:
Forensic readiness means being prepared with proper logging and evidence collection so investigations can proceed efficiently after an incident.
Incorrect! Try again.
16Event correlation in security analysis means:
Summarize event correlation concepts
Easy
A.Linking related events to identify a bigger pattern
B.Deleting duplicate log entries
C.Formatting a hard drive
D.Encrypting event logs
Correct Answer: Linking related events to identify a bigger pattern
Explanation:
Event correlation combines and analyzes multiple events from different sources to detect meaningful patterns or incidents.
Incorrect! Try again.
17Which of the following is a common Indicator of Compromise (IoC)?
Identify Indicators of Compromise (IoCs) from network logs
Easy
A.A routine backup process
B.A connection to a known malicious IP address
C.A scheduled system update
D.A normal user login during work hours
Correct Answer: A connection to a known malicious IP address
Explanation:
IoCs are signs of potential intrusion, such as communication with known malicious IPs or domains.
Incorrect! Try again.
18The process of capturing packets flowing across a network is called:
Investigate network traffic
Easy
A.Disk imaging
B.Memory dumping
C.File carving
D.Packet sniffing
Correct Answer: Packet sniffing
Explanation:
Packet sniffing is the interception and logging of network traffic, a key technique in network investigation.
Incorrect! Try again.
19What does the acronym SIEM stand for?
Perform incident detection and examination with SIEM tools
Easy
A.System Integrity and Error Monitoring
B.Standard Incident Escalation Model
C.Secure Internet Encryption Method
D.Security Information and Event Management
Correct Answer: Security Information and Event Management
Explanation:
SIEM stands for Security Information and Event Management, tools that collect and analyze security data to detect incidents.
Incorrect! Try again.
20Which of the following is an example of a wireless network attack?
Monitor and detect wireless network attacks
Easy
A.Evil twin (rogue access point)
B.Cross-site scripting
C.Buffer overflow
D.SQL injection
Correct Answer: Evil twin (rogue access point)
Explanation:
An evil twin attack sets up a rogue access point that mimics a legitimate one to intercept wireless traffic.
Incorrect! Try again.
21During live acquisition of a compromised Linux server, an investigator must collect data following the order of volatility. Which data source should be collected first?
Understand volatile and non-volatile data in Linux
Medium
A.Files stored on the mounted /home partition
B.Archived logs in /var/log/
C.Contents of CPU registers and cache
D.Configuration files in /etc/
Correct Answer: Contents of CPU registers and cache
Explanation:
The order of volatility dictates that the most ephemeral data be collected first. CPU registers and cache change nanosecond-to-nanosecond, making them the most volatile, whereas disk-based files are non-volatile and stable.
Incorrect! Try again.
22An investigator wants to view all active network connections and the processes bound to them on a live Linux host. Which command provides this volatile data most directly?
Understand volatile and non-volatile data in Linux
Medium
A.ss -tup
B.ls -la /proc
C.cat /etc/hosts
D.dmesg
Correct Answer: ss -tup
Explanation:
ss -tup lists TCP/UDP sockets along with the owning process (PID/name), capturing volatile connection state. dmesg shows kernel ring buffer messages and /etc/hosts is a static file.
Incorrect! Try again.
23Given a raw disk image, which sequence of Sleuth Kit tools correctly lists partitions and then lists the files in a chosen partition?
Analyze filesystem images using The Sleuth Kit
Medium
A.mmls then fls
B.blkls then fsstat
C.icat then mmls
D.fls then mmls
Correct Answer: mmls then fls
Explanation:
mmls displays the partition/volume layout so you can identify the starting sector offset, then fls (using that offset) lists files and directories within the filesystem.
Incorrect! Try again.
24An analyst finds a deleted file's inode number 24580 using fls. Which Sleuth Kit command extracts the file's content by inode from the image?
Analyze filesystem images using The Sleuth Kit
Medium
A.icat image.dd 24580
B.mmls image.dd 24580
C.blkcat image.dd 24580
D.fsstat image.dd 24580
Correct Answer: icat image.dd 24580
Explanation:
icat outputs the content of a file identified by its inode (metadata) number. fsstat shows filesystem details, while blkcat operates on data-unit (block) addresses, not inodes.
Incorrect! Try again.
25Which Sleuth Kit tool would you use to display filesystem-level details such as block size, layout, and last mount time from an image?
Analyze filesystem images using The Sleuth Kit
Medium
A.tsk_recover
B.ils
C.fsstat
D.ffind
Correct Answer: fsstat
Explanation:
fsstat reports general filesystem metadata including block/cluster size, allocation layout, and superblock details. ils lists inodes and ffind maps an inode back to file names.
Incorrect! Try again.
26An investigator has a memory dump but does not know the OS profile. Which Volatility plugin/command helps identify the correct profile before further analysis?
Demonstrate memory forensics using Volatility & PhotoRec
Medium
A.netscan
B.pslist
C.malfind
D.imageinfo
Correct Answer: imageinfo
Explanation:
imageinfo (Volatility 2) suggests candidate profiles by examining the memory image. A correct profile is required for other plugins like pslist or netscan to parse structures correctly.
Incorrect! Try again.
27A suspicious process may be hiding by unlinking itself from the active process list. Which Volatility approach best reveals such a hidden process?
Demonstrate memory forensics using Volatility & PhotoRec
Medium
A.Use filescan only
B.Run imageinfo twice
C.Compare pslist with psscan output
D.Dump the registry with hivelist
Correct Answer: Compare pslist with psscan output
Explanation:
pslist walks the active linked list, while psscan scans memory for EPROCESS signatures. Processes appearing in psscan but missing from pslist indicate DKOM-based hiding.
Incorrect! Try again.
28PhotoRec is used on a formatted SD card to recover lost images. On which principle does PhotoRec primarily rely to recover files?
Demonstrate memory forensics using Volatility & PhotoRec
Medium
A.Reconstructing the partition table
B.Reading intact filesystem directory entries
C.File carving based on header/footer signatures
D.Querying the journal for deleted inodes
Correct Answer: File carving based on header/footer signatures
Explanation:
PhotoRec ignores the filesystem and carves files by recognizing known header and footer byte signatures, which lets it recover data even after formatting or filesystem damage.
Incorrect! Try again.
29On a macOS system, application preferences and configuration are commonly stored in property list files. What is the typical binary format and extension of these files?
Understand Mac forensics
Medium
A.Plain-text .ini files
B.SQLite .db files only
C.Windows-style .reg files
D.Binary or XML .plist files
Correct Answer: Binary or XML .plist files
Explanation:
macOS uses property list (.plist) files, which may be stored in XML or a binary format. Investigators often convert binary plists to XML (e.g., with plutil) for analysis.
Incorrect! Try again.
30An examiner needs to determine when files were last accessed and any extended metadata on an APFS volume. Which macOS artifact records Spotlight metadata useful for this?
Understand Mac forensics
Medium
A.The .Spotlight-V100 store
B.The $MFT record
C.The pagefile.sys
D.The NTUSER.DAT hive
Correct Answer: The .Spotlight-V100 store
Explanation:
macOS Spotlight indexes file metadata into the .Spotlight-V100 directory, a rich source of timestamps and attributes. NTUSER.DAT and $MFT are Windows/NTFS artifacts.
Incorrect! Try again.
31Which macOS file records details about recently mounted disks, USB devices, and system activity that is valuable during timeline analysis?
Understand Mac forensics
Medium
A.The pagefile.sys
B.The Windows Prefetch files
C.Unified Logs (.tracev3)
D.The syslog.conf file
Correct Answer: Unified Logs (.tracev3)
Explanation:
Modern macOS consolidates system and app events into the Unified Logging system stored as .tracev3 files, providing detailed activity useful for building timelines.
Incorrect! Try again.
32A network forensic investigator wants a full packet capture for later deep analysis rather than only summary flow records. Which data type should be collected?
Understand network forensics
Medium
A.NetFlow records only
B.SNMP counters only
C.Full-content PCAP data
D.Firewall deny counts only
Correct Answer: Full-content PCAP data
Explanation:
Full-content capture (PCAP) stores complete packets including payloads, enabling deep inspection. NetFlow and SNMP provide only metadata/statistics, not payload content.
Incorrect! Try again.
33Which statement best distinguishes NetFlow data from full packet capture in a network investigation?
Understand network forensics
Medium
A.NetFlow stores complete packet payloads
B.NetFlow decrypts TLS traffic automatically
C.NetFlow captures only wireless frames
D.NetFlow summarizes connection metadata without payloads
Correct Answer: NetFlow summarizes connection metadata without payloads
Explanation:
NetFlow records flow-level metadata such as source/destination IPs, ports, protocol, and byte counts, but not packet payloads, making it compact but less detailed than PCAP.
Incorrect! Try again.
34To ensure logs are trustworthy across many hosts during an investigation, which practice is most critical for accurate event correlation?
Logging fundamentals and network forensic readiness
Medium
A.Storing logs only on the local host
B.Increasing log verbosity to debug on all hosts
C.Rotating logs every hour to save space
D.Synchronizing clocks with NTP across all systems
Correct Answer: Synchronizing clocks with NTP across all systems
Explanation:
Consistent, synchronized time (via NTP) is essential so events from different systems can be accurately ordered and correlated. Without it, timelines become unreliable.
Incorrect! Try again.
35An organization wants to prevent attackers from tampering with logs on a compromised host. Which control best supports forensic readiness?
Logging fundamentals and network forensic readiness
Medium
A.Keeping logs only in memory
B.Disabling logging during incidents
C.Forwarding logs to a centralized, write-protected log server
D.Allowing all users write access to log files
Correct Answer: Forwarding logs to a centralized, write-protected log server
Explanation:
Centralized, append-only/write-protected log storage preserves evidence even if a host is compromised, since attackers cannot easily alter logs already shipped off the system.
Incorrect! Try again.
36A SIEM raises an alert only when a failed VPN login is followed within 5 minutes by a successful login from a new country. This detection is an example of which correlation technique?
Summarize event correlation concepts
Medium
A.Rule-based (temporal) correlation
B.Single-event signature matching
C.Static IP blacklisting
D.Simple log rotation
Correct Answer: Rule-based (temporal) correlation
Explanation:
Combining multiple events with a time window and conditions is rule-based, temporal correlation. It links related events rather than matching a single isolated signature.
Incorrect! Try again.
37Which scenario best illustrates the value of cross-source event correlation?
Summarize event correlation concepts
Medium
A.Rotating a single log file daily
B.Counting total bytes on one interface
C.Reading a single web server access log line by line
D.Linking firewall, IDS, and authentication logs to trace one attack path
Correct Answer: Linking firewall, IDS, and authentication logs to trace one attack path
Explanation:
Cross-source correlation combines events from different systems (firewall, IDS, auth) to reconstruct a complete attack narrative that no single log could reveal alone.
Incorrect! Try again.
38While reviewing proxy logs, an analyst notices a host making regular HTTPS requests to a newly registered domain every 60 seconds with tiny, uniform payloads. This pattern most strongly indicates which IoC?
Identify Indicators of Compromise (IoCs) from network logs
Medium
Regular, fixed-interval connections with small uniform payloads to a suspicious/new domain are classic C2 beaconing behavior, as malware periodically checks in with its controller.
Incorrect! Try again.
39DNS logs show many queries for long, random-looking subdomains of a single domain (e.g., a8f3k2.example.com, 9x2p1z.example.com). This is a common indicator of which technique?
Identify Indicators of Compromise (IoCs) from network logs
Medium
A.Legitimate CDN load balancing
B.Routine DHCP renewals
C.Standard reverse DNS lookups
D.DNS tunneling / exfiltration
Correct Answer: DNS tunneling / exfiltration
Explanation:
Encoding data into many high-entropy subdomain labels of one domain is characteristic of DNS tunneling, where DNS queries smuggle data past controls.
Incorrect! Try again.
40In Wireshark, an analyst wants to reconstruct and read the full application-layer conversation of a single TCP session. Which feature should they use?
Investigate network traffic
Medium
A.Time Reference toggle
B.Follow TCP Stream
C.Coloring Rules
D.Capture Filters
Correct Answer: Follow TCP Stream
Explanation:
"Follow TCP Stream" reassembles the bidirectional payload of a chosen TCP session into readable form, ideal for reconstructing application-layer conversations.
Incorrect! Try again.
41During live acquisition of a compromised Linux host, an analyst runs cat /proc/1234/maps and cat /proc/1234/mem. Which statement best explains the forensic value and risk of this technique?
Understand volatile and non-volatile data in Linux
Hard
A.The maps file is encrypted per-process, so it cannot be read without the process's private key
B.Both files are non-volatile on-disk copies, so acquisition order does not matter
C./proc/1234/maps reveals the process memory layout while /proc/1234/mem allows reading mapped regions, but reads may block or alter atime and require ptrace permissions
D./proc/1234/mem stores the kernel ring buffer and is unaffected by process termination
Correct Answer: /proc/1234/maps reveals the process memory layout while /proc/1234/mem allows reading mapped regions, but reads may block or alter atime and require ptrace permissions
Explanation:
/proc/[pid]/maps lists virtual memory mappings and /proc/[pid]/mem exposes the process address space. Reading requires appropriate ptrace privileges and can only access mapped regions; these are volatile and vanish when the process exits.
Incorrect! Try again.
42An investigator must preserve evidence following the order of volatility (RFC 3227). Given: (1) routing tables, (2) archival media, (3) process memory, (4) disk. What is the correct collection order from most to least volatile?
Understand volatile and non-volatile data in Linux
Hard
A.Disk, process memory, routing tables, archival media
B.Process memory, routing tables, disk, archival media
C.Routing tables, process memory, archival media, disk
D.Archival media, disk, routing tables, process memory
Correct Answer: Process memory, routing tables, disk, archival media
Explanation:
RFC 3227 orders volatility as CPU/registers, then RAM/process memory, then network state like routing tables, then disk, then remote logging and finally archival media.
Incorrect! Try again.
43Using The Sleuth Kit on an Ext4 image, an analyst finds a file entry via fls showing an inode marked with * prefix and reallocated. Which combined command sequence best recovers its original content if the inode has not been overwritten?
Analyze filesystem images using The Sleuth Kit
Hard
A.Use jls to read the journal, then mmls to extract file content
B.Use ils -m to mount the file, then tsk_recover on a single inode
C.Use istat to inspect the inode, then icat to extract data blocks referenced by that inode
D.Use blkls to list the superblock, then fsstat to carve the file
Correct Answer: Use istat to inspect the inode, then icat to extract data blocks referenced by that inode
Explanation:
The * in fls marks a deleted entry. istat shows the inode's block pointers and status; if metadata survives, icat <image> <inode> extracts the referenced blocks. blkls, mmls, and jls serve other layers.
Incorrect! Try again.
44An analyst runs mmls disk.dd and sees a partition starting at sector 2048. To run fls on that filesystem, which option correctly maps the byte offset?
Analyze filesystem images using The Sleuth Kit
Hard
A.fls -o 2048 disk.dd because TSK offset is expressed in sectors
B.fls disk.dd 2048 because the offset is a positional argument
C.fls -b 2048 disk.dd because -b sets the partition start
D.fls -o 1048576 disk.dd because the offset must be in bytes
Correct Answer: fls -o 2048 disk.dd because TSK offset is expressed in sectors
Explanation:
TSK's -o option takes the partition start offset in sectors, matching mmls output directly. So -o 2048 is correct; you do not convert to bytes for -o.
Incorrect! Try again.
45In Volatility 3, an analyst suspects process hollowing. Which combination of plugins most effectively confirms that a legitimate process image was replaced in memory?
Demonstrate memory forensics using Volatility & PhotoRec
Hard
A.windows.pslist alone, since it flags hollowed processes automatically
B.windows.hashdump combined with windows.filescan to compare file hashes
C.windows.malfind combined with windows.dlllist and comparing on-disk vs in-memory PE headers
D.windows.netscan combined with windows.svcscan to detect injected services
Correct Answer: windows.malfind combined with windows.dlllist and comparing on-disk vs in-memory PE headers
Explanation:
malfind detects executable memory regions with no backing file (RWX/injected code), and comparing DLL/PE headers in memory against disk reveals hollowing. pslist does not auto-flag hollowing; the others target different artifacts.
Incorrect! Try again.
46PhotoRec recovers a fragmented JPEG partially but truncates it. What is the fundamental reason file carvers like PhotoRec often fail on fragmented files?
Demonstrate memory forensics using Volatility & PhotoRec
Hard
A.They rely on contiguous header-to-footer signatures and lack filesystem metadata to reassemble non-contiguous fragments
B.They ignore file footers and stop at the first null byte encountered
C.They require the original file's checksum to be stored in the carving database
D.They only support FAT filesystems and cannot read Ext4 block groups
Correct Answer: They rely on contiguous header-to-footer signatures and lack filesystem metadata to reassemble non-contiguous fragments
Explanation:
Signature-based carving assumes data between a known header and footer is contiguous. Without filesystem allocation metadata, carvers cannot reconstruct files split across non-adjacent clusters, causing truncation or corruption.
Incorrect! Try again.
47An analyst captures a memory image but Volatility reports no valid profile/symbol table for a Linux target. What is the most correct root cause and remedy?
Demonstrate memory forensics using Volatility & PhotoRec
Hard
A.The image is corrupt because RAM cannot be dumped on Linux systems
B.The kernel symbols (ISF/dwarf) do not match the target kernel version; generate a matching symbol table from the exact kernel and System.map
C.Volatility cannot analyze Linux memory at all; use only Windows images
D.A profile is unnecessary; Volatility auto-detects all Linux kernels
Correct Answer: The kernel symbols (ISF/dwarf) do not match the target kernel version; generate a matching symbol table from the exact kernel and System.map
Explanation:
Linux memory analysis needs kernel-specific symbol information (ISF JSON in Vol3, or a dwarf-based profile in Vol2) built from the exact kernel. Mismatched or missing symbols prevent parsing structures.
Incorrect! Try again.
48Investigating a macOS system with APFS, an analyst needs to recover deleted files but finds standard carving ineffective. Which APFS feature most complicates recovery and why?
Understand Mac forensics
Hard
A.APFS lacks any journaling, so no metadata trail exists
B.Copy-on-write with snapshots means overwritten blocks may persist in snapshots but deleted files are quickly unlinked and reclaimed
C.APFS writes every file twice, doubling recovery success rates
D.APFS stores all files in a single encrypted blob that cannot be parsed
Correct Answer: Copy-on-write with snapshots means overwritten blocks may persist in snapshots but deleted files are quickly unlinked and reclaimed
Explanation:
APFS uses copy-on-write and snapshots. Snapshots can retain older block states (an evidence source), but normal deletions reclaim space efficiently, making traditional carving unreliable. Examining snapshots is often more fruitful.
Incorrect! Try again.
49An examiner wants to establish a timeline of application usage on macOS. Which artifact provides the most authoritative record of app launches and durations?
Understand Mac forensics
Hard
A.The Spotlight .metadata_never_index markers
B.The .DS_Store files in each folder
C.The /etc/hosts file entries
D.The knowledgeC.db database containing usage events with timestamps
Correct Answer: The knowledgeC.db database containing usage events with timestamps
Explanation:
knowledgeC.db records detailed app usage, focus, and activity events with timestamps, making it a rich source for user-activity timelines. .DS_Store stores folder view settings, not usage.
Incorrect! Try again.
50An analyst reconstructs a TCP session from a PCAP but observes overlapping segments with different payloads for the same sequence numbers. What is the primary forensic concern this raises?
Understand network forensics
Hard
A.It always indicates normal retransmission with identical data
B.The client and server clocks are unsynchronized
C.The capture file is simply corrupted and must be discarded
D.A possible TCP-based evasion/insertion attack where segment reassembly ambiguity is exploited to bypass IDS
Correct Answer: A possible TCP-based evasion/insertion attack where segment reassembly ambiguity is exploited to bypass IDS
Explanation:
Overlapping segments with conflicting payloads for identical sequence numbers signal insertion/evasion attacks. Different OSes reassemble differently, letting attackers deceive an IDS while the endpoint sees other data.
Incorrect! Try again.
51When would a full-packet capture (PCAP) be forensically insufficient, requiring flow data (NetFlow/IPFIX) instead?
Understand network forensics
Hard
A.When decrypting TLS with a known private key
B.When extracting an exact malware binary from HTTP traffic
C.For long-term retention of communication patterns at high volume where storing full payloads is infeasible
D.When investigating a single short session on a low-traffic link
Correct Answer: For long-term retention of communication patterns at high volume where storing full payloads is infeasible
Explanation:
Full PCAP is storage-intensive. Flow records summarize who-talked-to-whom, ports, bytes, and duration, enabling long-term, high-volume behavioral analysis when full-payload retention is impractical.
Incorrect! Try again.
52An organization uses UDP-based syslog to a central collector. During an incident, gaps appear in the logs. Which design flaw most directly explains missing entries and what mitigates it?
Logging fundamentals and network forensic readiness
Hard
A.Syslog cannot transmit over networks; only local files work
B.The collector deletes logs older than one hour by default
C.UDP syslog is unreliable and drops messages under load; use TCP or RELP with queuing and TLS for guaranteed, secure delivery
D.Syslog messages are always encrypted, causing decryption failures
Correct Answer: UDP syslog is unreliable and drops messages under load; use TCP or RELP with queuing and TLS for guaranteed, secure delivery
Explanation:
Classic syslog over UDP (514) offers no delivery guarantee, so congestion causes silent loss. TCP syslog or RELP with local queuing and TLS provides reliable, tamper-resistant transport.
Incorrect! Try again.
53To ensure log integrity for court admissibility, which mechanism best prevents undetected tampering of stored logs?
Logging fundamentals and network forensic readiness
Hard
A.Rotating logs daily and deleting the oldest set
B.Compressing logs with gzip to reduce storage footprint
C.Storing logs in a hidden directory with obscure filenames
D.Cryptographic hash chaining where each log entry includes the hash of the previous entry
Correct Answer: Cryptographic hash chaining where each log entry includes the hash of the previous entry
Explanation:
Hash chaining (or write-once/append-only stores with signatures) makes any modification detectable because altering one entry breaks all subsequent hashes. Compression and rotation do not protect integrity.
Incorrect! Try again.
54A SIEM correlation rule fires when a single source generates failed logins within 60s followed by one success. This alerts on many legitimate users mistyping passwords. Which refinement best reduces false positives while preserving detection?
Summarize event correlation concepts
Hard
A.Increase the failed-login count to 500 across all users combined
B.Remove the success condition so any failure alerts
C.Add contextual enrichment such as new geolocation, unusual time, or new device to require a risk threshold before alerting
D.Only alert on logins that occur during business hours
Correct Answer: Add contextual enrichment such as new geolocation, unusual time, or new device to require a risk threshold before alerting
Explanation:
Enrichment-based (risk-based) correlation combines the brute-force pattern with anomalous context (impossible travel, new device), sharply cutting false positives from ordinary typos while still catching real credential attacks.
Incorrect! Try again.
55In event correlation, what distinguishes rule-based correlation from statistical (anomaly-based) correlation in detecting a novel, slow data-exfiltration campaign?
Summarize event correlation concepts
Hard
A.Both methods are identical and differ only in log format
B.Rule-based correlation always detects zero-day exfiltration faster than statistical methods
C.Statistical correlation requires a known IoC list to function
D.Statistical correlation can flag deviations from baseline behavior even without a predefined signature, while rule-based needs known patterns
Correct Answer: Statistical correlation can flag deviations from baseline behavior even without a predefined signature, while rule-based needs known patterns
Explanation:
A slow, novel exfiltration lacks a known signature, so rule-based logic may miss it. Anomaly/statistical correlation detects unusual volume or timing relative to a learned baseline, catching previously unseen behavior.
Incorrect! Try again.
56Reviewing DNS logs, an analyst notices many queries to subdomains like a8f3.example.net, b91c.example.net with high entropy and short TTLs. Which IoC does this most strongly indicate?
Identify Indicators of Compromise (IoCs) from network logs
Hard
A.Standard reverse DNS lookups for logging
B.A misconfigured NTP client resolving time servers
C.DNS tunneling or DGA-based C2 communication using algorithmically generated subdomains
D.Normal CDN load balancing across edge nodes
Correct Answer: DNS tunneling or DGA-based C2 communication using algorithmically generated subdomains
Explanation:
High-entropy, machine-generated subdomains with short TTLs and high query volume are hallmarks of DNS tunneling or domain-generation-algorithm C2. CDNs and NTP produce predictable, low-entropy names.
Incorrect! Try again.
57An analyst sees periodic outbound HTTPS connections every 300 seconds to one IP, each transferring nearly identical small byte counts. Even without payload visibility, which IoC is most consistent with this pattern?
Identify Indicators of Compromise (IoCs) from network logs
Hard
A.A user streaming a continuous high-bitrate video
B.Beaconing to a command-and-control server with regular jitter-free callback intervals
Correct Answer: Beaconing to a command-and-control server with regular jitter-free callback intervals
Explanation:
Fixed-interval, uniform-size outbound connections are classic C2 beaconing. Streaming produces large variable transfers, updates are infrequent and larger, and DHCP is local broadcast traffic, not outbound HTTPS.
Incorrect! Try again.
58Using Wireshark on a capture, an analyst applies the filter tcp.analysis.retransmission && tcp.flags.syn==1. Beyond troubleshooting, why might a security analyst use this specific filter during an investigation?
Investigate network traffic
Hard
A.To identify possible SYN scanning or connection anomalies where SYN retransmissions suggest filtered/dropped probes
B.To extract file transfers embedded in retransmitted segments
C.To measure exact CPU usage of the capturing host
D.To decrypt TLS handshakes stored in the SYN packets
Correct Answer: To identify possible SYN scanning or connection anomalies where SYN retransmissions suggest filtered/dropped probes
Explanation:
SYN retransmissions occur when initial SYNs go unanswered, common when a firewall drops probes or during scanning. This helps spot reconnaissance or connectivity manipulation, not decryption or file extraction.
Incorrect! Try again.
59A SIEM ingests logs from sources in different time zones without normalization. During cross-source correlation of an intrusion, what is the most severe consequence?
Perform incident detection and examination with SIEM tools
Hard
A.Causality between events is misordered, breaking timeline reconstruction and potentially exonerating malicious sequences
B.Only the dashboard color scheme is affected
C.Log storage costs increase but analysis is unaffected
D.The SIEM automatically converts all times to UTC with no impact
Correct Answer: Causality between events is misordered, breaking timeline reconstruction and potentially exonerating malicious sequences
Explanation:
Without timestamp normalization to a common reference (e.g., UTC), correlated events appear out of order, so cause-and-effect chains break. Accurate incident timelines depend on synchronized, normalized time.
Incorrect! Try again.
60An analyst captures 802.11 frames and observes a burst of deauthentication frames with the spoofed BSSID of a legitimate AP followed by clients associating to a new AP with the same SSID. Which attack does this evidence chain most strongly indicate?
Monitor and detect wireless network attacks
Hard
A.A normal channel-switch announcement during roaming
B.A benign power-save mode transition on client devices
C.An evil-twin attack facilitated by deauthentication flooding to force clients onto a rogue AP
D.A WPA3 SAE handshake completing successfully
Correct Answer: An evil-twin attack facilitated by deauthentication flooding to force clients onto a rogue AP
Explanation:
Spoofed deauth frames disconnect clients (a management-frame attack), and a duplicate-SSID AP luring those clients is an evil twin. Together they show forced disassociation and rogue re-association, not normal roaming.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →