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
108 lines (90 loc) • 2.86 kB
HTML
<html lang="en">
<head>
<!-- head and css -->
{% include 't_head.html' %}
</head>
<body>
<div class="d-flex" id="wrapper">
<!-- Sidebar -->
{% include 't_sidebar.html' %}
<!-- Page Content -->
<div id="page-content-wrapper">
<!-- Navbar -->
{% include 't_navbar.html' %}
<!-- 2 textarea side by side -->
<div class="container-fluid">
<br>
<h2>Compare Loaded Classes 🔍</h2>
<div class="border-top my-3"></div>
<div class="row">
<div class="col-sm-5">
<h3 align=center>Check current Loaded Classes</h3>
<form action="diff_classes" method=GET>
<input type=hidden name=choice value=1>
<br>
<center>
<input type=submit value="Load Classes" class="btn btn-primary">
</center>
<br>
</form>
<textarea id=console_output_1 name=console_output
class="form-control">{% for class in current_loaded_classes %}{{class}}
{% endfor %}</textarea>
</div>
<div class="col-sm-2">
<h3 align=center>do some stuff with the app</h3>
<h3 align=center style='font-size:100px; color: red'>→</h3>
</div>
<div class="col-sm-5">
<h3 align=center>Check <b>*<font color=red>NEW</font>*</b> Loaded Classes</h3>
<form action="diff_classes" method=GET>
<input type=hidden name=choice value=2>
<br>
<center>
<input type=submit class="btn btn-primary" value="Load Classes">
</center>
<br>
</form>
<textarea id=console_output_2 name=console_output
class="form-control">{% for class in new_loaded_classes %}{{class}}
{% endfor %}</textarea>
</div>
</div>
</div>
</div>
<!-- /#container-fluid -->
</div>
<!-- /#page-content-wrapper -->
</div>
<!-- /#wrapper -->
<!-- Javascript loading -->
{% include 't_js_script.html' %}
{% block scripts %}
<script>
var editor = CodeMirror.fromTextArea(console_output_1, {
lineNumbers: true,
mode: 'javascript',
theme: 'dracula',
readOnly: true
});
editor.setSize("100%",620);
var editor = CodeMirror.fromTextArea(console_output_2, {
lineNumbers: true,
mode: 'javascript',
theme: 'dracula',
readOnly: true
});
editor.setSize("100%",620);
</script>
<!-- Set current Page as active in the NavBar -->
<script>
$(document).ready(function () {
$(".nav li").removeClass("active");
$('#diff_classes').addClass('active');
});
</script>
<!-- Set current Page as active in the NavBar -->
{% endblock %}
</body>
</html>