/////////////////////////////////////////////////
///Reverse Engineering Tools//////
////////////////////////////////////////////////
nm
====
* local and library function and local function & global variables
* Usage:
nm binary_file(ELF file)
strings
=======
* Print the strings of printable characters in files
* Usage:
strings binary_file(ELF file)
Ltrace
======
* Traces the calls to the library function
* It executes the program in that process
* Usage:
ltrace binary_file(ELF file)
Strace
======
* Trace the system calls made by the program
i.e any library fn , system calls
* Usage:
strace binary_file(ELF file)
src:http://www.thegeekstuff.com/2012/03/reverse-engineering-tools/
///Reverse Engineering Tools//////
////////////////////////////////////////////////
nm
====
* local and library function and local function & global variables
* Usage:
nm binary_file(ELF file)
strings
=======
* Print the strings of printable characters in files
* Usage:
strings binary_file(ELF file)
Ltrace
======
* Traces the calls to the library function
* It executes the program in that process
* Usage:
ltrace binary_file(ELF file)
Strace
======
* Trace the system calls made by the program
i.e any library fn , system calls
* Usage:
strace binary_file(ELF file)
src:http://www.thegeekstuff.com/2012/03/reverse-engineering-tools/
Comments
Post a Comment