Results 1 to 6 of 6
  1. #1
    bLu3eYeZ's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    325
    Reputation
    10
    Thanks
    74
    My Mood
    Fine

    Random name everytime program is run.

    Title says it all. Anyone has ideas on how to do this?
    Alike most cheat providing companies have their loaders, it generates a different binary name every time time program is ran.
    I'm working on a project of mine and I'm thinking this would be a good addition.
    If you don't understand what i mean, here are some pictures:
     
    RUN 1:

    RUN 2:

    RUN 3:

    etc.
    I think you got the idea by now.

    Step-by-Step guide to improving DayZ/ArmA2/ArmA2:OA FPS
    Depending on who you are, I might or might not
    sell dayz hacks, not scripts, hacks. PM if interested.

  2. #2
    atom0s's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    403
    Reputation
    139
    Thanks
    104
    Look into using Mono.Cecil to do edits to your hack before it is fully loaded. You could create a loader to load your actual hack, alter it with Mono.Cecil, then fully load it after it has been edited to your liking. This also prevents your hack from having to be modified on disk leaving the original binary untouched.
    - Gone; this is another shit forum with children as administrators. Not worth contributing to.

  3. #3
    t7ancients's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    New York
    Posts
    381
    Reputation
    28
    Thanks
    68
    My Mood
    Twisted
    If all you want to do is change the name, using a GUID as a random name might work.
    Code:
    public static void RandomRun(string FileName)
            {
                Byte[] FileContents = System****.File.ReadAllBytes(System****.Path.GetFullPath(FileName));
                string NewName = Guid.NewGuid().ToString() + ".exe";
                System****.File.WriteAllBytes(NewName, FileContents);
                System.Diagnostics.Process.Start(NewName);
            }

  4. #4
    atom0s's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    403
    Reputation
    139
    Thanks
    104
    I think hes looking to change the actual internal function names and stuff. Not just the exe name itself.
    - Gone; this is another shit forum with children as administrators. Not worth contributing to.

  5. #5
    t7ancients's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    New York
    Posts
    381
    Reputation
    28
    Thanks
    68
    My Mood
    Twisted
    My bad, by binary name I thought he meant the executable file. >.<

  6. #6
    Kuro Tenshi's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Where arth thou be
    Posts
    3,635
    Reputation
    70
    Thanks
    746
    My Mood
    Blah
    Hmm had a idea but I don't want to bother you with it atm.
    Last edited by Kuro Tenshi; 06-05-2013 at 06:41 AM.
    DigiDrawing|+ ( (Elfen Archer) )
    Link:
    https://www.mpgh.net/forum/148-showro...en-archer.html


    @ Anime Section,Otaku/weeabo (orz.) @Graphics Section, Novice DigiArtist


    neuest gift from Yura~Chan:
    https://bakyurayuu.deviantar*****m/#/d372taw
    2nd Place MOTM#9 Theme: CharMods - Combat Arms [No - Thanks] button
    come on you know that don't want to push that ordinary button

Similar Threads

  1. Korean named boots from Shakarr run???
    By Zamolxis in forum Vindictus Discussions
    Replies: 28
    Last Post: 04-02-2012, 07:21 PM
  2. [SOLVED] need help to find the program to run mods
    By rovald in forum Call of Duty Modern Warfare 2 Help
    Replies: 1
    Last Post: 08-01-2010, 08:22 AM
  3. How to make .bat files run programs?
    By dogcrap22 in forum General Hacking
    Replies: 2
    Last Post: 02-17-2010, 07:12 PM
  4. [INFO] Make your Program automatically run as Administrator in VB08
    By CoderNever in forum Visual Basic Programming
    Replies: 13
    Last Post: 11-24-2009, 08:06 PM
  5. Replies: 2
    Last Post: 06-06-2007, 03:43 PM