This is the code rewritten in Python 3 from the original code of esterTion's PHP version. Only works with blobs from Android apk!!!
genProto.py
for old versions, genProto.py
for new versions with arm64 blobs.
This is the code rewritten in Python 3 from the original code of esterTion's PHP version. Only works with blobs from Android apk!!!
genProto.py
for old versions, genProto.py
for new versions with arm64 blobs.
from io import RawIOBase | |
from struct import * | |
from typing import Callable | |
def offset_decorate(func: Callable) -> Callable: | |
def func_wrapper(*args, **kwargs) -> Callable: | |
offset = kwargs.get('offset') | |
if offset is not None: |