nerdexam
GIAC

GCIH · Question #739

What action does the following command perform? C:\DefenderCheck.exe .\giac1.exe

The correct answer is A. Scans the giac1.exe file to determine whether it is safe for users to execute. DefenderCheck.exe accepts a file path as an argument and submits the target executable to Windows Defender's scanning engine to determine whether it is flagged as malicious.

Malware Analysis & Advanced Persistent Threats

Question

What action does the following command perform? C:\DefenderCheck.exe .\giac1.exe

Options

  • AScans the giac1.exe file to determine whether it is safe for users to execute
  • BSplits and scans the giac1.exe file to identify code areas that don't trigger an alert
  • CAdds the giac1.exe file to the local block list for unauthorized applications
  • DHashes the giac1.exe file and compares it against a list of known bad file hashes

How the community answered

(28 responses)
  • A
    93% (26)
  • B
    4% (1)
  • C
    4% (1)

Why each option

DefenderCheck.exe accepts a file path as an argument and submits the target executable to Windows Defender's scanning engine to determine whether it is flagged as malicious.

AScans the giac1.exe file to determine whether it is safe for users to executeCorrect

DefenderCheck.exe scans the specified file using the local Windows Defender engine and reports whether a detection is triggered, giving the analyst a verdict on whether the executable is considered safe or malicious before it is run. This is the core purpose of invoking the tool with a single file path argument.

BSplits and scans the giac1.exe file to identify code areas that don't trigger an alert

Splitting a binary into chunks and scanning each portion to locate the exact bytes that trigger a signature is a more advanced evasion-research workflow and is not the outcome of this single command as described.

CAdds the giac1.exe file to the local block list for unauthorized applications

DefenderCheck.exe does not modify any block list, application control policy, or deny list - it only performs a scan and reports the result.

DHashes the giac1.exe file and compares it against a list of known bad file hashes

Hash-based lookups against known-bad file hash databases describe tools like reputation services or VirusTotal, not DefenderCheck, which invokes the local Defender engine rather than a hash comparison.

Concept tested: Scanning executables with DefenderCheck against Windows Defender

Topics

#DefenderCheck#Windows Defender#AV bypass#malware analysis

Community Discussion

No community discussion yet for this question.

Full GCIH Practice