A forensic analyst investigating an unexpected data wipe on a critical financial server discovers an obfuscated script embedded within a routine system backup routine. The script performs no malicious activity during normal execution; however, it regularly queries the enterprise LDAP directory. Inspection reveals that if a specific senior database administrator's account status transitions to 'Inactive' or 'Disabled', the script triggers an automated payload that executes a multi-pass overwrite of disk sectors and purges transaction logs. Which of the following malware classifications best describes this threat based on its operational behavior?
- Logic bombAnswer
- BTrojan
- CWorm
- DRootkit
Answer
The threat is classified as a logic bomb because it remains dormant within a legitimate routine until a specific predefined logical condition (an account status change in LDAP) triggers the execution of its destructive payload.
The correct answer identifies the malware as a logic bomb. Logic bombs consist of malicious code snippets embedded into legitimate applications or scripts that lie dormant until a specific condition or event occurs—such as a specific date, time, file creation, or in this case, an administrator's account being marked as disabled in LDAP. Once triggered, the code executes its malicious payload.
Step-by-Step Solution
Key Concept
Logic Bomb Identification and Operational Triggers