Skip to content

Latest commit

 

History

History
70 lines (47 loc) · 2.01 KB

Android.md

File metadata and controls

70 lines (47 loc) · 2.01 KB

Home

Fill in the identifier corresponding to the application name. home1

Hooks

Traverse all the class names of the App, match the filled string(Support for regular), meet the conditions, then hook all methods under the class.

match is empty,hook all classes. hooks1

Options: Filter the hook class name, and if it matches, do not hook the matching class hooks2

Stack

The Hooks printed stack is shown here. stack1

Finds

Traverse all the class names of the App, match the filled string(Support for regular), meet the conditions, then print all methods under the class. finds1

Options: Filter the finds class name, and if it matches, do not print the matching class

finds2

Searchmethod

Search for matching methods based on the filled string(Support for regular). searchmethod1

search

Find the string containing Util in the printed information, which is case-insensitive. search

UIDump

Monitor Activity. uidump1

toBurp

PakageName.ClassName.MethodName toBurp1

export static: rpc static method. export instance: rpc instance method.

hook-call: Execute the APP method toburphook

With the Burp plugin, automatic encryption and decryption of packets can be achieved.

GIF

Notice:When using Body Auto, the tag used when the request package is automatically encrypted is req fun1. When the package is returned for decryption, the tag used is req fun2

toBurp-toBurp

Intercepts the specified function, modifies the or return value, and returns it to the application.

Complex data types only support modifying one-dimensional arrays. toburp-toburp

Decoder

Support byte[] and string conversion, byte[] and hexadecimal string conversion. Decoder1

Decoder2