Bash set --
摘要:set [options] [argumets] linux-set [options] are settings or flags that are set or unset in the Bash shell env Set an option by using a minus sign (-)
阅读全文
windbg 使用必备
摘要:pseudo-register 伪寄存器 $scopeip 当前local context的指令指针 $exentry 程序的入口点, 如在 disassembly窗口输入@$exentry 可快速定位到程序入口
阅读全文
Intel x86 多字节NOP指令
摘要:多字节NOP指令可用于循环体之前的对齐, 来提高程序的性能, http://www.felixcloutier.com/x86/NOP.html对齐如下表:Length Assembly Byte Sequence 1 byte nop 90 2 bytes 66 nop 66 90 3 bytes
阅读全文