Deep Static Analysis
[ POST ] https://api.malcore.io/api/deepstatic
Perform deep static analysis on a passed file
Query Params
filename1
file
Headers
apiKey
stringX-No-Poll
string
Request
curl -X POST https://api.malcore.io/api/deepstatic \
-H "apiKey: MY-API-KEY" \
-H "X-No-Poll: true" \
-F "[email protected]" \
Responses
🟢 200
{
"is_packed": false,
"similar_samples": [],
"assembly": "...",
"sections": [["..."],["..."]],
"possible_packer_information": {
"results": ["..."]
},
"hexdump": "..."
"hashes": {
"hashes": {
"sha1": "...",
"imphash": "...",
"crc32": "...",
"ssdeep": "...",
"sha256": "...",
"md5": "..."
}
},
"interesting_strings": ["..."],
"strings": ["..."]
}
🔴 404
{}
Last updated