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

普通

{% if apimon %} API 监控查看 {% endif %} {% if frida_logs %} Frida 日志查看 {% endif %} 启动 HTTPTools

原始日志

{% if droidmon %} Droidmon API 监控日志 {% endif %} {% if apimon %} API 监控日志 {% endif %} {% if frida_logs %} Frida 日志 {% endif %} HTTP(S) 流量 Logcat 日志 转存系统 日志 应用程序数据

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

{{api | upper}}

{% for call in details %} {% endfor %}
方法
{{ 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 %}
方法
{{ call|key:"class" }} {{ call|key:"method" }} {% if call|key:"args" %}

参数: {{ call|key:"args" }}

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

解码字符串: {{ call|key:"decoded" }}

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

返回: {{ call|key:"return" }}

{% endif %}
{% endfor %}

TLS/SSL 安全测试

测试 结果
TLS 错误配置测试 {% if tls_tests%}{% if tls_tests.tls_misconfigured == True %}❌{% else %}✅{% endif %}{% else %}Not Tested{% endif %}
TLS 固定/证书透明度测试 {% if tls_tests%}{% if tls_tests.no_tls_pin_or_transparency == True %}❌{% else %}✅{% endif %}{% else %}Not Tested{% endif %}
TLS 固定/证书透明度绕过测试 {% if tls_tests%}{% if tls_tests.pin_or_transparency_bypassed == True %}❌{% else %}✅{% endif %}{% else %}Not Tested{% endif %}
明文流量测试 {% if tls_tests%}{% if tls_tests.has_cleartext == True %}❌{% else %}✅{% endif %}{% else %}Not Tested{% endif %}

导出Activity测试

{% for img, desc in exported_activity_tester.items %} {% endfor %}
截屏 活动
{{desc}} {{ desc }}

Activity 测试仪

{% for img, desc in activity_tester.items %} {% endfor %}
截屏 活动
{{desc}} {{ desc }}

截屏

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

运行时依赖项

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

服务器位置

{% if domains %}


此应用程序可能与以下OFAC批准的国家/地区进行通信.

{% for domain, details in domains.items %} {% if details|key:"ofac" == True %} {% endif %} {% endfor %}
域名 国家/地区
{{domain}} IP: {{details|key:"geolocation"|key:"ip"}}
国家: {{details|key:"geolocation"|key:"country_long"}}
区域: {{details|key:"geolocation"|key:"region"}}
城市: {{details|key:"geolocation"|key:"city"}}
{% endif %}

恶意域名检测

{% if domains %} {% for domain, details in domains.items %} {% endfor %}
域名 状态 地理位置
{{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"}}
国家: {{details|key:"geolocation"|key:"country_long"}}
区域: {{details|key:"geolocation"|key:"region"}}
城市: {{details|key:"geolocation"|key:"city"}}
维度: {{details|key:"geolocation"|key:"latitude"}}
经度: {{details|key:"geolocation"|key:"longitude"}}
View: Google Map {% else %} No Geolocation information available. {% endif %}
{% endif %}

剪贴板转储

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

网址

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

邮件

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

跟踪器

{% if trackers %} {% for trk in trackers|key:"trackers" %} {% endfor %}
跟踪器名称 类别 网址
{{trk.name}} {{trk.categories}} {{trk.url}}
{% endif %}

BASE64 字符串解码

{% for details in base64_strings %} {% endfor %}
名称 解码字符串
{{ details.0 }} {{ details.1|slice:500}}

SQLITE 数据库

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

XML 文件

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

其它文件

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