Posted August 4, 20178 yr Hello, folks! Here me again.. I'm trying to implement PEB hooking, but as you may know we have first to export the same symbol as the other dll exports... So i'm trying to do this with nasm. I dind't find yet a way to create a dll with def files on alink.. The idea is to import the dll inside the nasm.. define all the symbols my_OriginalDlllSymbol... inside all these fake symbols JMP to the original. I couldn't find a way to do this. NASM doesn't offer even any type of aliases to the imported symbol. ALINK seem doesn't support def files. EXPORTS my_OriginalDlllSymbol = OriginalDlllSymbol Any ideas ? Thanks in advance...
August 16, 20178 yr This is called DLL proxying There is an article explaining it here https://www.codeproject.com/Articles/16541/Create-your-Proxy-DLLs-automatically
Create an account or sign in to comment