├── .gitignore ├── Helpers ├── Device.py ├── script.js └── wv_proto2_pb2.py ├── README.md ├── dump_keys.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diazole/dumper/HEAD/.gitignore -------------------------------------------------------------------------------- /Helpers/Device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diazole/dumper/HEAD/Helpers/Device.py -------------------------------------------------------------------------------- /Helpers/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diazole/dumper/HEAD/Helpers/script.js -------------------------------------------------------------------------------- /Helpers/wv_proto2_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diazole/dumper/HEAD/Helpers/wv_proto2_pb2.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diazole/dumper/HEAD/README.md -------------------------------------------------------------------------------- /dump_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diazole/dumper/HEAD/dump_keys.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | frida 2 | protobuf == 3.19.3 3 | pycryptodome 4 | --------------------------------------------------------------------------------