By default, Windows hides standard file types. For example, SecureFile.exe
will show as SecureFile
in explorer or on your desktop, PersonalImage.png
will show as PersonalImage
, and so forth. If malware names itself PersonalImage.png.exe
, what do you think will happen?
Windows will only show you PersonalImage.png
. But when you try to open this “image”, malware will start and run on your machine. Therefore, it would be best if you showed hidden file extensions to mitigate this potential problem.
See: https://support.microsoft.com/en-us/windows/common-file-name-extensions-in-windows-da4a4430-8e76-89c5-59f7-1cdbbc75cb01
To check if Microsoft Defender Credential Guard is enabled run this Powershell command:
Get-CimInstance -ClassName Win32_DeviceGuard -Namespace root\\Microsoft\\Windows\\DeviceGuard
In the output, check for the SecurityServicesRunning
property:
1
, it means that Credential Guard is enabled and running.0
, Credential Guard is not enabled.To check if is enabled:
msinfo32
and enterHypervisor-Enforced Code Integrity enabled
".