MySQL AES Encrypt
#6
That's sort of the idea, except "0-100000" are not valid keys. The key is either going to be 16 or 32 characters long, depending on whether it's a 128-bit key or 256-bit key. And each character should be in the full 0x00 - 0xff range, unless the developer screwed up and used a printable key, in which case it will be in the 0x20-0x7e range.

It doesn't matter though because even the best-case scenario you're looking at 95^16, which can't be brute forced with even the largest clusters working on the fastest algorithms.


Messages In This Thread
MySQL AES Encrypt - by s500bg - 03-02-2015, 03:14 AM
RE: MySQL AES Encrypt - by undeath - 03-02-2015, 11:54 AM
RE: MySQL AES Encrypt - by s500bg - 03-02-2015, 08:05 PM
RE: MySQL AES Encrypt - by epixoip - 03-03-2015, 12:16 AM
RE: MySQL AES Encrypt - by s500bg - 03-03-2015, 01:28 AM
RE: MySQL AES Encrypt - by epixoip - 03-03-2015, 03:21 AM