There's a mod called Spam Protect Email 1.0.0 that does something like that.  Just put the email into [email]tags.

27

(26 replies, posted in Feature requests)

Double hashing take far more than two times the time to brute force, because instead of being able to do a dictionary based hack, you have to find a string of letters and numbers.  If the origional passoword was forums, it would be encrypted to 68daf8bdc8755fe8f4859024b3054fb8 the first time.  That could be broken in about 5 seconds using a dictionary brute force.  But if you run 68daf8bdc8755fe8f4859024b3054fb8 through md5 again, it gives you 471b357e0fdd976f770343b94a1e012c.  The effective time it would take to brute force that would be somewhat longer than your lifetime.  Random salt hashing would work well, to, but after you get one pass, wouldn't you have the salt for all the other passwords?

Hrm... I'm trying to make it adjust to whatever timezone the user is in, but I keep getting an error...  Here is the code:

http://unjust.toastedgamers.com/forums/ … eader.phps

The error is here:

http://unjust.toastedgamers.com/forums/calendar.php

How did I screw up the mysql query?

29

(26 replies, posted in Feature requests)

I'm pretty sure this hasn't been mentioned before, but it would be a lot more secure if all the passwords were double hashed (ie.  md5(md5($password))).  That way, if a hacker got some passwords, instead of being able to do a dictionary based brute force, he would have to do a brute force for a 32 digit string.  Even if he got that, he would still have to decrypt that.  It would only require a small amount of editing to do.  The only pages that would change would be login.php register.php /include/functions.php and profile.php.  There might be others, but it would still be really easy to do.

30

(21 replies, posted in PunBB 1.2 discussion)

I'm not sure if this has been mentioned before, but in phpbb, when you register, if you are under 13, you get emailed a little form that you fill out and your parent has to sign before you can post.  It wouldn't be all that hard to make a mod for it.

Then you would want to do something like where it takes the unix timestamp of the post, then does something like this:

$est_date = $old_date - $server_time - 5;

Worked!  Thanks a lot.

The date thing is still weird, though.  Where is the line when it decides what date it is?

Very cool!

34

(13 replies, posted in PunBB 1.2 troubleshooting)

If you have phpmyadmin, just go in, and change group id to 1 on for your username under users.

Will you make a normal readme install file?  My host doesn't allow SSH, and I have modified viewtopic and search files.

On mine, it is showing the day as one day off.  I am in PST, and my server is at GMT, so could that have anything to do with it?

Also, when I view Posts/Topics, i get this notice:

Notice: Undefined index: 31 in /home2/toastedg/public_html/unjust/forums/calendar.php on line 35

Everything still works, as far as I can tell, though.