If I have some information like:
AppName: myapp.exe
AppVer: x.x.x.x
ModName: kernel32.dll
ModVer: 5.1.2600.3541
Offset: 00012a6b
Is it possible for me to determine what function exists at offset 00012a6b in kernel32.dll?
If I have some information like:
AppName: myapp.exe
AppVer: x.x.x.x
ModName: kernel32.dll
ModVer: 5.1.2600.3541
Offset: 00012a6b
Is it possible for me to determine what function exists at offset 00012a6b in kernel32.dll?
they're called dll viewer programs. this is just one example from a quick websearch. but yes they exist
start windbg, load your app and execute
ln address
in the debugger and it will print the closest symbol.