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/scriptanalysis
  • Body Params
  • Headers
  • Request
  • Response

Script Analysis

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

Perform analysis on scripts


Body Params

  • filename1 file

Headers

  • apiKey string

  • Script-Type string The type of script you want to analyze from the following list: ps1, sh, js, powershell, bash, javascript

  • X-No-Poll string


Request

curl -X POST  https://api.malcore.io/api/phoneapp \
  -H "Script-Type: js" \
  -H "apiKey: MY-API-KEY" \
  -H "X-No-Poll: true" \
  -F "filename1=@file.js" \

Response

🟢 200

{
  "interesting_strings": [
    "...","...","...",...
  ],
  "function_count": 10,
  "unique_functions": [
    "...","...","...",...  
  ],
  "readable_strings_found": 27,
  "interesting_functions": []
}

🔴 400

{}
PreviousBinary DiffingNextRansom Note Comparison

Last updated 1 year ago