Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Nostale
You last visited: Today at 18:22

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Bug Fix] Nostale Password Decrypter

Discussion on [Bug Fix] Nostale Password Decrypter within the Nostale forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2013
Posts: 154
Received Thanks: 166
[Bug Fix] Nostale Password Decrypter

I open this thread to give the bug fix of "Trollface Password Decrypter"..
I rewrote the function of password with "str.size() % 4"

Language: C++

Code:
std::string pwDecrypt(std::string str)
{
	int rm = str.size() % 4;
	str = str.erase(0,rm != 0 ? rm : 4);
	std::string str_dec;
	for(unsigned int i = 1; i < str.size(); i += 2) str_dec += str[i];
	str = str_dec;
	str_dec.clear();
	for(unsigned int i = 0; i < str.size(); i++)
	{
		if(i != 0 && i % 2 == 0) str_dec += " ";
		str_dec += str[i];
	}
	std::stringstream ss(str_dec);
	str.clear();
	str_dec.clear();
	int convert;
	while(ss >> std::hex >> convert) str_dec.push_back(convert);
	return str_dec;
}
i tryed with 1.800 logins and it worked perfectly !
Sm•ke is offline  
Old 08/02/2013, 10:40   #2
 
ernilos's Avatar
 
elite*gold: 20
Join Date: Jan 2012
Posts: 766
Received Thanks: 645
U just decrypt the password, the algorythm is more complex :P
ernilos is offline  
Old 08/02/2013, 10:57   #3


 
Cholik's Avatar
 
elite*gold: 4
Join Date: Aug 2008
Posts: 6,786
Received Thanks: 4,992
Quote:
Originally Posted by ernilos View Post
U just decrypt the password, the algorythm is more complex :P
Do you even know what you're talking about?

The "algorithm" is pretty useless, just splitting the password into bytes, then splitting each byte by chars and creating a pseudo obfuscation using a useless chartable and adding everything together.

It seems like you just try to bash anyone here who's releasing stuff. Pretty poor that you never accomplished anything like that since you only know how to copy paste code in VB.Net and use the .Net Reflector.

Just learn a bit about programming or algorithms and take a look at around Nostalex.dat@0051E05A. Maybe you'll get the clue someday.

Meanwhile stop posting stupid comments when someone is contributing.
Cholik is offline  
Thanks
4 Users
Old 08/02/2013, 11:20   #4
 
ernilos's Avatar
 
elite*gold: 20
Join Date: Jan 2012
Posts: 766
Received Thanks: 645
Quote:
Originally Posted by Nathan Explosion View Post
Do you even know what you're talking about?

The "algorithm" is pretty useless, just splitting the password into bytes, then splitting each byte by chars and creating a pseudo obfuscation using a useless chartable and adding everything together.

It seems like you just try to bash anyone here who's releasing stuff. Pretty poor that you never accomplished anything like that since you only know how to copy paste code in VB.Net and use the .Net Reflector.

Just learn a bit about programming or algorithms and take a look at around Nostalex.dat@0051E05A. Maybe you'll get the clue someday.

Meanwhile stop posting stupid comments when someone is contributing.
A ha, okay, just the other bytes are random, sure...
ernilos is offline  
Old 08/02/2013, 11:32   #5


 
Cholik's Avatar
 
elite*gold: 4
Join Date: Aug 2008
Posts: 6,786
Received Thanks: 4,992
Quote:
Originally Posted by ernilos View Post
A ha, okay, just the other bytes are random, sure...
The chartable is static tho pretty useless. But you don't seem to have enough knowledge to figure that out yourself.

Randomstring
52616E646F6D737472696E67
5 2 6 1 6 E 6 4 6 F 6 D 7 3 7 4 7 2 6 9 6 E 6 7
<randomuseless calculation to fill the bytes>
542163176aE86e4f64F162D4763778497023649562E2647

Oh what a great algorithm mr ernilos. Hope you learned something. See you soon in the next episode of "ernilos discovers the world of computers"
Cholik is offline  
Thanks
11 Users
Old 08/02/2013, 15:16   #6
 
