NEW
Font size
WorksheetsCybersecurity Quiz
Total questions: 25
Worksheet time: 13mins
In the Linux `/etc/passwd` file, what is the User ID (UID) number automatically assigned to the Root user?
0
1000
1
500
Which specific Windows Registry key is most commonly targeted by malware to ensure persistence by executing a program automatically when a user logs in?
`HKLM\Software\Microsoft\Windows\CurrentVersion\Run`
`HKLM\SYSTEM\CurrentControlSet\Services`
`HKCR\Classes_Root\Autoplay`
`HKU\.DEFAULT\Control Panel\Desktop`
What is the primary legal purpose of maintaining a "Chain of Custody" during a cyber investigation?
To validate that the evidence presented is the same evidence collected and has not been tampered with.
To ensure the system is patched immediately.
To decrypt all encrypted files on the drive.
To compress log files for easier storage.
In the Windows processor architecture, which "Ring" level represents Kernel Mode, where the core OS has unrestricted access to hardware?
Ring 0
Ring 3
Ring 1
Ring -1
Which directory in Linux is a "pseudo-filesystem" generated by the kernel to provide a direct view of running processes and hardware info?
/proc
/dev
/sys
/etc
Which Windows Security Event ID corresponds to "Process Creation," providing a log of every program started on the system?
4688
4624
4625
4672
If a Linux process is running from a malicious binary that has been deleted from the disk, what will the symbolic link `/proc/[pid]/exe` display?
(deleted)
(empty)
(unknown)
(corrupt)
Which NTFS feature allows a file entry to point to multiple streams of data, effectively allowing attackers to hide payloads behind a legitimate text file?
Alternate Data Streams (ADS)
Master File Table (MFT)
Volume Shadow Copy
Reparse Points
According to the "Order of Volatility," which data source must be collected first because it is the most temporary and disappears when power is lost?
CPU Registers, Cache, and RAM
Hard Drives
Backup Tapes
Archived Logs
Which Windows Registry artifact tracks the GUI applications launched by a user and obfuscates the names using ROT-13 encoding?
UserAssist
ShellBags
ShimCache
AmCache
Which Linux command is used to identify binaries that have the SUID (Set User ID) permission bit set, which can be exploited for privilege escalation?
find / -perm -4000
ls -R / | grep SUID
ps aux | grep root
getcap -r /
In the Windows "Sticky Keys" exploit, attackers modify the "Image File Execution Options" (IFEO) registry key to launch a command prompt. Which executable is the target of this modification?
sethc.exe
explorer.exe
svchost.exe
winlogon.exe
Which Linux log file is the primary location for recording successful and failed login attempts, as well as `sudo` execution?
/var/log/auth.log
/var/log/syslog
/var/log/messages
/var/log/kern.log
What is the specific term for the data of a very small file (typically under ~700 bytes) that is stored directly within the Master File Table (MFT) record itself?
Resident Data
Non-Resident Data
Shadow Copy
Metadata Stream
Which technique involves an attacker starting a legitimate Windows process (like `svchost.exe`) in a suspended state, removing its code, and writing malicious code into the empty memory space?
Process Hollowing
DLL Injection
Buffer Overflow
Heap Spraying
Which Loadable Kernel Module (LKM) is the standard tool for dumping physical memory (RAM) from a Linux system?
LiME
dd
MemDump
Volatility
Which Sysinternals tool allows a Windows analyst to view the parent-child relationships of processes and verify the digital signatures of running binaries?
Process Explorer
Process Monitor (ProcMon)
Autoruns
Sysmon
In the Linux Audit system (auditd), which field tracks the original user ID of a person, ensuring accountability even after they escalate privileges using `sudo`?
auid
uid
gid
suid
Which command is used to set the "Immutable" bit (+i) on a Linux file, preventing even the root user from deleting or modifying it?
chattr
chmod
chown
touch
When analyzing memory for "fileless" malware, analysts look for memory pages with which suspicious permission combination?
Read/Write/Execute (RWX)
Read-Only (RO)
Write-Only (WO)
No Access (NA)
Which Windows Registry key is used to track the window size and position of folders viewed in Windows Explorer, effectively proving a user navigated to a specific directory?
ShellBags
UserAssist
ShimCache
RunOnce
Which environment variable can an attacker use in Linux to force the dynamic linker to load a malicious shared library before legitimate system libraries?
LD_PRELOAD
LD_LIBRARY_PATH
PATH
SHELL
Which specific Linux timestamp is the most difficult for attackers to forge because it is updated by the kernel whenever inode metadata changes?
ctime (Change)
mtime (Modification)
atime (Access)
dtime (Deletion)
In a compromised Linux web server, which file ownership anomaly would strongly suggest a web shell was uploaded via the application?
Files owned by `www-data`
Files owned by `root`
Files owned by `deploy-user`
Files owned by `systemd`
Which Linux command is specifically used to find "unlinked" files (files that have been deleted but are still held open by a running process)?
lsof +L1
ls -la
find / -name "deleted"
stat filename
