Phone Application Analysis

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

Perform analysis on a phone application, this endpoint accepts IPA and APK files


Query Params

  • filename1 file

Headers

  • apiKey string Malcore API key

  • X-No-Poll string


Request

curl -X POST  https://api.malcore.io/api/phoneapp \
	-F "filename1=@/path/to/phone/app" \
	-H "X-No-Poll: true" \
  -H "apiKey: my-api-key" \

Response

🟢 200

{'status': 'running',
          'uuid': '...',
          'scan_id': '...',
          'scan_url': '...',
          'report_id': '...'},
          'isMaintenance': False,
          'success': True,
          'messages': [{
	          'type': 'success',
			  'code': 200,
			  'message': 'Scan is running'
	        }]
}

🔴 400

{}

Last updated