opc0d3 Posted August 4, 2017 Posted August 4, 2017 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...
Bob Dole Posted August 16, 2017 Posted August 16, 2017 This is called DLL proxying There is an article explaining it here https://www.codeproject.com/Articles/16541/Create-your-Proxy-DLLs-automatically
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now