Malcore: Simple File Analysis
  • Malcore API docs
  • Packer Checking
  • Deep Static Analysis
  • PCAP diffing
  • Gather sections
  • Shellcode Emulation
  • Executable File Analysis
  • Binary Diffing
  • Script Analysis
  • Ransom Note Comparison
  • PCAP Analysis
  • Snort Rule Generation
  • Hash Checksum
  • Strings
  • Imports and Exports
  • Status Check
  • Yara Rule Scanning
  • Parse Exif Data
  • Domain Analysis
  • Threat Score
  • Execute From URL
  • Document File Analysis
  • URL Checking
  • Browser Extension Analysis
  • Android Permission Lookup
  • AndroidManifest Parsing
  • Phone Application Analysis
  • Dynamic Analysis
  • Threat Feed
  • AI Classifier
  • Scan Results Manipulation
Powered by GitBook
On this page

Deep Static Analysis

[ POST ] https://api.malcore.io/api/deepstatic

Perform deep static analysis on a passed file


Query Params

  • filename1 file

Headers

  • apiKey string

  • X-No-Poll string


Request

curl -X POST https://api.malcore.io/api/deepstatic \
	-H "apiKey: MY-API-KEY" \
	-H "X-No-Poll: true" \
    -F "filename1=@calc.exe" \

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

{}
PreviousPacker CheckingNextPCAP diffing

Last updated 4 months ago