|
|
Reverse Engineering is the process of looking at compiled programs and figuring out how they work. Windows - dumpbin
- This utility will let you see which calls an executable is making. For example, if it calls functions from winsock, MPR.DLL, or netapi32.dll, then it is probably networking enabled. Comes with SDK or Visual C++.
- sysinternals.com
- This site has numerous programs for delving into the system internals of Windows NT and Windows 9x.
- Decompilation (1)
Converting the compiled code back into easier-to-read
code that can be manipulated.
| |
|