Skip to content
This repository was archived by the owner on Mar 5, 2026. It is now read-only.

Latest commit

 

History

History
32 lines (25 loc) · 648 Bytes

File metadata and controls

32 lines (25 loc) · 648 Bytes

Create a Comodo scan micro-service

$ docker run -d -p 3993:3993 malice/comodo 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

{
    "comodo": {
        "database": "4477/13807",
        "engine": "13.0.3114",
        "infected": true,
        "result": "Found Win32/DH{CGE?}",
        "updated": "20170121"
    }
}