var fDesc=new Array(); fDesc[0] = "DLL Relocation Finder is the command-line Tool to detect and list Relocated DLLs in the Process.


Every DLL specifies a base address where it should be mapped during load time. However if that address is occupied by some other DLL then this DLL has to be relocated to new base address. This is called DLL Relocation or DLL Rebasing. This relocation process also happens for ASLR enabled modules.

In such cases, DLL Relocation Finder helps you to find these relocated DLLs and their new addresses. It also provides option to list only relocated or non-relocated or both type of DLLs.


Being a command-line tool makes it easy to automate through scripting. Also it can be useful tool for researchers & developers.


DLL Relocation Finder is fully portable and contain separate versions for 32-bit and 64-bit systems. It works on all the platforms starting from Windows XP to Windows 8."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }