{% include 't_head.html' %}
{% include 't_sidebar.html' %}
{% include 't_navbar.html' %}

Load Classes and Methods 🎯... and then HOOK everything ⚓️


1


2


3


4

Insert a Filter
(optional)
NOTE: Hooking more than 500 classes or complex classes can easily crash the app. Use a filter if you receive an error! 😉


print StackTrace?

Classes

Use the search bar below to quickly filter results: {% if loaded_methods|length > 0 %} {% if methods_hooked_and_executed|length > 0 %} {% endif %} {% endif %}


{% if methods_hooked_and_executed|length > 0 %}

✅  = the hooked method has been executed by the app - Refresh Page

{% endif %} {% for class_name in loaded_classes %} {% endfor %}
index classes methods
{{ loop.index0 }}
{{class_name}}
{% if mobile_OS=="Android" %}{% else %}{% endif %}{% for method_name in loaded_methods[class_name] %}{% if "Class: "+class_name+"\nMethod: "+method_name["ui_name"]+"\n" in methods_hooked_and_executed %}✅ {% endif %}{{method_name["ui_name"]}};
{% endfor %}
{% include 't_js_script.html' %} {% block scripts %} {% endblock %}