Start runable c#!

Joined
Sep 7, 2008
Messages
972
Reaction score
81
Hello, im creating my own launcher but i have 1 problem. If i do the normal way of starting a exe like this:

Code:
            Process theduel = new Process();

            theduel.StartInfo.FileName   = "theduel.exe";

            theduel.Start();

OR

Code:
            System.Diagnostics.Process.Start("notepad");

But it doesn't start when serialkey is enabled. I can make the serialkey disabled but thats not save becasue people can start without running launcher. Does some on have a way to start it when serialkey is enabled?
 
there is no serial key in runnable.
edit: i think im wrong there, if there is no serial key in the runnable, how would it know when the serial key's been changed?
anyway, serial key is something like 25 chars, it tells it to open the runnable if those 25 chars are the same.
 
Upvote 0
Hit control + G and write "004972A7" :

You will see this:
Code:
[COLOR="Purple"]004972A7[/COLOR]  |.  [COLOR="DarkOrchid"]3D FFFF0000[/COLOR]   CMP EAX,0FFFF

Change it by hitting space, it will assemble at 004972a7, then write the red marked "MOV EAX,0FFFF"
Code:
[COLOR="Purple"]004972A7[/COLOR]      [COLOR="SandyBrown"]B8 FFFF0000[/COLOR]   [COLOR="Red"]MOV EAX,0FFFF[/COLOR]
Its also here on ragezone posted this edit..
 
Upvote 0
I believe the launcher checks for certain values in the clipboard at certain times. "I_love_maiet", "I_hate_hacker" are what they used to be. Most likely above your level, but you could give it a shot.

Also, why not just use the official launcher?
 
Upvote 0
I believe the launcher checks for certain values in the clipboard at certain times. "I_love_maiet", "I_hate_hacker" are what they used to be. Most likely above your level, but you could give it a shot.

Also, why not just use the official launcher?
Because i scripted anti-hack inside launcher it's very unstable but it's a start
 
Upvote 0
The launcher uses a custom clipboard format so you cant see it unless you know the format ( its viewable through ollydbg ), and also the string is encrypted with the SEED algorithm.

Near the address that demantor have posted there is a lot of calls to OpenClipboard, IsClipboardFormatAvailable(theformatid), GetClipboardData and CloseClipboard.
 
Upvote 0
Back