├── .gitignore ├── Makefile ├── README.md ├── README_current.json ├── book.json ├── book_current.json └── src ├── README.md ├── SUMMARY.md ├── appendix ├── README.md └── reference.md ├── assets ├── favicon.ico └── img │ ├── aslr_dynamic_base_config.png │ ├── assembly_language_main_demo.jpg │ ├── bin_security_basic_knowledge.jpg │ ├── buffer_security_check_config.png │ ├── bypass_dep_shellcode.png │ ├── cfg_dumpbin_headers.png │ ├── cfg_dumpbin_loadconfig.png │ ├── check_security_cookie.jpg │ ├── code_stack_heap_allocate.jpg │ ├── dep_before_after_process.jpg │ ├── dep_protect_virus.png │ ├── detect_it_easy_screenshot.jpg │ ├── dnspy_screenshot.png │ ├── exeinfo_screen.png │ ├── exeinfope_screen_all.png │ ├── gs_logic.png │ ├── head_spray_logic.jpg │ ├── ilspy_screenshot.png │ ├── mhs_screenshot.jpg │ ├── odbg64_screenshot.png │ ├── popup_buffer_overrun_detected.png │ ├── shellcode_encode_decode_code.jpg │ ├── shellcode_encode_decode_process.jpg │ ├── stack_overflow_model.jpg │ ├── vs_aslr_enable.jpg │ ├── vs_cfg_guard.png │ ├── vs_compile_option_gs.jpg │ ├── win_bin_safeseh.jpg │ ├── win_debug_common_methods.jpg │ └── win_option_enable_dep.jpg ├── basic_knowledge ├── README.md ├── executable_file │ └── README.md ├── language │ ├── README.md │ └── assembly │ │ ├── README.md │ │ ├── arm.md │ │ └── x86.md └── system_arch │ ├── README.md │ ├── arm.md │ ├── heap_stack.md │ ├── register.md │ └── x86.md ├── bin_security_overview └── README.md ├── multi_plat ├── README.md └── security_mechanism │ ├── README.md │ └── aslr.md └── windows ├── README.md ├── attack_tech ├── README.md ├── buffer_overrun.md ├── heap_spray.md ├── rop.md └── shell_code.md ├── security_mechanism ├── README.md ├── cfg.md ├── dep.md ├── gs.md ├── safeseh.md └── sehop.md └── tools ├── README.md ├── bin_tool ├── 010editor.md └── README.md ├── detect_packer ├── README.md ├── detect_it_easy.md └── peid.md ├── executable_tool ├── README.md ├── decompiler │ ├── README.md │ ├── dnspy.md │ └── ilspy.md ├── disassembler │ ├── README.md │ └── udis86.md └── exeinfo_pe.md ├── modify_memory ├── README.md ├── ce.md ├── mhs.md └── modifymemory.md ├── reverse_engine ├── README.md ├── ida.md ├── ollydbg.md └── windbg.md ├── static_detect ├── README.md └── winchecksec.md └── windows └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | include ../../common/honkit_makefile.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/README.md -------------------------------------------------------------------------------- /README_current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/README_current.json -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/book.json -------------------------------------------------------------------------------- /book_current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/book_current.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/README.md -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/appendix/README.md: -------------------------------------------------------------------------------- 1 | # 附录 2 | 3 | 下面列出相关参考资料。 4 | -------------------------------------------------------------------------------- /src/appendix/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/appendix/reference.md -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/img/aslr_dynamic_base_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/aslr_dynamic_base_config.png -------------------------------------------------------------------------------- /src/assets/img/assembly_language_main_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/assembly_language_main_demo.jpg -------------------------------------------------------------------------------- /src/assets/img/bin_security_basic_knowledge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/bin_security_basic_knowledge.jpg -------------------------------------------------------------------------------- /src/assets/img/buffer_security_check_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/buffer_security_check_config.png -------------------------------------------------------------------------------- /src/assets/img/bypass_dep_shellcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/bypass_dep_shellcode.png -------------------------------------------------------------------------------- /src/assets/img/cfg_dumpbin_headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/cfg_dumpbin_headers.png -------------------------------------------------------------------------------- /src/assets/img/cfg_dumpbin_loadconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/cfg_dumpbin_loadconfig.png -------------------------------------------------------------------------------- /src/assets/img/check_security_cookie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/check_security_cookie.jpg -------------------------------------------------------------------------------- /src/assets/img/code_stack_heap_allocate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/code_stack_heap_allocate.jpg -------------------------------------------------------------------------------- /src/assets/img/dep_before_after_process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/dep_before_after_process.jpg -------------------------------------------------------------------------------- /src/assets/img/dep_protect_virus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/dep_protect_virus.png -------------------------------------------------------------------------------- /src/assets/img/detect_it_easy_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/detect_it_easy_screenshot.jpg -------------------------------------------------------------------------------- /src/assets/img/dnspy_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/dnspy_screenshot.png -------------------------------------------------------------------------------- /src/assets/img/exeinfo_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/exeinfo_screen.png -------------------------------------------------------------------------------- /src/assets/img/exeinfope_screen_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/exeinfope_screen_all.png -------------------------------------------------------------------------------- /src/assets/img/gs_logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/gs_logic.png -------------------------------------------------------------------------------- /src/assets/img/head_spray_logic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/head_spray_logic.jpg -------------------------------------------------------------------------------- /src/assets/img/ilspy_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/ilspy_screenshot.png -------------------------------------------------------------------------------- /src/assets/img/mhs_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/mhs_screenshot.jpg -------------------------------------------------------------------------------- /src/assets/img/odbg64_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/odbg64_screenshot.png -------------------------------------------------------------------------------- /src/assets/img/popup_buffer_overrun_detected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/popup_buffer_overrun_detected.png -------------------------------------------------------------------------------- /src/assets/img/shellcode_encode_decode_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/shellcode_encode_decode_code.jpg -------------------------------------------------------------------------------- /src/assets/img/shellcode_encode_decode_process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/shellcode_encode_decode_process.jpg -------------------------------------------------------------------------------- /src/assets/img/stack_overflow_model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/stack_overflow_model.jpg -------------------------------------------------------------------------------- /src/assets/img/vs_aslr_enable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/vs_aslr_enable.jpg -------------------------------------------------------------------------------- /src/assets/img/vs_cfg_guard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/vs_cfg_guard.png -------------------------------------------------------------------------------- /src/assets/img/vs_compile_option_gs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/vs_compile_option_gs.jpg -------------------------------------------------------------------------------- /src/assets/img/win_bin_safeseh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/win_bin_safeseh.jpg -------------------------------------------------------------------------------- /src/assets/img/win_debug_common_methods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/win_debug_common_methods.jpg -------------------------------------------------------------------------------- /src/assets/img/win_option_enable_dep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/assets/img/win_option_enable_dep.jpg -------------------------------------------------------------------------------- /src/basic_knowledge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/basic_knowledge/README.md -------------------------------------------------------------------------------- /src/basic_knowledge/executable_file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/basic_knowledge/executable_file/README.md -------------------------------------------------------------------------------- /src/basic_knowledge/language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/basic_knowledge/language/README.md -------------------------------------------------------------------------------- /src/basic_knowledge/language/assembly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/basic_knowledge/language/assembly/README.md -------------------------------------------------------------------------------- /src/basic_knowledge/language/assembly/arm.md: -------------------------------------------------------------------------------- 1 | # ARM汇编语言 2 | -------------------------------------------------------------------------------- /src/basic_knowledge/language/assembly/x86.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/basic_knowledge/language/assembly/x86.md -------------------------------------------------------------------------------- /src/basic_knowledge/system_arch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/basic_knowledge/system_arch/README.md -------------------------------------------------------------------------------- /src/basic_knowledge/system_arch/arm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/basic_knowledge/system_arch/arm.md -------------------------------------------------------------------------------- /src/basic_knowledge/system_arch/heap_stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/basic_knowledge/system_arch/heap_stack.md -------------------------------------------------------------------------------- /src/basic_knowledge/system_arch/register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/basic_knowledge/system_arch/register.md -------------------------------------------------------------------------------- /src/basic_knowledge/system_arch/x86.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/basic_knowledge/system_arch/x86.md -------------------------------------------------------------------------------- /src/bin_security_overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/bin_security_overview/README.md -------------------------------------------------------------------------------- /src/multi_plat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/multi_plat/README.md -------------------------------------------------------------------------------- /src/multi_plat/security_mechanism/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/multi_plat/security_mechanism/README.md -------------------------------------------------------------------------------- /src/multi_plat/security_mechanism/aslr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/multi_plat/security_mechanism/aslr.md -------------------------------------------------------------------------------- /src/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/README.md -------------------------------------------------------------------------------- /src/windows/attack_tech/README.md: -------------------------------------------------------------------------------- 1 | # 攻击技术 2 | -------------------------------------------------------------------------------- /src/windows/attack_tech/buffer_overrun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/attack_tech/buffer_overrun.md -------------------------------------------------------------------------------- /src/windows/attack_tech/heap_spray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/attack_tech/heap_spray.md -------------------------------------------------------------------------------- /src/windows/attack_tech/rop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/attack_tech/rop.md -------------------------------------------------------------------------------- /src/windows/attack_tech/shell_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/attack_tech/shell_code.md -------------------------------------------------------------------------------- /src/windows/security_mechanism/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/security_mechanism/README.md -------------------------------------------------------------------------------- /src/windows/security_mechanism/cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/security_mechanism/cfg.md -------------------------------------------------------------------------------- /src/windows/security_mechanism/dep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/security_mechanism/dep.md -------------------------------------------------------------------------------- /src/windows/security_mechanism/gs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/security_mechanism/gs.md -------------------------------------------------------------------------------- /src/windows/security_mechanism/safeseh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/security_mechanism/safeseh.md -------------------------------------------------------------------------------- /src/windows/security_mechanism/sehop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/security_mechanism/sehop.md -------------------------------------------------------------------------------- /src/windows/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/README.md -------------------------------------------------------------------------------- /src/windows/tools/bin_tool/010editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/bin_tool/010editor.md -------------------------------------------------------------------------------- /src/windows/tools/bin_tool/README.md: -------------------------------------------------------------------------------- 1 | # 二进制编辑工具 2 | -------------------------------------------------------------------------------- /src/windows/tools/detect_packer/README.md: -------------------------------------------------------------------------------- 1 | # 查壳工具 2 | -------------------------------------------------------------------------------- /src/windows/tools/detect_packer/detect_it_easy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/detect_packer/detect_it_easy.md -------------------------------------------------------------------------------- /src/windows/tools/detect_packer/peid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/detect_packer/peid.md -------------------------------------------------------------------------------- /src/windows/tools/executable_tool/README.md: -------------------------------------------------------------------------------- 1 | # 可执行文件工具 2 | -------------------------------------------------------------------------------- /src/windows/tools/executable_tool/decompiler/README.md: -------------------------------------------------------------------------------- 1 | # 反编译器 2 | 3 | -------------------------------------------------------------------------------- /src/windows/tools/executable_tool/decompiler/dnspy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/executable_tool/decompiler/dnspy.md -------------------------------------------------------------------------------- /src/windows/tools/executable_tool/decompiler/ilspy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/executable_tool/decompiler/ilspy.md -------------------------------------------------------------------------------- /src/windows/tools/executable_tool/disassembler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/executable_tool/disassembler/README.md -------------------------------------------------------------------------------- /src/windows/tools/executable_tool/disassembler/udis86.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/executable_tool/disassembler/udis86.md -------------------------------------------------------------------------------- /src/windows/tools/executable_tool/exeinfo_pe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/executable_tool/exeinfo_pe.md -------------------------------------------------------------------------------- /src/windows/tools/modify_memory/README.md: -------------------------------------------------------------------------------- 1 | # 内存修改工具 2 | -------------------------------------------------------------------------------- /src/windows/tools/modify_memory/ce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/modify_memory/ce.md -------------------------------------------------------------------------------- /src/windows/tools/modify_memory/mhs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/modify_memory/mhs.md -------------------------------------------------------------------------------- /src/windows/tools/modify_memory/modifymemory.md: -------------------------------------------------------------------------------- 1 | # ModifyMemory 2 | -------------------------------------------------------------------------------- /src/windows/tools/reverse_engine/README.md: -------------------------------------------------------------------------------- 1 | # 逆向工具 2 | -------------------------------------------------------------------------------- /src/windows/tools/reverse_engine/ida.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/reverse_engine/ida.md -------------------------------------------------------------------------------- /src/windows/tools/reverse_engine/ollydbg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/reverse_engine/ollydbg.md -------------------------------------------------------------------------------- /src/windows/tools/reverse_engine/windbg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/reverse_engine/windbg.md -------------------------------------------------------------------------------- /src/windows/tools/static_detect/README.md: -------------------------------------------------------------------------------- 1 | # 静态安全检工具 2 | -------------------------------------------------------------------------------- /src/windows/tools/static_detect/winchecksec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/explore_underlying_mechanism_binary_security/HEAD/src/windows/tools/static_detect/winchecksec.md -------------------------------------------------------------------------------- /src/windows/tools/windows/README.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------