Question:

Identify the technique in which a new application is executed in a virtual environment and its behavioral fingerprint is observed for a possible malware.

Show Hint

Think of a physical "sandbox":
Children can build or break things inside the sandbox, and the mess stays safely confined within the box.
In computer security, a digital sandbox keeps malware safely isolated!
Updated On: Jun 11, 2026
  • Data Mining Techniques
  • Heuristics
  • Sandbox Detection
  • Signature Based Detection
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation


Step 1: Understanding the Question:

The question asks to identify the security technique used to run a suspicious file or application within an isolated, virtual testing environment to observe its behavior for malicious activity.

Step 2: Key Malware Detection Concepts:

- Signature-Based Detection: Identifies known malware by matching static binary signatures (like file hashes) against a database of known threats. It cannot detect zero-day or modified malware.
- Heuristic Analysis: Looks for suspicious code patterns or commands commonly found in malware.
- Sandboxing Sandbox Detection: An isolated virtual environment (a "sandbox") where untrusted applications are executed safely. The system monitors the application's runtime actions, network requests, and system modifications without putting the production network at risk.

Step 3: Detailed Explanation:

- Let us map the problem description to these definitions:
- The phrase "executed in a virtual environment" is the core characteristic of a Sandbox.
- The phrase "behavioral fingerprint is observed" refers to dynamic analysis, where we monitor active operations like unauthorized registry changes, process spawning, or malicious connection attempts.
- Executing a file in a controlled, isolated virtual machine ensures that even if the program is malware, it cannot infect the host computer.
- This active observation technique is known as Sandbox Detection (or Sandboxing).

Step 4: Final Answer:

The process of executing an application in an isolated virtual environment to inspect its behavior is called Sandbox Detection.
Hence, option (C) is the correct choice.
Was this answer helpful?
0
0