Quote:
Originally Posted by wlsska1764
#ifdef __NEUZ_PHASH
sprintf( szBuffer, "%s%s", __NEUZ_PHASH, szPWD );
#else // __NEUZ_PHASH
sprintf( szBuffer, "%s%s", "kikugalanet", szPWD );
#endif // __NEUZ_PHASH
md5( szResult, szBuffer );
}
Neuz.cpp
Even if I try to log in, the password is wrong .. Please help
|
__NEUZ_PHASH "???????"
Use what's inside your __NEUZ_PHASH
Here.
Quote:
Example:
kikugalanettest (kikugalanet+password).
kikugalanet = md5 hash code
test = is your password
result = 89d1ed22aac58f5bbea53b2fde81a946
Apply the result into your account use this query.
USE [ACCOUNT_DBF]
GO
DECLARE @

value int
EXEC @

value = [dbo].[usp_CreateNewAccount]
@

= N'test', -- ID: test
@pw = N'CHANGE THIS INTO YOUR RESULT' -- PW: test
SELECT 'Return Value' = @

value
GO
UPDATE account_tbl_detail set m_chLoginAuthority = 'Z'