Binary Diffing

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

Perform a diff comparison on two binary files


Body Params

  • filename1 file

  • filename2 file

Headers

  • apiKey string


Request

curl -X POST https://api.malcore.io/api/bindiff \ 
-H "apiKey: MY-API-KEY" \
  -F "filename1=@/path/to/my/file.bin"
  -F "filename2=@/path/to/my/file2.bin"

Response

🟢 200

  'file_sizes': [
    {'/fake/path/file1.bin': '27648', '/fake/path/file2.bin': '27648'}
  ], 
  'found_differences': [
    "...", "...", ...
  ]
}

🔴 400

{}

Last updated