Skip to content

A place for all my tools and scripts while learning binary exploitation

Notifications You must be signed in to change notification settings

h8handles/Binary-Exploitation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Binary-Exploitation

A place for all my tools and scripts while learning binary exploitation

Notes

gdb-pwndbg

Commands

break main can also be used with other functions

c will continue a program

n will go to the next instruction

info stack print current stack values must run program first

info functions list all functions

break *0x0000000abc breaks at a specific memory address

Compile binaries with no protections enabled

gcc vuln.c -o vuln -fno-stack-protector -no-pie -z execstack -z norelro

Disable ASLR

echo 0 | sudo tee /proc/sys/kernel/randomize_va_space

About

A place for all my tools and scripts while learning binary exploitation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages