Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Books and shellcode examples [closed]

Tags:

c

shellcode

i read "art of exploitation" and "gray hat hackers".Both these books examples written for x86 systems.i have a centrino laptop and an amd64 pc.I can't make work examples for stack based overflow.

like image 690
Xor Avatar asked Jun 24 '26 16:06

Xor


1 Answers

On 64-bit systems using ASLR, executable space protection makes it far more difficult to execute such attacks. This may explain why you're failing to make them work.

I suggest reading this paper on x86-64 buffer overflow exploits for further information.

like image 178
Mark Mayo Avatar answered Jun 27 '26 08:06

Mark Mayo