Page 3 of 3 FirstFirst 123
Results 31 to 42 of 42
  1. #1
    Polo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /197/ or /335/
    Posts
    12,260
    Reputation
    723
    Thanks
    13,340
    My Mood
    Sleepy

    Exclamation About Encrypters/Hacks!

    Encrypters such as Byte Cipher, Elite Encrypt, Black Light, etc. are no longer working as of 8/9/2012 (or maybe even before that.) I dont know if its the hacks or the encrypters, what i do know is that if the encrypters were working properly nexon wouldnt be blocking hacks within hours of their release. VIP hacks and regular hacks are all getting blocked now, my guess is that they no longer use the MD5/SHA1 for detection. Theyre using some other way to detect hacks. The hacks are crashing even when they are encrypted, and they cant be patched without a visible CA patch which leads me to believe nexon has a new detection system since they only option is that the hacks are simply getting detected and the encrypters arent able to trick the detection system anymore It is a sad day for CA.

    It is indeed, a sad day for CA. So please, no more posts about "omg hax no work with elit encrypt wat i do ????? ." Thank you.

    Source: @Bombsaway707

  2. The Following 9 Users Say Thank You to Polo For This Useful Post:

    .REZ (08-09-2012),aeronyx (08-10-2012),ch1025 (08-09-2012),Cyborgy (08-09-2012),Drake (08-09-2012),Mazetarabu (08-12-2012),r0cker889 (08-09-2012),S34nH4x (08-14-2012),[SMA] Paradise` (08-10-2012)

  3. #31
    Egghead1019's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    United States
    Posts
    441
    Reputation
    10
    Thanks
    170
    My Mood
    Amazed
    There's always a way around it

  4. #32
    FoSho''s Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    C:\Nexon\Combat Arms
    Posts
    1,322
    Reputation
    156
    Thanks
    3,662
    My Mood
    Relaxed
    Quote Originally Posted by Egghead1019 View Post
    There's always a way around it
    Some people say mines still working . I haven't got to test it since, I don't really hack.
    Member Since: June 2012
    Contributor Since: July 28, 2012




    Previously know as: Fatal', Deadpool, Souza

  5. #33
    luistupapixD's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    3
    My Mood
    Aggressive
    well whe have to wait :/ thanks guys
    I LOVE THE POLICE IF YOU KNOW WHAT I MEAN

  6. #34
    Egghead1019's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    United States
    Posts
    441
    Reputation
    10
    Thanks
    170
    My Mood
    Amazed
    Quote Originally Posted by Souza View Post
    Some people say mines still working . I haven't got to test it since, I don't really hack.
    What's different about yours?

  7. #35
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by Souza View Post
    All Black Light does is pump the file, as in adding kbs. It should still work, Nexon won't patch it since they didn't know what it does.
    That only changes the MD5. The SHA1 and strings remained unchanged, thus it gets detected. Most encrypters used Dll Pumping to encrypt it. Mine actually did a sort of encryption but it still doesnt work. For the SHA1 to be changed the code actually has to be modified. A polymorphic engine would work nicely

  8. #36
    FoSho''s Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    C:\Nexon\Combat Arms
    Posts
    1,322
    Reputation
    156
    Thanks
    3,662
    My Mood
    Relaxed
    Quote Originally Posted by Bombsaway707 View Post

    That only changes the MD5. The SHA1 and strings remained unchanged, thus it gets detected. Most encrypters used Dll Pumping to encrypt it. Mine actually did a sort of encryption but it still doesnt work. For the SHA1 to be changed the code actually has to be modified. A polymorphic engine would work nicely
    Mines pump it up so..
    Member Since: June 2012
    Contributor Since: July 28, 2012




    Previously know as: Fatal', Deadpool, Souza

  9. #37
    Reflex-'s Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    192.168.1.01
    Posts
    6,625
    Reputation
    584
    Thanks
    2,267
    My Mood
    Dead
    Quote Originally Posted by Souza View Post
    Mines pump it up so..
    I Think you already said that lol.

  10. #38
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by Souza View Post
    Mines pump it up so..
    Then clearly you used a different method. The majority of people used a 5 line pumping technique that is actually just tricking windows into thinking the file size and MD5 has changed. No actual junk code is added, if you actually added junk code then sure it could work

    Dim filesize As Double = Val(NumericUpDown1.Value)
    filesize = filesize * 1024
    Dim filetopump = IO.File.OpenWrite(TextBox2.Text)
    Dim size = filetopump.Seek(0, IO.SeekOrigin.[End])
    While size < filesize
    filetopump.WriteByte(0)
    size += 1
    End While
    filetopump.Close()

    Thats what i was talking about when i said pumpers. If yours used that code then no, its not going to work anymore
    Last edited by Bombsaway707; 08-16-2012 at 12:28 PM.

  11. #39
    FoSho''s Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    C:\Nexon\Combat Arms
    Posts
    1,322
    Reputation
    156
    Thanks
    3,662
    My Mood
    Relaxed
    Quote Originally Posted by Bombsaway707 View Post

    Then clearly you used a different method. The majority of people used a 5 line pumping technique that is actually just tricking windows into thinking the file size and MD5 has changed. No actual junk code is added, if you actually added junk code then sure it could work

    Dim filesize As Double = Val(NumericUpDown1.Value)
    filesize = filesize * 1024
    Dim filetopump = IO.File.OpenWrite(TextBox2.Text)
    Dim size = filetopump.Seek(0, IO.SeekOrigin.[End])
    While size < filesize
    filetopump.WriteByte(0)
    size += 1
    End While
    filetopump.Close()

    Thats what i was talking about when i said pumpers. If yours used that code then no, its not going to work anymore
    Then mine should still work.
    Member Since: June 2012
    Contributor Since: July 28, 2012




    Previously know as: Fatal', Deadpool, Souza

  12. #40
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by Souza View Post
    Then mine should still work.
    Well there you go, you used an actual pumper. Not the pumper code i was referring too.

  13. #41
    FoSho''s Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    C:\Nexon\Combat Arms
    Posts
    1,322
    Reputation
    156
    Thanks
    3,662
    My Mood
    Relaxed
    Quote Originally Posted by Bombsaway707 View Post


    Well there you go, you used an actual pumper. Not the pumper code i was referring too.
    Ah yes. Mines a different code then that, so It shouldn't have a problem unless you don't know how to use it.
    Member Since: June 2012
    Contributor Since: July 28, 2012




    Previously know as: Fatal', Deadpool, Souza

  14. #42
    Drake's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Belgium,Oost-Vlaanderen
    Posts
    12,680
    Reputation
    1801
    Thanks
    4,929
    /unstick
    i'll sticky Souza his black light tool and we will see if it works for people or not .

Page 3 of 3 FirstFirst 123

Similar Threads

  1. Giving about 20 hacks for just 1 Bypass
    By hehe1 in forum Trade Accounts/Keys/Items
    Replies: 2
    Last Post: 07-28-2007, 02:46 PM
  2. That do you think about this hack?
    By sidnietje in forum WarRock - International Hacks
    Replies: 7
    Last Post: 05-30-2007, 07:39 AM
  3. to admins about Vip hacks
    By G-Unit2658947 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 05-03-2007, 10:55 AM
  4. [Request]Help about some hacks
    By allard123 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 02-19-2007, 02:17 PM
  5. Question About Invisible Hack
    By wafflele in forum WarRock - International Hacks
    Replies: 14
    Last Post: 08-06-2006, 12:40 AM