ok thought i would start to learn exploiting and such , and wanted to know as much as possible
anyway i want to know something with converting hex shellcode back to asm
example
"\xEB\x10\x5B\x4B\x33\xC9\x66\xB9\x25\x01\x80\x34\x0B\x99\xE2\xFA"
=
EB 10 5B 4B 33 C9 66 B9 25 01 80 34 0B 99 E2 FA
then open with a program debugger called olly , paste it to hex window
find the offset lines and it says in asm
00400850 EB 10 JMP SHORT 3in1.00400862
00400852 5B POP EBX
00400853 4B DEC EBX
00400854 33C9 XOR ECX,ECX
00400856 66:B9 2501 MOV CX,125
0040085A 80340B 99 XOR BYTE PTR DS:[EBX+ECX],99
0040085E ^E2 FA LOOPD SHORT 3in1.0040085A
what i want to know is , when you try to find a bufferflow do you open the exe your trying to exploit with the debugger?




