Changing from MD5 to non MD5?

04/22/2013 12:01 denominator#1
Okay well to register an account I need to use pantom MD5 which I am not really that happy with. Is there any way I can change it from pantom MD5 to just normal text for the passwords?
04/22/2013 12:03 FunkyJustice#2
Create a New pw und change this in the Account db
04/22/2013 12:07 Velmore#3
You have to disable the crypt funktion of the neuz.
04/22/2013 12:14 denominator#4
Sadly this won't work as I just get "incorrect details" error and password error? How would I do this Velmore? I'm assuming I would need to hex edit the Neuz.exe?
04/22/2013 13:04 Velmore#5
i think it was in the string table.
04/22/2013 13:06 denominator#6
Ahhh so I should use reshack for it then. Okay well this is what I see

Code:
STRINGTABLE
LANGUAGE LANG_KOREAN, 0x1
{
1, 	"My IP Address"
2, 	"1"
3, 	"0"
4, 	"1"
5, 	"1"
6, 	"20070712"
7, 	"15500"
8, 	"5000"
9, 	"5"
10, 	"1252"
11, 	"0"
}
04/22/2013 13:17 Velmore#7
4 or 5 is the "md5 hasher"
04/22/2013 13:21 denominator#8
Appreciated so should I change them to a "0" instead of "1"? Okay it's 4 and yup I just changed it to "0" and it works :) Again thank you I appreciate it.
04/22/2013 13:48 FlyCraft.TobiLap#9
I didnt test it but try this

Find in Neuz.cpp:
PHP Code:
if( m_bEncryptPWD )
        
HashMD5g_Neuz.m_szPasswordlpszpw );
    else
        
_tcscpyg_Neuz.m_szPasswordlpszpw ); 
and replace it
PHP Code:
_tcscpyg_Neuz.m_szPasswordlpszpw ); 
04/25/2013 15:29 denominator#10
Appreciated FlyCraft but using reshack has fixed the issue already :) I have no real intention of doing anything to the server because it's C++. I just found a working server to actually see what Flyff was like :P I work with C# projects and not C++ so my server will remain the same permanently, besides it's just for personal use.
04/25/2013 21:57 xMootie#11
Plain text password storage... I am disappoint.