elite*gold: 0
Join Date: Aug 2013
Posts: 154
Received Thanks: 166
I reversed the client and i can assure that second byte is random..

Example..

Password = 1

1 to Hex = 0x31

client add random byte ( in this example 0x45 ) and invert the position of bytes..

3145 = 4531

now the client invert the internal..

4531 = 4351

and add random byte first of this ( in this example 112 )

1124351

this is the encrypted password..

sorry for my grammatical errors but i'm not english and not german..
Sm•ke is offline  
Thanks
1 User
Old 08/02/2013, 16:50   #7


 
Cholik's Avatar
 
elite*gold: 4
Join Date: Aug 2008
Posts: 6,786
Received Thanks: 4,992
Yes Smoke, and keep working and contributing!

Don't listen to people like ernilos.
Envy is the highest form of acknowledgement.
Cholik is offline  
Thanks
3 Users
Old 08/02/2013, 16:59   #8
 
elite*gold: 0
Join Date: Aug 2013
Posts: 154
Received Thanks: 166
Quote:
Originally Posted by Nathan Explosion View Post
Yes Smoke, and keep working and contributing!

Don't listen to people like ernilos.
Envy is the highest form of acknowledgement.
Thanks man
Sm•ke is offline  
Thanks
2 Users
Old 08/02/2013, 18:43   #9
 
elite*gold: 11
Join Date: Jul 2010
Posts: 633
Received Thanks: 167
hmm thanks for the help the Community
i hope you will stay here for a while ...
Guys like you the Section really need
DoDo1997 is offline  
Thanks
1 User
Old 08/02/2013, 20:29   #10
 
elite*gold: 0
Join Date: Aug 2013
Posts: 154
Received Thanks: 166
Yeah, thanks.. I like this community..
I think that i release something when i've free time ^^
Sm•ke is offline  
Thanks
2 Users
Old 08/02/2013, 20:34   #11

 
_RowLegend_'s Avatar
 
elite*gold: 237
Join Date: Sep 2012
Posts: 982
Received Thanks: 1,199
Quote:
Originally Posted by Sm•ke View Post
I like this community..

_RowLegend_ is offline  
Thanks
3 Users
Old 08/02/2013, 23:54   #12
 
elite*gold: 0
Join Date: Aug 2013
Posts: 154
Received Thanks: 166
Ahah, what u mean with Impossibru ?!
Sm•ke is offline  
Old 08/02/2013, 23:58   #13



 
IceTrailer's Avatar
 
elite*gold: 150
Join Date: Sep 2010
Posts: 2,070
Received Thanks: 820
Quote:
Originally Posted by Sm•ke View Post
Ahah, what u mean with Impossibru ?!
That it's impossible to like the community.
The community is a piece of dirt.
IceTrailer is offline  
Thanks
3 Users
Old 08/03/2013, 03:40   #14
 
elite*gold: 0
Join Date: Aug 2013
Posts: 154
Received Thanks: 166
I believe that in the life there is worse !
you must be patient with others, even if they don't understand.. they haven't the brain, isn't their fault.. lolz
Sm•ke is offline  
Thanks
4 Users
Reply


Similar Threads Similar Threads
[RELEASES] warCrypt [ Bin EN/DEcrypter and Packet EN/DEcrypter ]
12/26/2012 - WarRock Hacks, Bots, Cheats & Exploits - 18 Replies
Informations: This Lib is coded for WarRock you 2 different classes inside this Lib: The 'BinFile' class and the 'PacketData' class. The BinFile class has the options: - EncryptBinRaw(byte) - DecryptBinRaw(string) The function 'DecryptBinRaw' returns the the decrypted result of the used input string. The function 'EncryptBinRaw' returns the the crypted result of the used input bytes.
[Request]MySQL password decrypter/encrypter
09/14/2008 - CO2 Programming - 11 Replies
Yo i was wondering if someone could make a MySQL password decrypter/encrypter for me... I would need it to set new passwords for my users on my forum and my server. Regarts, Juki



All times are GMT +2. The time now is 18:22.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.