canadian397 Posted June 18, 2004 Share Posted June 18, 2004 need a program to edit a simple .exe file, please help! Link to comment Share on other sites More sharing options...
0 Gibwar Posted June 18, 2004 Share Posted June 18, 2004 What kind of editing? Hex editing? Resource editing? Heck, even notepad might be able to do what you need to do. -jbenhm Link to comment Share on other sites More sharing options...
0 canadian397 Posted June 18, 2004 Author Share Posted June 18, 2004 What kind of editing? Hex editing? Resource editing? Heck, even notepad might be able to do what you need to do.-jbenhm ummmm, no clue. Notepad doesn't work though, i already tried Link to comment Share on other sites More sharing options...
0 Banjo Posted June 18, 2004 Share Posted June 18, 2004 What do you need to change? Link to comment Share on other sites More sharing options...
0 icecaveman Posted June 18, 2004 Share Posted June 18, 2004 PE Explorer is my favorite Link to comment Share on other sites More sharing options...
0 Gibwar Posted June 18, 2004 Share Posted June 18, 2004 ummmm, no clue. Notepad doesn't work though, i already tried What exactly are you trying to change? Link to comment Share on other sites More sharing options...
0 canadian397 Posted June 18, 2004 Author Share Posted June 18, 2004 What exactly are you trying to change? ok, it's that stupid 20kb program bouncing from MSN user, to msn user and it changes your msn name to "I've got my period". I need to change the test to something else :shifty: :whistle: Link to comment Share on other sites More sharing options...
0 kjordan2001 Posted June 18, 2004 Share Posted June 18, 2004 You'd need to decompile into assembly or hexedit it. Then edit the assembly and change the string, or if you hexedited it, find the hex that corresponds to the string and change it. Link to comment Share on other sites More sharing options...
0 anthonycara Posted June 18, 2004 Share Posted June 18, 2004 yeah that's the only way to do it. There is no way to perfectly decompile most modern high-level languages. Link to comment Share on other sites More sharing options...
0 neowin_hipster Posted June 18, 2004 Share Posted June 18, 2004 IF you are asking this question then don't bother. Link to comment Share on other sites More sharing options...
0 John Veteran Posted June 18, 2004 Veteran Share Posted June 18, 2004 ok, it's that stupid 20kb program bouncing from MSN user, to msn user and it changes your msn name to "I've got my period". I need to change the test to something else :shifty: :whistle: I'm not sure what you're talking about :huh: Care to explain? Link to comment Share on other sites More sharing options...
0 kjordan2001 Posted June 18, 2004 Share Posted June 18, 2004 I'm not sure what you're talking about :huh: Care to explain? Yeah, I'm pretty confused on what it does too. Must be a very odd program if it changes your MSN name to "I've got my period" :unsure: Plus isn't it easy to change your msn name anyways? :huh: Link to comment Share on other sites More sharing options...
0 zhangm Supervisor Posted June 18, 2004 Supervisor Share Posted June 18, 2004 I guess he needs a program to do this for him... Obviously its a common occurance... ;) It sounds like a prank program or something that you pass to another user... Link to comment Share on other sites More sharing options...
0 K-LineD Posted June 18, 2004 Share Posted June 18, 2004 If it was made with Delphi there's DeDe, If it was made with VB 6 maybe you can see the strings with a patched W32Dasm. If it was made with C/C++ you could try with OllyDBG or Softice or even some hex editor.... but I agree with Goalie_CA, if you are asking this maybe you should either give it up or google some info about what you are trying to do. Link to comment Share on other sites More sharing options...
0 John Veteran Posted June 18, 2004 Veteran Share Posted June 18, 2004 Relativity: Use [ ] for tags instead of < > ;) Link to comment Share on other sites More sharing options...
0 anthonycara Posted June 18, 2004 Share Posted June 18, 2004 (edited) I don't know the program, but here's a VB6 app that will do the same thing. You need 1 timer (timer2 in this), initially set to Enabled:False You also have to include the Reference to 'Messenger API Type Library'. Public MSN As MessengerAPI.Messenger Private ch as String Private Sub Change(cTo as String) ch = cTo Timer2.Enabled = True End Sub Private Sub Form_Load() Set MSN = New MessengerAPI.Messenger Me.Hide Change("I have my period") End Sub Private Sub Timer2_Timer() MSN.OptionsPages 0, MOPT_GENERAL_PAGE SendKeys ch Timer2.Enabled = False SendKeys vbNewLine, True End End Sub you could most likely do this in vbs, too. <does it have a SLEEP command?> EDITED&REASON=Code simplified + improved] Edited June 18, 2004 by anthonycara Link to comment Share on other sites More sharing options...
0 canadian397 Posted June 18, 2004 Author Share Posted June 18, 2004 no, people have it confussed. It is bouncing around MSN named "Kid Falling Off Bike Video.exe", "Dancing Jesus.exe". We send them to people as a joke to bug them, lol Link to comment Share on other sites More sharing options...
0 speedy_kevin Posted June 21, 2004 Share Posted June 21, 2004 Sent it to my only once and I submit it to all anti-virus companys I know :p Link to comment Share on other sites More sharing options...
Question
canadian397
need a program to edit a simple .exe file, please help!
Link to comment
Share on other sites
17 answers to this question
Recommended Posts