├── .gitignore ├── README.md ├── arm ├── libSecShell.so ├── libSecShell.so.config.json ├── libcms.so ├── libcms.so.config.json ├── libcompatible.so ├── libcompatible.so.config.json ├── libdexvmp.so ├── libdu.so ├── libdu.so.config.json ├── libmetasec_ml.so ├── libmetasec_ml.so.config.json ├── libnative-lib.so ├── libnative-lib.so.config.json ├── libsecsdk.so └── libsecsdk.so.config.json ├── arm64 ├── cff-arm64-v8a.elf ├── cff-arm64-v8a.elf.config.json ├── libcompatible.so ├── libcompatible.so.config.json ├── libnative-lib.so ├── libnative-lib.so.config.json ├── libvdog.so └── libvdog.so.config.json ├── test_gen_case.py ├── test_gen_cases_batch.py ├── test_gen_config.py ├── tests ├── generate.py └── template.html ├── x86 ├── libcompatible_x86.so ├── libcompatible_x86.so.config.json ├── libdexvmp.so ├── libshellx-super.2019.so └── libshellx-super.2019.so.config.json └── x86_64 ├── demo-control-flow-flatten.elf64 ├── demo-control-flow-flatten.elf64.config.json └── libcompatible_x86.so /.gitignore: -------------------------------------------------------------------------------- 1 | /ida/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/README.md -------------------------------------------------------------------------------- /arm/libSecShell.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libSecShell.so -------------------------------------------------------------------------------- /arm/libSecShell.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libSecShell.so.config.json -------------------------------------------------------------------------------- /arm/libcms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libcms.so -------------------------------------------------------------------------------- /arm/libcms.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libcms.so.config.json -------------------------------------------------------------------------------- /arm/libcompatible.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libcompatible.so -------------------------------------------------------------------------------- /arm/libcompatible.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libcompatible.so.config.json -------------------------------------------------------------------------------- /arm/libdexvmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libdexvmp.so -------------------------------------------------------------------------------- /arm/libdu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libdu.so -------------------------------------------------------------------------------- /arm/libdu.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libdu.so.config.json -------------------------------------------------------------------------------- /arm/libmetasec_ml.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libmetasec_ml.so -------------------------------------------------------------------------------- /arm/libmetasec_ml.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libmetasec_ml.so.config.json -------------------------------------------------------------------------------- /arm/libnative-lib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libnative-lib.so -------------------------------------------------------------------------------- /arm/libnative-lib.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libnative-lib.so.config.json -------------------------------------------------------------------------------- /arm/libsecsdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libsecsdk.so -------------------------------------------------------------------------------- /arm/libsecsdk.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm/libsecsdk.so.config.json -------------------------------------------------------------------------------- /arm64/cff-arm64-v8a.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm64/cff-arm64-v8a.elf -------------------------------------------------------------------------------- /arm64/cff-arm64-v8a.elf.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm64/cff-arm64-v8a.elf.config.json -------------------------------------------------------------------------------- /arm64/libcompatible.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm64/libcompatible.so -------------------------------------------------------------------------------- /arm64/libcompatible.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm64/libcompatible.so.config.json -------------------------------------------------------------------------------- /arm64/libnative-lib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm64/libnative-lib.so -------------------------------------------------------------------------------- /arm64/libnative-lib.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm64/libnative-lib.so.config.json -------------------------------------------------------------------------------- /arm64/libvdog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm64/libvdog.so -------------------------------------------------------------------------------- /arm64/libvdog.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/arm64/libvdog.so.config.json -------------------------------------------------------------------------------- /test_gen_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/test_gen_case.py -------------------------------------------------------------------------------- /test_gen_cases_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/test_gen_cases_batch.py -------------------------------------------------------------------------------- /test_gen_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/test_gen_config.py -------------------------------------------------------------------------------- /tests/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/tests/generate.py -------------------------------------------------------------------------------- /tests/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/tests/template.html -------------------------------------------------------------------------------- /x86/libcompatible_x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/x86/libcompatible_x86.so -------------------------------------------------------------------------------- /x86/libcompatible_x86.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/x86/libcompatible_x86.so.config.json -------------------------------------------------------------------------------- /x86/libdexvmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/x86/libdexvmp.so -------------------------------------------------------------------------------- /x86/libshellx-super.2019.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/x86/libshellx-super.2019.so -------------------------------------------------------------------------------- /x86/libshellx-super.2019.so.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/x86/libshellx-super.2019.so.config.json -------------------------------------------------------------------------------- /x86_64/demo-control-flow-flatten.elf64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/x86_64/demo-control-flow-flatten.elf64 -------------------------------------------------------------------------------- /x86_64/demo-control-flow-flatten.elf64.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/x86_64/demo-control-flow-flatten.elf64.config.json -------------------------------------------------------------------------------- /x86_64/libcompatible_x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obpo-project/samples/HEAD/x86_64/libcompatible_x86.so --------------------------------------------------------------------------------