{% extends "base/base_layout.html" %} {% load static %} {% block sidebar_option %} sidebar-mini {% endblock %} {% block extra_css %} {% endblock %} {% block sidebar %} {% endblock %} {% block content %}

INFORMATION

{% if apimon %} API Monitor View {% endif %} {% if frida_logs %} Frida Logs View {% endif %} Start HTTPTools

Raw Logs

{% if droidmon %} Droidmon API Monitor Logs {% endif %} {% if apimon %} API Monitor Logs {% endif %} {% if frida_logs %} Frida Logs {% endif %} HTTP(S) Traffic Logcat Logs Dumpsys Logs Application Data

{% for api, details in apimon.items %}

{{api | upper}}

{% for call in details %} {% endfor %}
CLASS METHOD
{{ call|key:"class" }} {{ call|key:"method" }}


Arguments: {{ call|key:"arguments" }}

{% if call|key:"result" %}

Result: {{ call|key:"result"}}

{% endif %} {% if call|key:"returnValue" %}

Return Value: {{ call|key:"returnValue"}}

{% endif %} {% if call|key:"decoded" %}

Decoded String: {{ call|key:"decoded" }}

{% endif %}

Called From: {{ call|key:"calledFrom" }}

{% endfor %} {% for api, details in droidmon.items %}

{{details|key:"name"}}

{% for call in details|key:"calls" %} {% endfor %}
CLASS METHOD
{{ call|key:"class" }} {{ call|key:"method" }} {% if call|key:"args" %}

Arguments: {{ call|key:"args" }}

{% endif %} {% if call|key:"decoded" %}

Decoded String: {{ call|key:"decoded" }}

{% endif %} {% if call|key:"return" %}

Return: {{ call|key:"return" }}

{% endif %}
{% endfor %}

TLS/SSL Security Tester

TESTS RESULT
TLS Misconfiguration Test {% if tls_tests%}{% if tls_tests.tls_misconfigured == True %}❌{% else %}✅{% endif %}{% else %}Not Tested{% endif %}
TLS Pinning/Certificate Transparency Test {% if tls_tests%}{% if tls_tests.no_tls_pin_or_transparency == True %}❌{% else %}✅{% endif %}{% else %}Not Tested{% endif %}
TLS Pinning/Certificate Transparency Bypass Test {% if tls_tests%}{% if tls_tests.pin_or_transparency_bypassed == True %}❌{% else %}✅{% endif %}{% else %}Not Tested{% endif %}
Cleartext Traffic Test {% if tls_tests%}{% if tls_tests.has_cleartext == True %}❌{% else %}✅{% endif %}{% else %}Not Tested{% endif %}

EXPORTED ACTIVITY TESTER

{% for img, desc in exported_activity_tester.items %} {% endfor %}
SCREENSHOT ACTIVITY
{{desc}} {{ desc }}

ACTIVITY TESTER

{% for img, desc in activity_tester.items %} {% endfor %}
SCREENSHOT ACTIVITY
{{desc}} {{ desc }}

SCREENSHOTS

{% for i in screenshots %} Screenshot {% endfor %}

RUNTIME DEPENDENCIES

{% if runtime_dependencies %}
{% for f in runtime_dependencies %} {{ f }}
{% endfor %} {% endif %}

SERVER LOCATIONS

{% if domains %}


This app may communicate with the following OFAC sanctioned list of countries.

{% for domain, details in domains.items %} {% if details|key:"ofac" == True %} {% endif %} {% endfor %}
DOMAIN COUNTRY/REGION
{{domain}} IP: {{details|key:"geolocation"|key:"ip"}}
Country: {{details|key:"geolocation"|key:"country_long"}}
Region: {{details|key:"geolocation"|key:"region"}}
City: {{details|key:"geolocation"|key:"city"}}
{% endif %}

DOMAIN MALWARE CHECK

{% if domains %} {% for domain, details in domains.items %} {% endfor %}
DOMAIN STATUS GEOLOCATION
{{domain}} {% if details|key:"bad" == "yes" %} malware
                      URL: {{details|key:"domain_or_url"}}
                      IP: {{details|key:"ip"}}
                      Description: {{details|key:"desc"}}
                      
{% else %} good
{% endif %}
{% if details|key:"geolocation" %} IP: {{details|key:"geolocation"|key:"ip"}}
Country: {{details|key:"geolocation"|key:"country_long"}}
Region: {{details|key:"geolocation"|key:"region"}}
City: {{details|key:"geolocation"|key:"city"}}
Latitude: {{details|key:"geolocation"|key:"latitude"}}
Longitude: {{details|key:"geolocation"|key:"longitude"}}
View: Google Map {% else %} No Geolocation information available. {% endif %}
{% endif %}

CLIPBOARD DUMP

{% for f in clipboard %} {{ f }}
{% endfor %}

URLS

{% if urls %}
{% for f in urls %} {{ f}}
{% endfor %} {% endif %}

EMAILS

{% if emails %}
{% for f in emails %} {{ f}}
{% endfor %} {% endif %}

TRACKERS

{% if trackers %} {% for trk in trackers|key:"trackers" %} {% endfor %}
TRACKER NAME CATEGORIES URL
{{trk.name}} {{trk.categories}} {{trk.url}}
{% endif %}

BASE64 STRINGS DECODED

{% for details in base64_strings %} {% endfor %}
CALLED DECODED STRING
{{ details.0 }} {{ details.1|slice:500}}

SQLITE DATABASE

{% for file in sqlite %} {% endfor %}
FILES
{{file|key:"file"}}

XML FILES

{% for file in xml %} {% endfor %}
FILES
{{file|key:"file"}}

OTHER FILES

{% for file in others %} {% endfor %}
FILES
{{file|key:"file"}}
{% endblock %} {% block extra_scripts %} {% endblock %}