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
  • [ POST ] https://api.malcore.io/api/status
  • Body Params
  • Headers
  • Request
  • Response

Status Check

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

Checking status of an uploaded file


Body Params

  • uuid string UUID provided from upload request

Headers

  • apiKey string API Key


Request

curl -X POST https://api.malcore.io/api/status \
  --data "uuid=my-uuid-provided-by-upload"
  -H "apiKey: MY-API-KEY"

Response

🟢 200

{
  "architecture": {
    "results": "..."
  },
  "assembly": {
    "results": "..."
  },
  "dfi": {
    "results": "..."
  },
  "dynamic_analysis": {
    "results": "..."
  },
  "exif_data": {
    "results": "..."
  },
  "exports": {
    "results": "..."
  },
  "file_type": {
    "results": "..."
  },
  "hashes": {
    "sha1": "...",
    "imphash": "...",
    "crc32": "...",
    "id_hash": "...",
    "ssdeep": "...",
    "sha256": "...",
    "sha512": "...",
    "md5": "..."
  },
  "hexdump": {
    "results": "..."
  },
  "imports": {
    "results": "..."
  },
  "interesting_strings": {
    "results": "..."
  },
  "packer_information": {
    "results": "..."
  },
  "pcap_analysis": {
    "results": "..."
  },
  "phone_app_analysis": {
    "results": "..."
  },
  "sections": {
    "results": "..."
  },
  "similar_samples": {
    "results": "..."
  },
  "snort_rules": {
    "results": "..."
  },
  "strings": {
    "results": "..."
  },
  "threat_score": {
    "results": "..."
  },
  "yara_rules": {
    "results": "..."
  }
}

🔴 404

{
  "error": "there doesn't appear to be anything with the provided UUID"
}
PreviousImports and ExportsNextYara Rule Scanning

Last updated 12 months ago