Jump to content

Recommended Posts

Posted

hello guys well i find this great bot for protect server L2PHX i hope enjoy this and is usefull for protect ur server guys

 

Protection Program PHX (manipulation packages) on the client level

Installation:

Select the files from the folder in the archive for his chronicles

Paste the files L2.exe and nophx.dll in the client folder in the system.

The archive for protection:

 

npphx.jpg

 

Supported Chronicles:

 

        * Interlude

        * Kamael

        * Hellbound

        * CT2.1

        * CT2.2

        * CT2.3

 

http://rapidshare.com/files/205440701/No_Phx.rar

 

Password: www.maxcheaters.com/CriticalError

 

Credits to Fyyre & alekssu-la2base

 

1 question if i change name from nophx in other it will work ? cause some players may know this prog.. and they can delete..

Posted

nice share but..as the other said if someone take only the l2.ini to an other system he will be able to log in...what can we do?

Posted

nice share but..as the other said if someone take only the l2.ini to an other system he will be able to log in...what can we do?

just get other system and change ip and put nophx.dll in your system done ;)
Posted

just get other system and change ip and put nophx.dll in your system done ;)

i mean..we have our system+l2.ini with our ip+nophx.dll,so..someone is copying only the l2.ini (with our server's ip)he will be able to log in and use phx...

Posted

i mean..we have our system+l2.ini with our ip+nophx.dll,so..someone is copying only the l2.ini (with our server's ip)and copy it to an other server's system.he will be able to log in and use phx...

sorry my mistake i didnt wanted to make double post just to modify my previous.soz

Posted

When I want to start the game I get this error when I'm using no-phx.

Maybe someone can help me out to solve this problem? :O

errormyy.jpg

patch your core.dll what is that? is file for running GAMEGUARD patch it and done ;)
Posted

Critical can i ask something else?if you know...

is this the code for ban phx users?

# Activate Protection for unknownPacket flooding 

PacketProtection = True

# How much unknown packets before punishment. 

# If the player send more than 5 unknownPackets per second, the player get punished. 

UnknownPacketsBeforeBan = 2

# Punishments 

# 1 - broadcast warning to gms only 

# 2 - kick player (default) 

# 3 - kick & ban player (Accesslevel -100) 

UnknownPacketsPunishment = 3

Guest
This topic is now closed to further replies.



  • Posts

    • I open the l2j server and see 1. XOR->NewCrypt.encXORPass(raw, offset, size, Rnd.nextInt()); ---> xor everything is clear 2. _staticCrypt.crypt(raw, offset, size); -----> private void encryptBlock(byte[] src, int srcIndex, byte[] dst, int dstIndex) { int xl = bytesTo32bits(src, srcIndex); int xr = bytesTo32bits(src, srcIndex + 4); xl ^= P[0]; for (int i = 1; i < ROUNDS; i += 2) { xr ^= func(xl) ^ P[i]; xl ^= func(xr) ^ P[i + 1]; } xr ^= P[ROUNDS + 1]; bits32ToBytes(xr, dst, dstIndex); bits32ToBytes(xl, dst, dstIndex + 4); }   I scroll down the code and see this code   ----->>> /**      * Decrypt the given input starting at the given offset and place the result in the provided buffer starting at the given offset. The input will be an exact multiple of our blocksize.      * @param src      * @param srcIndex      * @param dst      * @param dstIndex      */     private void decryptBlock(byte[] src, int srcIndex, byte[] dst, int dstIndex)     {         int xl = bytesTo32bits(src, srcIndex);         int xr = bytesTo32bits(src, srcIndex + 4);         xl ^= P[ROUNDS + 1];         for (int i = ROUNDS; i > 0; i -= 2)         {             xr ^= func(xl) ^ P[i];             xl ^= func(xr) ^ P[i - 1];         }         xr ^= P[0];         bits32ToBytes(xr, dst, dstIndex);         bits32ToBytes(xl, dst, dstIndex + 4);     }   ===================================================   I'm transferring this code to C# private void decryptBlock(byte[] src, uint srcIndex, byte[] dst, uint dstIndex)    {        uint xl = BytesTo32bits(src, srcIndex);        uint xr = BytesTo32bits(src, srcIndex + 4);        xl ^= P[ROUNDS + 1];        for (int i = ROUNDS; i > 0; i -= 2)        {            xr ^= F(xl) ^ P[i];            xl ^= F(xr) ^ P[i - 1];        }        xr ^= P[0];        Bits32ToBytes(xr, dst, dstIndex);        Bits32ToBytes(xl, dst, dstIndex + 4);    }   And in c# I first do decryptBlock and then XOR and everything works, I get the package and the first 2 bytes have already been removed as far as I remember   This only works for the login server for the game server, I think it’s not much different  
    • Ask him what you know, and what I know hahaha.
    • https://prnt.sc/2G_hOHfUIGLM   not sure what you mean Teddy boi  
    • Hello first of all thank you for your prompt response and the time you are taking to read this and answer, I am aware that not everyone takes the time and for that I thank you. On the other hand the specific problem is when decrypting this package and being able to parse it,  In some places it says that it is only encrypted with xor, in others that only a static blowfish is used and in others that both are used in the order of xor and then blowfish, this is the problem in spite of being able to see the encryption mechanisms of the servers, I can not put together the function that reverses this encryption to obtain the keys sent by the init packet.   Thanks for your time, hopefully the rest can contribute something because it is a super useful module to extend any functionality to the client and I will publish it in an opensource way when it is finished.
  • Topics

×
×
  • Create New...