├── GenAsmAndBytes ├── .ignore ├── GenAsmAndBytes.idc ├── Readme.md └── sample │ ├── .ignore │ ├── Win32Project1.asm │ ├── Win32Project1.bytes │ └── Win32Project1.exe2 ├── GenCallPath ├── Readme.md └── get_dynamic_path.py ├── IDAPython手册中文版.pdf ├── LICENSE └── README.md /GenAsmAndBytes/.ignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GenAsmAndBytes/GenAsmAndBytes.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxxd/IDA/HEAD/GenAsmAndBytes/GenAsmAndBytes.idc -------------------------------------------------------------------------------- /GenAsmAndBytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxxd/IDA/HEAD/GenAsmAndBytes/Readme.md -------------------------------------------------------------------------------- /GenAsmAndBytes/sample/.ignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GenAsmAndBytes/sample/Win32Project1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxxd/IDA/HEAD/GenAsmAndBytes/sample/Win32Project1.asm -------------------------------------------------------------------------------- /GenAsmAndBytes/sample/Win32Project1.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxxd/IDA/HEAD/GenAsmAndBytes/sample/Win32Project1.bytes -------------------------------------------------------------------------------- /GenAsmAndBytes/sample/Win32Project1.exe2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxxd/IDA/HEAD/GenAsmAndBytes/sample/Win32Project1.exe2 -------------------------------------------------------------------------------- /GenCallPath/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxxd/IDA/HEAD/GenCallPath/Readme.md -------------------------------------------------------------------------------- /GenCallPath/get_dynamic_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxxd/IDA/HEAD/GenCallPath/get_dynamic_path.py -------------------------------------------------------------------------------- /IDAPython手册中文版.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxxd/IDA/HEAD/IDAPython手册中文版.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxxd/IDA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxxd/IDA/HEAD/README.md --------------------------------------------------------------------------------