Welcome Guest ( Log In | Register )



3 Pages V   1 2 3 >  
Reply to this topicStart new topic
> Where Can I Find An .exe Editor
eldar
post Dec 27 2005, 08:10 AM
Post #1


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 2
Joined: 31-August 05
Member No.: 8,222



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

This post has been edited by miCRoSCoPiC^eaRthLinG: Dec 27 2005, 09:13 AM
Go to the top of the page
 
+Quote Post
miCRoSCoPiC^eaRt...
post Dec 27 2005, 09:11 AM
Post #2


PsYcheDeLiC dR3aMeR
Group Icon

Group: Admin
Posts: 2,242
Joined: 29-January 05
From: Nakorn Chaisri, Thailand
Member No.: 2,411



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.
Go to the top of the page
 
+Quote Post
finaldesign
post Dec 27 2005, 11:08 AM
Post #3


[+] Graphic Designer [+]
Group Icon

Group: Members
Posts: 614
Joined: 6-April 05
From: Croatia
Member No.: 3,666



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...
Go to the top of the page
 
+Quote Post
Jeigh
post Dec 27 2005, 04:25 PM
Post #4


Whitest Black Mage
Group Icon

Group: [MODERATOR]
Posts: 1,303
Joined: 20-May 05
From: NB, Canada
Member No.: 5,281



*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
Go to the top of the page
 
+Quote Post
PureHeart
post Dec 28 2005, 12:06 PM
Post #5


Premium Member
Group Icon

Group: Members
Posts: 209
Joined: 7-October 05
From: Đā Nẵng City - Việt Nam
Member No.: 8,966



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.
Go to the top of the page
 
+Quote Post
miCRoSCoPiC^eaRt...
post Dec 28 2005, 12:43 PM
Post #6


PsYcheDeLiC dR3aMeR
Group Icon

Group: Admin
Posts: 2,242
Joined: 29-January 05
From: Nakorn Chaisri, Thailand
Member No.: 2,411



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.
Go to the top of the page
 
+Quote Post
bmpk
post Jan 3 2006, 08:01 PM
Post #7


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 1
Joined: 3-January 06
Member No.: 10,461



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
Go to the top of the page
 
+Quote Post
szupie
post Jan 3 2006, 10:11 PM
Post #8


S.P.A.M.S.W.A.T.
Group Icon

Group: Members
Posts: 814
Joined: 22-January 05
From: San Antonio, Texas (No, I'm not dumb. I just moved here...)
Member No.: 2,284



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.
Go to the top of the page
 
+Quote Post
CaptainRon
post Feb 22 2006, 07:56 PM
Post #9


Premium Member
Group Icon

Group: Members
Posts: 238
Joined: 9-September 05
Member No.: 8,400



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...
Go to the top of the page
 
+Quote Post
HellFire121
post Feb 23 2006, 05:00 AM
Post #10


Premium Member
Group Icon

Group: [HOSTED]
Posts: 438
Joined: 28-January 06
Member No.: 10,925



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.
Go to the top of the page
 
+Quote Post

3 Pages V   1 2 3 >
Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Online HTML/PHP Editor: Edit File In Browser!(8)
  2. A Xml Editor?(6)
  3. Whats The Best Mp3 Tag Editor Out There ?(8)
  4. Context Programmer's Editor(2)
  5. Microsofts Acrylic(1)
  6. Php Designer 2005(1)
  7. Html Editor(11)
  8. Php Designer 2005(0)
  9. Whats A Good Graphics Editor For Solaris 10 ?(8)
  10. Paint.NET Project - A Free Picture Editor(2)
  11. Performancing For Firefox - Blogger's Delight !(2)
  12. FaceFilter Studio 1.0518.1(0)
  13. Any Ideas About A Free Online Page Editor ?(7)
  14. HTML Editor(23)
  15. Looking For A Great Source Code Editor For(5)
  1. Any BBCode Editor Around?(1)
  2. Zoho Writer(2)
  3. Where Can I Get Microsoft Photo Editor?(11)
  4. PHP Designer Vs. HTML Kit(7)
  5. CSS Editor(11)
  6. OpenWYSIWYG Instead Of RichTextEditor(3)
  7. Php - Browser Based Editor(3)
  8. Pagebreeze: The Free Html Editor!(7)
  9. Which Web Editor Software?(22)
  10. Greenfish Icon Editor Pro(12)
  11. What Is A Good Photoeditor?(6)
  12. Picnik, An Online Photo Editor(6)
  13. Is There A Php Editor That Runs On Pclinuxos Or Ubuntu?(7)


 



- Lo-Fi Version Time is now: 9th July 2008 - 04:42 AM