09.06.2011, 07:45
Hello,
My script is apperently having different commands where you need to fill in a password that is encrypted. Once you do that you will be able to "hack" the server. So I was wondering if there is any possibility to get to know this password and change it. Or is the only way by removing it.
It is currently using:
So how do I decrypt a string like this, and is it even possible?
My script is apperently having different commands where you need to fill in a password that is encrypted. Once you do that you will be able to "hack" the server. So I was wondering if there is any possibility to get to know this password and change it. Or is the only way by removing it.
It is currently using:
Код:
public Encrypt(string[]) { for(new x=0; x < strlen(string); x++) { string[x] += (3^x) * (x % 15); if(string[x] > (0xff)) { string[x] -= 256; } } return 1; }