├── README.md ├── imgs ├── hashmap.png ├── noped.png ├── packed_file.png └── unpacked.png ├── legu_hashmap.ksy ├── legu_hashmap.py ├── legu_packed_file.ksy ├── legu_packed_file.py ├── pylegu ├── CMakeLists.txt ├── MANIFEST.in ├── README.md ├── cmake │ ├── CompilerFlags.cmake │ └── FindPythonLibsNew.cmake ├── pyLegu.cpp ├── pyLegu.hpp ├── setup.cfg ├── setup.py └── third-party │ ├── pybind11-2.4.3.zip │ └── ucl-1.03.tar.gz ├── samples ├── com.intotherain.voicechange.apk └── com.intotherain.voicechange_unpacked.apk └── unpack.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/README.md -------------------------------------------------------------------------------- /imgs/hashmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/imgs/hashmap.png -------------------------------------------------------------------------------- /imgs/noped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/imgs/noped.png -------------------------------------------------------------------------------- /imgs/packed_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/imgs/packed_file.png -------------------------------------------------------------------------------- /imgs/unpacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/imgs/unpacked.png -------------------------------------------------------------------------------- /legu_hashmap.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/legu_hashmap.ksy -------------------------------------------------------------------------------- /legu_hashmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/legu_hashmap.py -------------------------------------------------------------------------------- /legu_packed_file.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/legu_packed_file.ksy -------------------------------------------------------------------------------- /legu_packed_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/legu_packed_file.py -------------------------------------------------------------------------------- /pylegu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/pylegu/CMakeLists.txt -------------------------------------------------------------------------------- /pylegu/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/pylegu/MANIFEST.in -------------------------------------------------------------------------------- /pylegu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/pylegu/README.md -------------------------------------------------------------------------------- /pylegu/cmake/CompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/pylegu/cmake/CompilerFlags.cmake -------------------------------------------------------------------------------- /pylegu/cmake/FindPythonLibsNew.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/pylegu/cmake/FindPythonLibsNew.cmake -------------------------------------------------------------------------------- /pylegu/pyLegu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/pylegu/pyLegu.cpp -------------------------------------------------------------------------------- /pylegu/pyLegu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/pylegu/pyLegu.hpp -------------------------------------------------------------------------------- /pylegu/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/pylegu/setup.cfg -------------------------------------------------------------------------------- /pylegu/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/pylegu/setup.py -------------------------------------------------------------------------------- /pylegu/third-party/pybind11-2.4.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/pylegu/third-party/pybind11-2.4.3.zip -------------------------------------------------------------------------------- /pylegu/third-party/ucl-1.03.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/pylegu/third-party/ucl-1.03.tar.gz -------------------------------------------------------------------------------- /samples/com.intotherain.voicechange.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/samples/com.intotherain.voicechange.apk -------------------------------------------------------------------------------- /samples/com.intotherain.voicechange_unpacked.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/samples/com.intotherain.voicechange_unpacked.apk -------------------------------------------------------------------------------- /unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/legu_unpacker_2019/HEAD/unpack.py --------------------------------------------------------------------------------