Is it possible to view a .dll file

by vjboc
7 replies
Is it possible to view a .dll file? Is it possible to open up a .dll file and change some coding?
#dll #file #view
  • Profile picture of the author ussher
    The structure of the question begs the response 'no they're invisible....' but thats not very helpful or useful....

    Free Hex Editor Binary File Editing Software for Windows

    That link is to a free hex editor that says it can edit .dll files.

    Decades ago I used to use a hex editor to alter the saved character files of some games i played. looking at a file in Hex is not very informative, but with an editor and a saved game file you can just mess with stats and come out with random stuff in your inventory.

    If your wanting to alter it to do something useful, maybe a hex editor is not the best choice. See how it goes.
    Signature

    "Jamroom is a Profile Centric CMS system suitable as a development framework for building entire communities. Highly modular in concept. Suitable for enterprise level development teams or solo freelancers."

    - jamroom.net
    Download Jamroom free: Download
    {{ DiscussionBoard.errors[5504922].message }}
  • Profile picture of the author Anthoni
    On a technical you can view .dll files using a normal notepad or text editor, but you would not make sense of it LOL.

    You could always do what ussher suggested and use a Hex Editor. However, it sounds like you are wanting to make changes inside the .dll (trying to crack something), in that case you would need two things :-

    1] Find out what language it was originally coded in,
    2] Get a decompiler for that language and pass your .dll through it.

    Please note that I no way advocate this type of approach. I am only suggesting this on a learning basis.
    {{ DiscussionBoard.errors[5508903].message }}
  • Profile picture of the author tiptopwarriors
    You can edit a lot of dll files using a software "Resource Hacker". Its a free software use it maybe it will help..
    {{ DiscussionBoard.errors[5533027].message }}
    • Profile picture of the author Don Art
      the easiest way is to get the source files - if you can - then you can read and edit the source and recompile (if the edits are minor it might only cost a few bucks on a freelance site to have it done for you)
      {{ DiscussionBoard.errors[5533257].message }}
  • Profile picture of the author automaton
    It's possible to see if you use a decompiler and the dll is not crypted. Can you change something in the dll? Possible, after some heavy reverse engineering.
    {{ DiscussionBoard.errors[5536426].message }}
  • Profile picture of the author windso0
    A DLL is a library file that contains functions for other programs to use. In order for these functions to be run their code must have been compiled. Compiling is the process of taking source code in a language like C++ or Visual Basic which can be read by humans, and converting it into machine code that can be read by a computer processor. As such it is very hard to 'read' DLL files as the actual functional code is machine code. In order to read the source code you would have to attempt to reverse-engineer the machine code. Reverse compilation is touchy legal area which is usually very hard as the machine code may have been written in any high-level language, you would have to find out which one it was written in to have good shot of decompiling it. It would also likely be encoded.
    Signature
    {{ DiscussionBoard.errors[5536688].message }}
  • Profile picture of the author aldemer
    Originally Posted by vjboc View Post

    Is it possible to view a .dll file? Is it possible to open up a .dll file and change some coding?
    I personally use OllyDbg it is a great tools for editing DLL, exe and other files.
    {{ DiscussionBoard.errors[5557083].message }}

Trending Topics