
12-12-2004, 05:58 PM
|
 |
|
|
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by uae
Great Job,
I just found a bug!
If you go to http://www.yoursite.net/yourforum/jo...dentry&j=XXXXX
xxxxx = none existing journal id, while browsing as a guest, you'll be able to post an entry, which shouldn't happen!!
Even tho I have set vBJournal Premissions for usergroup (1) Unregistered / Not Logged In, not to have journal!
|
Yep - one of many security holes I plugged on my site.
In journal.php
Find ;
if($check['journalist_id']!=$checkid)
and replace it with ;
if(($check['journalist_id']!=$checkid) or $checkid == 0)
|