Skip to content

Protection ASLR, Bit NX, DEP, SafeSEH, Kernel patches and Safe coding

Notifications You must be signed in to change notification settings

samglish/ASLR_DEP_BitNX

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 

Repository files navigation

ASLR_DEP_BitNX

Protection ASLR, Bit NX, DEP, SafeSEH, Kernel patches and Safe coding

protection methods

  • ASLR : Adress Space Layout Randomization
  • Bit NX : memory page "not executable"
  • DEP (Data execution prevention), SafeSEH, Kernel patches
  • Safe coding

ASLR


is a technique for randomly placing data areas in virtual memory. Typically these are the heap, stack, and library positions.

This process makes it possible to limit the effects of buffer overflow attacks, for example.

It consists of making the configuration of processes “random”, by placing different basic elements in variable locations.

To list the set of shared libraries.

ldd /bin/sh

output

linux-vdso.so.1 (0x00007fff6a9be000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f0a7eb0e000)
/lib64/ld-linux-x86-64.so.2 (0x00007f0a7ed19000)

when we execute the code again the address changes. 0x00007fff6a9be000,0x00007f0a7eb0e000,0x00007f0a7ed19000

ldd /bin/sh

output

linux-vdso.so.1 (0x00007ffce3302000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f0147830000)
/lib64/ld-linux-x86-64.so.2 (0x00007f0147a3b000)

DEP


Data Execution Prevention (DEP) is a security feature built into many modern operating systems such as Linux, Mac OS X, iOS, Microsoft Windows and Android.

It is intended to prevent the execution of code from blocks of memory expected to contain data in order to lower the probability of a successful buffer overflow attack.

Bit NX


It is an executable space protection technique used in processors to dissociate memory areas containing instructions, therefore executable, from areas containing data, protecting the system from viruses and Trojan horses using buffer overflow vulnerabilities. .

About

Protection ASLR, Bit NX, DEP, SafeSEH, Kernel patches and Safe coding

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages