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.
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)- A93% (26)
- B4% (1)
- C4% (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.
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.
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.
DefenderCheck.exe does not modify any block list, application control policy, or deny list - it only performs a scan and reports the result.
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
Community Discussion
No community discussion yet for this question.