Nov 22, 2009
Pages: 1, 2, 3, 4

Where Can I Find An .exe Editor

free web hosting

Read Latest Entries..: (Post #38) by yordan on Oct 21 2009, 05:32 PM.
QUOTE (starscream @ Oct 21 2009, 07:28 PM) *Ahem* what ? Is flaming allowed ? You're not supposed to reply like this. You'll be in negative mycents because of this.You are right, starscream, flaming is forbidden on this forum.The flaming answer has been removed and that guy has got a warning and a flaming PM and is very close to be banned....
read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion & Free Web Hosting > Computers & Tech > Programming

Where Can I Find An .exe Editor

eldar
I will to edit exe. files but i donīt now with what software.
Have you any link for me.

P.S sory for my bad English

Comment/Reply (w/o sign-up)

miCRoSCoPiC^eaRthLinG
There's no editor for .exe files that I know of. The only way you can edit a .exe is if you are a hardcore assembly language guy - coz that's what .exe's are decompiled to, when you open them up using a debugger. Some advanced debuggers can give you an output in a pseudo-algorhythmic language, but that's as far as they go. You cannot simply open up a .exe like a textfile and start editing.

Comment/Reply (w/o sign-up)

finaldesign
and you can try also with softice or something like win32diassembler and see what you will get.. smile.gif if you don't know much about debbuging and reverse engeneering you would not get too much of it...

Comment/Reply (w/o sign-up)

Jeigh
*shudders* assembler still causes me to wake up screaming in the middle of the night :| stupid assembler...

actually it's not that bad for low end stuff, but if you are planning on decompiling some huge scale program into assembler and editing it.... good freakin luck

Comment/Reply (w/o sign-up)

PureHeart
Wait, if you want to change something in an EXE file, you may be able to do this by changing its resource. There's a program called "Resource Hacker". It allow you to make some simple modification in the resources of EXE file. This way, you can change the interface of program in that exe file. You may also want to translate a program to your native language.

Comment/Reply (w/o sign-up)

miCRoSCoPiC^eaRthLinG
QUOTE(PureHeart @ Dec 28 2005, 07:06 PM)
Wait, if you want to change something in an EXE file, you may be able to do this by changing its resource. There's a program called "Resource Hacker". It allow you to make some simple modification in the resources of EXE file. This way, you can change the interface of program in that exe file. You may also want to translate a program to your native language.
*




See with resource hacker you can only replace or extract Graphics ( gif/jpg or ico ) and String Tables in a .exe - you won't be able modify the actual code in any way. And if the .exe doesn't employ a separate string table, then you've to hunt down each and every string all throughout the .exe in order to port it to some other world language - it's a hefty task and quite often will corrupt the .exe, as not all character-sets contain chars in the same decimal range. Most of the East Asian languages constitute the DBCS (Double Byte Character Set) letters and numbers, and trying to replace standard ascii characters in a .exe with them will entirely screw up your .exe. Believe me - I've tried this extensively and almost always failed.

 

 

 


Comment/Reply (w/o sign-up)

bmpk
Yeah, as it was said, there is really no way to "edit" .exe files very well. The reason is they are compiled (probablly in c++) and there is (real) way to decompile it back into C++ to edit. However, reverse engineering can get you pretty far, depending on what you do. The problem is is that it is extremely complicated and requires vast knowledge of ASM. However, if you plan to start doing this, google some reverse engineering tutorials. Also, I reccomend that you start with "OllyDbg", which is a very good and basic Debugger. It can be found at: www.ollydbg.de

Comment/Reply (w/o sign-up)

szupie
When he said exe editors, I thought he meant hex editors. Apparently, I'm wrong (or just different?). If you want to edit a compiled exe file, you can use XVI32, a free hex editor. A compiled exe file looks very "encrypted", but you can use the editor to change tiny parts of an exe.

Comment/Reply (w/o sign-up)

CaptainRon
Well I guess the replies above have made it quite clear that exe files are no ASCII files that we can edit simply. But yes "Resource Hacking" is quite interesting. The interesting part is the Dialog box editing. You can change titles and graphics of Dialog resources quite neatly! Usually you can delete the "30 Day expiration" dialogs and simply make the s/w skip over the limitation. I did it with Guitar FX Box 1.5. Worked great.
Usually even the XP themes are made that way. You can Resource Hack the LogonUI.exe file to show ur own graphics...

Enjoy! but be careful that none of this is legal...

Comment/Reply (w/o sign-up)

HellFire121
Usually the only thing in a .exe file is strings associated with the program and a built in image for the icon at various colour bits and sizes. If you want to get into a programs files you will need to use some sort of resource hacker mentioned by PureHeart, but it is definitely not easy, very complicated and time consuming. In my opinion unless it is absolutely necessary, don't both with it.

Comment/Reply (w/o sign-up)

Latest Entries

yordan
QUOTE (starscream @ Oct 21 2009, 07:28 PM) *
*Ahem* what ? Is flaming allowed ? You're not supposed to reply like this. You'll be in negative mycents because of this.

You are right, starscream, flaming is forbidden on this forum.
The flaming answer has been removed and that guy has got a warning and a flaming PM and is very close to be banned.

Comment/Reply (w/o sign-up)

starscream
*Ahem* what ? Is flaming allowed ? You're not supposed to reply like this. You'll be in negative mycents because of this.

Comment/Reply (w/o sign-up)

iGuest
Where Can I Find An .exe Editor
Where Can I Find An .exe Editor

Replying to brasil If you have an msi file, then you can use orca.Msi, to change the certain values and making an installtion silent and much more -reply by Acretian

Comment/Reply (w/o sign-up)

iGuest
change the open in a program
Where Can I Find An .exe Editor

Hey I was wondering ok there is a demo of this program and the demo is exactly the same as the full but you cant open your saved file again u can only open demo file types I was thinking if u could get into that and change it so it opened the usual file types could that be changed in the program? like just changing the file type its saved is that really complicated or not 

there was that idea or to change the file type on saving it or even a converter to change it from that file type to the demo version file type?


Comment/Reply (w/o sign-up)

starscream
@Brasil, modifying installation of antivirus, antispyware softwares is considered under "reverse engineer illegal case". So i don't think you'll get that help on most of the forums. But if you're interested in CCleaner or similar freeware stuff for installation modification then you can ask respective freeware authors. They'll surely help you in case of silent installation. Also if you're interested in silent installation without nags for software like antivirus/spyware then why not ask those companies for help ? These companies have such custom network/offline installers that one can do to perform unattended installation. Atleast NOD32, Mcafee, Kaspersky do have such enterprise unattended installation support.

Comment/Reply (w/o sign-up)


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Pages: 1, 2, 3, 4
Similar Topics

Keywords : Exe Editor


    Looking for exe, editor

See Also,

*SIMILAR VIDEOS*
Searching Video's for exe, editor
advertisement



Where Can I Find An .exe Editor

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com