摘要: When SEH is used there is a registration process where an exception structure is created for every function as a local variable. The last field of the... 阅读全文
posted @ 2014-07-09 18:02 Daniel King 阅读(299) 评论(0) 推荐(0) 编辑
摘要: daniel@daniel-mint ~/msf/metasploit-framework/tools $ ruby pattern_create.rb 2000Aa0Aa1Aa2Aa3Aa4Aa5Aa6Aa7Aa8Aa9Ab0Ab1Ab2Ab3Ab4Ab5Ab6Ab7Ab8Ab9Ac0Ac1Ac2... 阅读全文
posted @ 2014-07-09 16:27 Daniel King 阅读(1186) 评论(0) 推荐(0) 编辑
摘要: bp ntdll!NtOpenFile ".echo ####################;du poi(ebp+8);.echo ########################;" 阅读全文
posted @ 2014-07-09 15:34 Daniel King 阅读(148) 评论(0) 推荐(0) 编辑
摘要: $ cat ascii.sh dec_count=0while [ $dec_count -lt 256 ]do echo -e "\x$(echo "ibase=10;obase=16;$dec_count" | bc)\c" dec_count=$((dec_coun... 阅读全文
posted @ 2014-07-09 10:48 Daniel King 阅读(410) 评论(0) 推荐(0) 编辑
摘要: Arithmetic in bash is done with $ and double parentheses:echo "$(($num1+$num2))"Or $ and square brackets:echo "$[$num1+$num2]"You can assign from that... 阅读全文
posted @ 2014-07-09 10:21 Daniel King 阅读(173) 评论(0) 推荐(0) 编辑
摘要: cat test.log | tr -d '\r' | hexdump -C | tail 阅读全文
posted @ 2014-07-09 09:55 Daniel King 阅读(886) 评论(0) 推荐(0) 编辑