[Only registered and activated users can see links. Click Here To Register...]
Download: [Only registered and activated users can see links. Click Here To Register...]
Virustotal: [Only registered and activated users can see links. Click Here To Register...]
Function C++:
Code:
char* encrypt(const char* plaintext)
{
int len = strlen(plaintext);
char* cyphertext = new char[len+1];
for(int i=0 ; i<len ; ++i)
{
cyphertext[i] = plaintext[i] + 1;
}
cyphertext[len] = 0;
return cyphertext;
}
char* decrypt(const char* plaintext)
{
int len = strlen(plaintext);
char* cyphertext = new char[len+1];
for(int i=0 ; i<len ; ++i)
{
cyphertext[i] = plaintext[i] - 1;
}
cyphertext[len] = 0;
return cyphertext;
}
Credits Programm: IceVisionzX-ShaD
Credits Function: Unknow, the function is from KarraKa Base.
Warum Poste ich das in der WarRock Section?
Es gehört zu WarRock Coding den ohne eine Crypt Funktion erkennt HackShield Text-String wie WallHack.