Hi there im making a PHP website for this game and the passwords it use are like this

0x7BF1EA5EBADD9D7DD2D43E25ABEBCD100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000   which translates into "999momo999"

any idea what sort of cryptography that might be?
the pass itself is stored in a MSSQL DB and the column type is BINARY(60)

thanks for any info

Recommended Answers

All 4 Replies

any idea what sort of cryptography that might be?

The zero padding suggests a block cipher of some sort. If you're trying to generate passwords that are accepted by the game or decrypt passwords from the game, you're looking at some serious cryptanalysis. Not only do you need to figure out the algorithm the game uses, you also need to determine the key(s), salting schemes, initialization vectors, and pre/post hashing. If the game uses anything remotely strong, it's probably going to be an impractical venture.

yeah im trying to generate passwords accepted by the game....
any tuts you could refer?

HashBytes('MD5', REVERSE(UPPER(@ID)) + @PW)

found that in the stored procedures would that make any sense?

thanks for the reply dude I finally solved my prob by using a stored procedure in the DB to register users it turned out that it had the encryption in there thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.