Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 625 Bytes

web.md

File metadata and controls

31 lines (24 loc) · 625 Bytes

Create a Windows Defender scan micro-service

$ docker run -d -p 3993:3993 malice/windows-defender web

INFO[0000] web service listening on port :3993

Now you can perform scans like so

$ http -f localhost:3993/scan malware@/path/to/evil/malware

NOTE: I am using httpie to POST to the malice micro-service

HTTP/1.1 200 OK
Content-Length: 124
Content-Type: application/json; charset=UTF-8
Date: Sat, 21 Jan 2017 05:39:29 GMT

{
  "windows-defender": {
    "infected": true,
    "result": "Virus:DOS/EICAR_Test_File",
    "engine": "0.1.0",
    "updated": "20170527"
  }
}