Gather sections

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

Gather the sections out of the binary file


Query Params

  • filename1 file

Headers

  • apiKey string


Request

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

Responses

🟢 200

{
  "results": [
    [
      ".text:",
      "5.80653548846"
    ],
    [
      ".rdata:",
      "3.96936179484"
    ],
    [
      ".data:",
      "0.378703493488"
    ],
    [
      ".pdata:",
      "1.97732827586"
    ],
    [
      ".rsrc:",
      "2.93658107871"
    ],
    [
      ".reloc:",
      "0.0"
    ]
  ]
}

🔴 400

{}

🔴 404

{
  "error": "invalid upload name provided, make sure the upload name is 'filename1'"
}

Last updated