Open .dll files

04/23/2019 18:08 meliza#1
hi everyone :D

i want ask how to open .dll files
please anyone can tell me
it will be nice

bad english
sorry for it :handsdown::handsdown::handsdown::handsdown:
04/25/2019 23:50 madmerlin3009#2
Quote:
Originally Posted by meliza View Post
hi everyone :D

i want ask how to open .dll files
please anyone can tell me
it will be nice

bad english
sorry for it :handsdown::handsdown::handsdown::handsdown:
.dll (Dynamic Link Library) you cannot open directly.

These are user defined functions specifically made to be called from an executable application.

There is an application called .net reflect which will disassemble the dll. But i am very certain alot of coders will obscure the files using an application called confusex. So unless you are a reverse engineer, i would forget it
04/26/2019 12:50 Adek#3
Quote:
Originally Posted by madmerlin3009 View Post
.dll (Dynamic Link Library) you cannot open directly.

These are user defined functions specifically made to be called from an executable application.

There is an application called .net reflect which will disassemble the dll. But i am very certain alot of coders will obscure the files using an application called confusex. So unless you are a reverse engineer, i would forget it
Won't work for non-.NET DLLs. Same goes for dotPeek or similar - it all works just fine, but for the languages that use some kind of an intermediate code (e.g. bytecode for Java, CIL for .NET). The DLLs written in C++ may be reverse-engineered, though you need some knowledge about assembler to actually understand anything deep inside.