• 0

Program to edit simple .exe?


Question

17 answers to this question

Recommended Posts

  • 0

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

  • 0
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

  • 0
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

  • 0

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

  • 0

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

  • 0
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

  • 0
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

  • 0

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

  • 0

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

  • 0

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 by anthonycara
Link to comment
Share on other sites

  • 0

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

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.