摘要:
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... 阅读全文
摘要:
daniel@daniel-mint ~/msf/metasploit-framework/tools $ ruby pattern_create.rb 2000Aa0Aa1Aa2Aa3Aa4Aa5Aa6Aa7Aa8Aa9Ab0Ab1Ab2Ab3Ab4Ab5Ab6Ab7Ab8Ab9Ac0Ac1Ac2... 阅读全文
摘要:
bp ntdll!NtOpenFile ".echo ####################;du poi(ebp+8);.echo ########################;" 阅读全文
摘要:
$ 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... 阅读全文
摘要:
Arithmetic in bash is done with $ and double parentheses:echo "$(($num1+$num2))"Or $ and square brackets:echo "$[$num1+$num2]"You can assign from that... 阅读全文
摘要:
cat test.log | tr -d '\r' | hexdump -C | tail 阅读全文