
cool i am a betta tester ok i will test it untill it can not be tested no more oh ok i had to PM you there Scriptz.The Beta Testers have been choosen, we currently have 4 users who are going to be testing our panel on their site. Links to each site are below:
JBrooks
http://www.airwavesfm.ca
bad-dj
n/a
hybride
http://www.habboring.com
RaveFM
http://www.habbohand.co.uk
Beta Testers were choosen based on their site, forum rep, and various other things. If you were not choosen then sorry, but March 30th is only 8 days away so keep watching this thread!
@Lol - does that basically mean you will just try and hack the system and exploit it![]()
visit my internet web site on the internet
http://dong.engineer/
it is just videos by bill wurtz videos you have been warned
Lol - niceBut this time I got smart and used encryption! See displaying the data from the tables is the easy part, its trying to break the irreversible md5 encryption that might give you a tough time
![]()
Last edited by QuickScriptz; 23-03-2007 at 07:19 PM.
Don't let people use php code anywhere in the panel, I got in, took the pass to an md5 cracking website and got it in like 2 seconds cause it was already stored >_>
Teh government moved away from sha1 and md5
Also, that could lead to people deleting the panel >_>
visit my internet web site on the internet
http://dong.engineer/
it is just videos by bill wurtz videos you have been warned
Hmm.... well we can't have that now can we? Lol... anyways would using crypt() be a better encryption option? And what do you mean by dont let people use php code anywhere in the panel? As of right now they can't?
They can in the admin message if memory serves, and make a custom encryption like this:
LOLPHP Code:function encrypt($string)
{
$string2 = strrev($string);
$string = md5(sha1($string));
$string2 = crc32($string2);
$string = $string . $string2;
$string = sha1($string);
$string2 = strlen($string);
$string2 = $string2 * 2;
$string2 = crypt($string2);
$string = sha1(md5(crc32(base64_encode(crypt($string . $string2)))));
return $string;
}
visit my internet web site on the internet
http://dong.engineer/
it is just videos by bill wurtz videos you have been warned
Holy! I have never even heard of half the encryptions you used there! LMAO
But seriously would something like that but customized work? Just randomly encrypt the passwords so many times that it becomes just too confusing to try and decrypt it? So would something like this work....?
PHP Code:function encrypt($string)
{
$string = strrev($string);
$string2 = md5(sha1($string));
$string3 = strrev($string2);
$string4 = base64_encode(md5($string3));
$string5 = crypt($string4);
return $string5;
}
Want to hide these adverts? Register an account for free!