Packer Checking

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

Check if a file is packed and determine what packer was potentially used, this will also attempt to determine what software was used to compile the binary file


Query Params

  • filename1 file

Headers

  • apiKey string


Request

curl -X POST https://api.malcore.io/api/checkpacked\
-F "filename1=@myfile.exe" \
   -H "apiKey: myapikey" \

Responses

🟢 200

{
  "is_packed": "true",
  "possible_packer_information": {
    "results": [
      [
        "Aspack v2.12 -> www.aspack.co",
        60.87
      ],
      [
        "Aspack v2.12 -> www.aspack.co",
        60.58
      ],
      [
        "DJoin v0.7 public (xor encryption) -> drmis",
        61.25
      ],
      [
        "FSG v1.10 (Eng) -> dulek/xt -> (Microsoft Visual C++ 6.0 / 7.0",
        61.54
      ],
      [
        "Microsoft Visual Basic v5.",
        60
      ]
    ]
  }
}

🔴 400

{}

Last updated