|
You last visited: Today at 15:14
Advertisement
C++ Text Decrypt Function + Programm Encrypt to Decrypt
Discussion on C++ Text Decrypt Function + Programm Encrypt to Decrypt within the WarRock Hacks, Bots, Cheats & Exploits forum part of the WarRock category.
07/02/2011, 03:43
|
#1
|
elite*gold: 0
Join Date: Jun 2011
Posts: 261
Received Thanks: 237
|
C++ Text Decrypt Function + Programm Encrypt to Decrypt
Download: Virustotal:
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;
}
Usage: Menu->AddItem(decrypt("Hadaw")..........
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.
|
|
|
07/02/2011, 03:46
|
#2
|
elite*gold: 1
Join Date: Jun 2011
Posts: 302
Received Thanks: 367
|
Nice nice, funzt gut und ist sehr nützlich.
|
|
|
07/02/2011, 03:50
|
#3
|
elite*gold: 0
Join Date: Jun 2011
Posts: 261
Received Thanks: 237
|
Vielen dank Büny
|
|
|
07/02/2011, 07:09
|
#4
|
elite*gold: 297
Join Date: Dec 2010
Posts: 1,129
Received Thanks: 1,687
|
Public Function - Credits to WarHax.
|
|
|
07/02/2011, 07:13
|
#5
|
elite*gold: 12
Join Date: Sep 2010
Posts: 2,533
Received Thanks: 1,294
|
Nice danke kann man gebrauchen.
|
|
|
07/02/2011, 09:15
|
#6
|
elite*gold: 1
Join Date: Nov 2010
Posts: 116
Received Thanks: 18
|
Ist bestimmt hilfreich !
|
|
|
07/02/2011, 09:19
|
#7
|
elite*gold: 24
Join Date: May 2011
Posts: 446
Received Thanks: 540
|
Quote:
Originally Posted by akinlol1
Ohh man, wer macht das schon Public ?!
Jetzt gibts bestimmt noch mehr Scripter, was ?
#closerequest
Da wir keine Scripts unterstützen !
|
ULTRA MEGA MEGA MEGA ROFL'D
U MADE MY DAY HAHAHAHAHA
Das ist für Menü Hacks um dem Text zu Crypten OMG
Haha voll den lachkick grade Wenn man keine Ahnung hat einfach mal die FR'''E Halten ;OO
|
|
|
07/02/2011, 09:30
|
#8
|
elite*gold: 1
Join Date: Nov 2010
Posts: 116
Received Thanks: 18
|
Quote:
Originally Posted by ,_TradEmArk_˜
ULTRA MEGA MEGA MEGA ROFL'D
U MADE MY DAY HAHAHAHAHA
Das ist für Menü Hacks um dem Text zu Crypten OMG
Haha voll den lachkick grade Wenn man keine Ahnung hat einfach mal die FR'''E Halten ;OO
|
Hahaha, was fakste mein Post ?!
|
|
|
07/02/2011, 09:41
|
#9
|
elite*gold: 1091
Join Date: Jun 2007
Posts: 19,836
Received Thanks: 7,180
|
Quote:
Originally Posted by akinlol1
Hahaha, was fakste mein Post ?!
|
Und warum editierst du deinen Post?
Habs mal in die Hacksection gemoved, is wohl da doch besser aufgehoben
|
|
|
07/02/2011, 09:43
|
#10
|
elite*gold: 15
Join Date: Apr 2011
Posts: 1,154
Received Thanks: 267
|
Quote:
Originally Posted by akinlol1
Hahaha, was fakste mein Post ?!
|
HAHA was editierst du dein post um 09:30 er hats um 09:13 oder so gepostet
Naja kann ich gebrauchen :P
|
|
|
07/02/2011, 09:51
|
#11
|
elite*gold: 0
Join Date: Jun 2011
Posts: 405
Received Thanks: 146
|
Quote:
Originally Posted by ,_TradEmArk_˜
ULTRA MEGA MEGA MEGA ROFL'D
U MADE MY DAY HAHAHAHAHA
Das ist für Menü Hacks um dem Text zu Crypten OMG
Haha voll den lachkick grade Wenn man keine Ahnung hat einfach mal die FR'''E Halten ;OO
|
Ahja.
Seitwann ist der Sinn des Forum,andere auf Grund von Unwissenheit fertig zu machen?
|
|
|
07/02/2011, 11:22
|
#12
|
elite*gold: 0
Join Date: Jun 2011
Posts: 261
Received Thanks: 237
|
Mostey sorry gestern war ich bischen weg...
underscore die crypt funktion ist von warhax?
gut zu wissen ty, dachte ist von karraka!
|
|
|
07/02/2011, 11:33
|
#13
|
elite*gold: 0
Join Date: Jun 2011
Posts: 161
Received Thanks: 470
|
Warum so aufwendig?
Warum nicht gleich z.B. in der AddItem \ Group Funktion encrypten lassen und beim Zeichnen decrypten ?
|
|
|
07/02/2011, 11:33
|
#14
|
elite*gold: 0
Join Date: Jan 2009
Posts: 201
Received Thanks: 44
|
ich verstehe aber immernoch nicht, wozu das gut sein soll?!
|
|
|
07/02/2011, 11:35
|
#15
|
elite*gold: 0
Join Date: Jun 2011
Posts: 261
Received Thanks: 237
|
yazn das habe ich auch gemerkt...aber naja jetzt kann man es halt auch so machen..
|
|
|
|
|
Similar Threads
|
Packet-encrypt/decrypt function
03/17/2011 - Shaiya - 1 Replies
Hey guys
I'd have a biiig question:
Could anyone send me the packet encryption algorythm? I'm not so good in reverse engineering. I managed to inject my dll and see the packets unencrypted, but I'm simply not able to understand the algorythm.
Could you send me... a short description, C++, VB code, or any hint, how to learn it by myself?
Thank you, Regards
nXu
|
C++ RC5 Decrypt/Encrypt
02/10/2011 - CO2 Private Server - 2 Replies
Greetings guys,
i was working on my own server and am coding it in c++, i heared i must decrypt the msg from the client so i can check if the user is exist or not (geting server name,account id and password) for patch 5290 or more
so i was wondering if someone can help me and correct what am doing wrong here is my code hopefully someone can help me
RC5.h
#ifndef RC5_H
#define RC5_H
|
Encrypt/Decrypt
09/01/2010 - EO PServer Hosting - 9 Replies
Who can tell me how can i decrypt a password mage by the register page?:D
|
Encrypt/Decrypt Function
10/03/2009 - CO2 Programming - 12 Replies
I think I've found the wrapper for send() at 00536FDB but I cannot find any calls just before the actual winsock send that would encrypt data. Am I looking in the wrong place?
|
encrypt/decrypt guide .INI
12/01/2007 - Archlord - 4 Replies
I put this little guide together to make it more understandable and easier to read, this is in regards to the other guys post (menasculio) who posted the source code/compiled
Put that file in the INI folder of archlord.
start>run>CMD type in CD C:\Program Files\Codemasters\Archlord\ini
once you have done that you can rename the .exe you downloaded to a shorter name, i named mine DEC.
|
All times are GMT +2. The time now is 15:14.
|
|