You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for reporting — we've identified the cause.
The Trojan:Script/Wacatac.B!ml detection is a false positive from Windows Defender's machine-learning heuristic (the !ml suffix means it's an ML-based detection, not a signature match against known malware).
The trigger is the DLL resolve tracking feature introduced in commit f92fd66. This feature scans C/C++ source code for GetProcAddress, dlsym, and LoadLibrary patterns to build call graph edges across DLL boundaries. The binary now contains these API names as literal strings (for regex matching and strcmp comparison), which is exactly what Windows Defender's ML model flags as suspicious — because real malware uses these same APIs for d…
When downloading version 0.5.4 of codebase-memory-mcp-ui-windows-amd64.zip, Windows Defender detects a virus.
This doesn't happen with version 0.5.3.
Detected: Trojan:Script/Wacatac.B!ml
Thanks for reporting — we've identified the cause.
The
Trojan:Script/Wacatac.B!mldetection is a false positive from Windows Defender's machine-learning heuristic (the!mlsuffix means it's an ML-based detection, not a signature match against known malware).The trigger is the DLL resolve tracking feature introduced in commit f92fd66. This feature scans C/C++ source code for
GetProcAddress,dlsym, andLoadLibrarypatterns to build call graph edges across DLL boundaries. The binary now contains these API names as literal strings (for regex matching andstrcmpcomparison), which is exactly what Windows Defender's ML model flags as suspicious — because real malware uses these same APIs for d…