Challenge 03: Copy and Rename
Objective
Execute a blacklisted tool by copying it to a completely different name.
Scanner Behavior
The EDR only checks the process executable name reported by CreateToolhelp32Snapshot. It does not verify file hashes, digital signatures, or file contents.
Rules
- Copy any blacklisted tool to a new, non-blacklisted name
- Execute the copy successfully without detection
- The copy must be functionally identical to the original
Hints
Hint 1
Windows runs executables by their filename, not by their content.Hint 2
copy notepad.exe editor.exe && editor.exe - is editor.exe in the blacklist?
MostShittyEDR