rms-runtime-mobile-security
Version:
Runtime Mobile Security (RMS), powered by FRIDA, is a powerful web interface that helps you to manipulate Android and iOS Apps at Runtime
51 lines (49 loc) • 2.1 kB
HTML
<!-- Sidebar -->
<div class="bg-light border-right" id="sidebar-wrapper">
<div class="sidebar-heading">
<img class="profile_picture" src=mobilesecurity.jpg>
<br>
<br>
<font size=3><b>🔥 Runtime Mobile Security 🔥</b></font>
<a href="https://twitter.com/mobilesecurity_" alt="Mobile Security Twitter Account">
<center><b>@mobilesecurity_</b></center>
</a>
</div>
<div class="list-group list-group-flush">
<p class="list-group-item list-group-item-action bg-light">
{% if mobile_OS %}
<b>Mobile OS:</b> {{mobile_OS}} <br>
{% endif %}
{% if target_package and system_package %}
<b>Target Package:</b> {{target_package}} <br>
<b>System Package: </b> {{system_package}} <br>
{% endif %}
{% if no_system_package==true and target_package!="Gadget" %}
<br>
<b><font color=red>{{system_package}} is NOT available on your device!</font></b> <br><br>
<b><font color=red>For a better RE experience, Click <a href="/config">here</a> to change it!</font></b>
{% endif %}
{% if frida_crash=="True" %}
<br>
<b><font color=red>FRIDA crashed</font></b> <br><br>
{% if frida_crash_message %}
<b>Error description: <br>
<font color=red>{{frida_crash_message}}</font>
</b>
<br><br>
{% endif %}
{% endif %}
<!-- print a warning if the Browser is not Chrome - start -->
{% block scripts %}
<script>
var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
if(isChrome==false){
document.write("<br><br><b><font color=red>Browser not fully supported, please use Chrome!</font></b>")
}
</script>
{% endblock %}
<!-- print a warning if the Browser is not Chrome - end -->
</p>
</div>
</div>
<!-- /#sidebar-wrapper -->