├── Android └── readme.txt ├── Core ├── dyn_item.cpp ├── dyn_item.h ├── dyn_section.cpp ├── dyn_section.h ├── elf.h ├── elf_common.h ├── elf_header.cpp ├── elf_header.h ├── elf_section.cpp ├── elf_section.h ├── elf_segment.cpp ├── elf_segment.h └── features.h ├── IDAScript ├── IDADumpMemory.py ├── IDAMemorySearch.py ├── JNI_InitFunctions_BreakPoint.py ├── JNI_InitFunctions_BreakPoint_Ex.py ├── JNI_OnLoad_BreakPoint.py └── JNI_OnLoad_BreakPoint_Ex.py ├── README.md ├── Windows ├── main.cpp ├── xAnSo.sln ├── xAnSo.vcxproj └── xAnSo.vcxproj.filters ├── fix ├── readme.txt ├── section_fix.cpp └── section_fix.h ├── jni.h ├── libmg20pbase.so ├── libmg20pbase.so.fixed ├── libshella-2.10.7.1.so ├── libshella-2.10.7.1_org.so ├── log.cpp ├── log.h ├── util ├── util.cpp └── util.h ├── viewer └── readme.txt └── xAnSo.exe /Android/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/dyn_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/dyn_item.cpp -------------------------------------------------------------------------------- /Core/dyn_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/dyn_item.h -------------------------------------------------------------------------------- /Core/dyn_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/dyn_section.cpp -------------------------------------------------------------------------------- /Core/dyn_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/dyn_section.h -------------------------------------------------------------------------------- /Core/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/elf.h -------------------------------------------------------------------------------- /Core/elf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/elf_common.h -------------------------------------------------------------------------------- /Core/elf_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/elf_header.cpp -------------------------------------------------------------------------------- /Core/elf_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/elf_header.h -------------------------------------------------------------------------------- /Core/elf_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/elf_section.cpp -------------------------------------------------------------------------------- /Core/elf_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/elf_section.h -------------------------------------------------------------------------------- /Core/elf_segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/elf_segment.cpp -------------------------------------------------------------------------------- /Core/elf_segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/elf_segment.h -------------------------------------------------------------------------------- /Core/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Core/features.h -------------------------------------------------------------------------------- /IDAScript/IDADumpMemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/IDAScript/IDADumpMemory.py -------------------------------------------------------------------------------- /IDAScript/IDAMemorySearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/IDAScript/IDAMemorySearch.py -------------------------------------------------------------------------------- /IDAScript/JNI_InitFunctions_BreakPoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/IDAScript/JNI_InitFunctions_BreakPoint.py -------------------------------------------------------------------------------- /IDAScript/JNI_InitFunctions_BreakPoint_Ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/IDAScript/JNI_InitFunctions_BreakPoint_Ex.py -------------------------------------------------------------------------------- /IDAScript/JNI_OnLoad_BreakPoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/IDAScript/JNI_OnLoad_BreakPoint.py -------------------------------------------------------------------------------- /IDAScript/JNI_OnLoad_BreakPoint_Ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/IDAScript/JNI_OnLoad_BreakPoint_Ex.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/README.md -------------------------------------------------------------------------------- /Windows/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Windows/main.cpp -------------------------------------------------------------------------------- /Windows/xAnSo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Windows/xAnSo.sln -------------------------------------------------------------------------------- /Windows/xAnSo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Windows/xAnSo.vcxproj -------------------------------------------------------------------------------- /Windows/xAnSo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/Windows/xAnSo.vcxproj.filters -------------------------------------------------------------------------------- /fix/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fix/section_fix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/fix/section_fix.cpp -------------------------------------------------------------------------------- /fix/section_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/fix/section_fix.h -------------------------------------------------------------------------------- /jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/jni.h -------------------------------------------------------------------------------- /libmg20pbase.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/libmg20pbase.so -------------------------------------------------------------------------------- /libmg20pbase.so.fixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/libmg20pbase.so.fixed -------------------------------------------------------------------------------- /libshella-2.10.7.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/libshella-2.10.7.1.so -------------------------------------------------------------------------------- /libshella-2.10.7.1_org.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/libshella-2.10.7.1_org.so -------------------------------------------------------------------------------- /log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/log.cpp -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/log.h -------------------------------------------------------------------------------- /util/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/util/util.cpp -------------------------------------------------------------------------------- /util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/util/util.h -------------------------------------------------------------------------------- /viewer/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xAnSo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakishfox/xAnSo/HEAD/xAnSo.exe --------------------------------------------------------------------------------