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/androidperms
  • Query Params
  • Headers
  • Request
  • Response

Android Permission Lookup

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

Lookup unknown Android permissions to determine what they do


Query Params

  • perm string The permission to lookup

Headers

  • apiKey string


Request

curl -X POST https://api.malcore.io/api/androidperms \
	-H "apiKey: MY-API-KEY" \
  --data "perm=INTERNET" \

Response

🟢 200

{
  "extra_information": "full Internet access",
  "description": "Allows an application to create network sockets.",
  "name": "INTERNET",
  "level": "normal"
}

🔴 400

{
  "error": "no results are available for the permission you passed"
}
PreviousBrowser Extension AnalysisNextAndroidManifest Parsing

Last updated 1 year ago