Post4VPS Forum | Free VPS Provider
How to manage a .exe application - Printable Version

+- Post4VPS Forum | Free VPS Provider (https://post4vps.com)
+-- Forum: General Chat (https://post4vps.com/Forum-General-Chat)
+--- Forum: General (https://post4vps.com/Forum-General)
+--- Thread: How to manage a .exe application (/Thread-How-to-manage-a-exe-application)

Pages: 1 2


How to manage a .exe application - Rehan - 09-07-2018

Hello Guys, I want to edit a application.I searched at the google but the software i found only edits there icon and some text.I want to edit codes.I am tired of google searching now so asking here.Tell me if you guys know about it.


RE: How to manage a .exe application - Amresh - 09-07-2018

Then you should now at least basics about C# and C++ languages (also JAVA) and how to compile and decompile them....maybe then you could make your own applications or modify others one!!!!
Still there are many languages in which application can be written like python....most used language for hackers!!!! It's very interesting language and easy to understand!!!! Smile


RE: How to manage a .exe application - Mashiro - 09-07-2018

You want to modify code inside executables? This is not entirely possible. Executables are machine code and not any of the programming languages the humanity knows. Compilers translate the programming languages we know into machine code and provide these as executable files.

I said "not entirely" because there are certain things that can be edited through Hexediting programs and Reverse Engineering like text parts or hex codes. Reverse Engineering is however a really hard thing and requires far more than just programming language knowledge. You need a lot of experience to reverse engineer the source code of a application from its files.

There are however programming languages like Python or Java that are compiled at runtime. So you can still see the source code in the respective .py and .java files. These files are sources for the runtime compilation process. Programs written in these languages aren't stored as .exe executables.


RE: How to manage a .exe application - Rehan - 09-07-2018

(09-07-2018, 07:35 AM)Amresh Wrote: Then you should now at least basics about C# and C++ languages (also JAVA) and how to compile and decompile them....maybe then you could make your own applications or modify others one!!!!
Still there are many languages in which application can be written like python....most used language for hackers!!!! It's very interesting language and easy to understand!!!! Smile

Thanks for the reply. btw is that answer of my question? No that is not my answer.I know about programming languages and i will learn them.For now i want to edit a program.So i were asking about how to get codes of a exe application.

(09-07-2018, 09:35 AM)Hidden Refuge Wrote: You want to modify code inside executables? This is not entirely possible. Executables are machine code and not any of the programming languages the humanity knows. Compilers translate the programming languages we know into machine code and provide these as executable files.

I said "not entirely" because there are certain things that can be edited through Hexediting programs and Reverse Engineering like text parts or hex codes. Reverse Engineering is however a really hard thing and requires far more than just programming language knowledge. You need a lot of experience to reverse engineer the source code of a application from its files.

There are however programming languages like Python or Java that are compiled at runtime. So you can still see the source code in the respective .py and .java files. These files are sources for the runtime compilation process. Programs written in these languages aren't stored as .exe executables.

Thanks for the such a great information.Actually i want to edit a Multiplayer game trainer.I am not sure but trainer is very simply coded.I think i can edit that trainer because i can easily script multiplayer server script.So i was asking about accessing the codes.


RE: How to manage a .exe application - Mashiro - 09-07-2018

It depends in which language the trainer has been written again. If it is a language that translates into machine code it will be hard. You can try to open the .exe file of it with a Hex editor and see what you can find. Otherwise you will need reverse engineering software and knowledge in that field or good learning resources


RE: How to manage a .exe application - coreyman - 09-07-2018

(09-07-2018, 02:37 PM)Rehan Wrote: Thanks for the reply. btw is that answer of my question? No that is not my answer.I know about programming languages and i will learn them.For now i want to edit a program.So i were asking about how to get codes of a exe application.


Thanks for the such a great information.Actually i want to edit a Multiplayer game trainer.I am not sure but trainer is very simply coded.I think i can edit that trainer because i can easily script multiplayer server script.So i was asking about accessing the codes.

I still do not think you understand. The code has been compiled into a form that is not human readable/modifiable. If it was so easy to just modify compiled code don't you think we would all be doing it?


RE: How to manage a .exe application - Golden - 09-08-2018

You can use a Hex editor program if you want to edit parts of an .exe or you can use a de-compiler.


RE: How to manage a .exe application - Rehan - 09-10-2018

(09-08-2018, 05:35 PM)Golden Wrote: You can use a Hex editor program if you want to edit parts of an .exe or you can use a de-compiler.

Ok. Thanks for your reply. I shall try to search de-compiler if it work. Or i shall try coding my own.


RE: How to manage a .exe application - Amresh - 09-11-2018

hey according to @"Hidden Refuge" and @coreyman you cannot decompile every program available on the net or in your computer!!!!
Some of them are even encrypted so that no one can get their source code!!
OTHERWISE,,,, Everyone should be a developer then!!!!HAHA
so there no decompiler till this time which can decompile the whole program!!!!
Yes It can Decompile its some parts!!!!!Maybe you should gather more information from google!!!!!


RE: How to manage a .exe application - Vuluts - 09-11-2018

@Rehan you can try using OllyDbg or VS some part of the exe can be modified.