Page 1 of 1
About file.dll
Posted: 03 Dec 2023, 13:13
by MohamedBk
Hey everyone, i have a dll file, and i want to know if there any way to see its properties ?
For example: dll file it's from C++ to assembly / it's from c# to assembly / it's from (.) to assembly...
The purpose is i want to edit a dll file, but i don't know how is structured before !
Re: About file.dll
Posted: 02 Jan 2024, 11:21
by ionbastion
Editing a DLL file involves reverse engineering, and it's important to note that modifying a DLL for which you don't have the source code might violate terms of service or licensing agreements. Always make sure you have the right to modify and use the DLL in the way you intend.
Try using a disassembler to convert the machine code (binary
tunnel rush) of the DLL into assembly code. Tools like IDA Pro, Ghidra, or even simple tools like OllyDbg can help with this process.
Re: About file.dll
Posted: 05 Jan 2024, 07:49
by joycewhitmarsh
You can use DLL Export Viewer. DLL Export Viewer is a free utility that displays the list of all exported functions and their virtual memory addresses for the specified DLL files. It can help for you.