Page 4 of 5 FirstFirst ... 2345 LastLast
Results 46 to 60 of 68
  1. #46
    12qwerty34's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    160
    Reputation
    10
    Thanks
    201
    why you've hided a profile name? how can we check it now?
    Last edited by 12qwerty34; 02-12-2014 at 05:17 AM.

  2. The Following User Says Thank You to 12qwerty34 For This Useful Post:

    SammyDoge1 (02-12-2014)

  3. #47
    SammyDoge1's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Tried looking behind you...?
    Posts
    2,207
    Reputation
    62
    Thanks
    2,147
    My Mood
    Tired
    Quote Originally Posted by modernninja2 View Post


    Well this is definitely a ban. VAC in full effect.
    We have seen those b4 vac was active... Still not enough proof for me those msgs can be faked easly...





  4. #48
    1337xdd's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    2
    My Mood
    Amused
    Quote Originally Posted by modernninja2 View Post


    Well this is definitely a ban. VAC in full effect.
    Anyone could edit the string using cheat engine or any other memory editor for that matter - plus if Ghosts is anything like MW3, it won't come up with an error but instead just not let you connect to online services. If anything, and that was truly someone being banned it looks more likely like a manual ban from IW's security team themselves rather than VAC.

  5. The Following User Says Thank You to 1337xdd For This Useful Post:

    SammyDoge1 (02-12-2014)

  6. #49
    ginuz's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    256
    Reputation
    10
    Thanks
    421
    My Mood
    Inspired
    Quote Originally Posted by 1337xdd View Post
    Anyone could edit the string using cheat engine or any other memory editor for that matter - plus if Ghosts is anything like MW3, it won't come up with an error but instead just not let you connect to online services. If anything, and that was truly someone being banned it looks more likely like a manual ban from IW's security team themselves rather than VAC.
    This is my 6 CoD online, i was banned only 3 time untill now (first was with agentGod modloader) but NEVER & NEVER was pop up message with my nick in game.
    It was only "this account...."

  7. #50
    SammyDoge1's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Tried looking behind you...?
    Posts
    2,207
    Reputation
    62
    Thanks
    2,147
    My Mood
    Tired
    Quote Originally Posted by modernninja2 View Post


    Well this is definitely a ban. VAC in full effect.
    Lawl, Still alive and playing...
    Last edited by SammyDoge1; 02-12-2014 at 06:22 AM.





  8. #51
    gteuk's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    248
    Reputation
    15
    Thanks
    696
    Would be better if someone showed their VAC steam profile with VAC status

    VAC Status : I Good Standing

    Is what mine shows, if banned it will show a different message and an Icon to click on to show games affected

    No vac Ban for me so far

  9. #52
    distiny's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    560
    Reputation
    67
    Thanks
    562
    My Mood
    Cynical
    I'll share a secret.
    VAC is still 32bit so it scans for known running procs but can't scan inside ghost' memory.

    I won't explain further but anyway with a brain realizes the potential
    FBI got my PC...Hardcore cheating is paused atm..

  10. The Following User Says Thank You to distiny For This Useful Post:

    SammyDoge1 (02-13-2014)

  11. #53
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,990
    My Mood
    Cheerful
    Quote Originally Posted by distiny View Post
    I'll share a secret.
    VAC is still 32bit so it scans for known running procs but can't scan inside ghost' memory.

    I won't explain further but anyway with a brain realizes the potential
    Master has explained it a bit deeper so there's even less need to use your brain.

  12. #54
    Izochor's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    511
    Reputation
    33
    Thanks
    146
    My Mood
    Lurking
    Quote Originally Posted by distiny View Post
    I'll share a secret.
    VAC is still 32bit so it scans for known running procs but can't scan inside ghost' memory.

    I won't explain further but anyway with a brain realizes the potential
    How can we mask our 3rd party apps to look legit?

  13. #55
    SammyDoge1's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Tried looking behind you...?
    Posts
    2,207
    Reputation
    62
    Thanks
    2,147
    My Mood
    Tired
    Quote Originally Posted by distiny View Post
    I'll share a secret.
    VAC is still 32bit so it scans for known running procs but can't scan inside ghost' memory.

    I won't explain further but anyway with a brain realizes the potential
    From what i got out of this, giving a hack(meaning the .exe) a random name wont work? Only the executed program, Like "Made By SammyDoge1"?





  14. #56
    distiny's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    560
    Reputation
    67
    Thanks
    562
    My Mood
    Cynical
    Code:
     private static string RandString(int size)
            {
                StringBuilder builder = new StringBuilder();
                Random random = new Random();
                char ch;
                for (int i = 0; i < size; i++)
                {
                    ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65)));
                    builder.Append(ch);
                }
    
                return builder.ToString();
            }
    
            string rand_Title = RandString(20);
    random title each time you start

    then in the form1 part
    this.Text = rand_Title;
    Last edited by distiny; 02-13-2014 at 04:19 PM.
    FBI got my PC...Hardcore cheating is paused atm..

  15. The Following User Says Thank You to distiny For This Useful Post:

    SammyDoge1 (02-13-2014)

  16. #57
    SammyDoge1's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Tried looking behind you...?
    Posts
    2,207
    Reputation
    62
    Thanks
    2,147
    My Mood
    Tired
    Quote Originally Posted by distiny View Post
    Code:
     private static string RandString(int size)
            {
                StringBuilder builder = new StringBuilder();
                Random random = new Random();
                char ch;
                for (int i = 0; i < size; i++)
                {
                    ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65)));
                    builder.Append(ch);
                }
    
                return builder.ToString();
            }
    
            string rand_Title = RandString(20);
    random title each time you start
    xd Was on google for dis already xd, Thanks , google didn't pay off





  17. #58
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,990
    My Mood
    Cheerful
    But..this ain't random enough.
    Some sqrting, sqring, powering, twiddling, etc.

  18. #59
    Izochor's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    511
    Reputation
    33
    Thanks
    146
    My Mood
    Lurking
    Sooooo masters ESP is just the right thing hmm

  19. #60
    distiny's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    560
    Reputation
    67
    Thanks
    562
    My Mood
    Cynical
    should be 2 late for masters' is VAC did it's job
    FBI got my PC...Hardcore cheating is paused atm..

Page 4 of 5 FirstFirst ... 2345 LastLast

Similar Threads

  1. Guide Team Guide compilation [Last Update 5th July]
    By TheUser in forum Call of Duty Modern Warfare 2 Tutorials
    Replies: 70
    Last Post: 07-06-2011, 04:21 AM
  2. Hack Compilation[Last update 30/8]
    By TheUser in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 64
    Last Post: 10-04-2010, 02:51 PM
  3. WARNING Vac Chaos 2.0 Update WARNING
    By fubar086 in forum Call of Duty Modern Warfare 2 Discussions
    Replies: 23
    Last Post: 04-18-2010, 08:53 AM
  4. Ignore the last update...
    By Dave84311 in forum Hack/Release News
    Replies: 4
    Last Post: 12-20-2007, 07:08 PM
  5. Last Update (Feature?!)
    By webtijn in forum WarRock - International Hacks
    Replies: 5
    Last Post: 06-07-2007, 01:42 PM

Tags for this Thread