PDA

View Full Version : Security Issue: Latest Forum Topics


Mephisteus
09-20-2004, 12:36 PM
It doesn't take in mind if the forum is passworded or not, basically you can see the thread title, poster etc. in a passworded forum and even use the preview function of vBulletin allowing anyone with access to that block to view the first chars of that post without having access.

Zachery
09-20-2004, 12:39 PM
Have you tried logging out first and seeing if said threads are still listed?

Our Sponsors
 

Mephisteus
09-20-2004, 12:47 PM
Yes, I have tried that. Still the same

Brian
09-20-2004, 12:57 PM
forum/includes/vba_cmps_include_bottom.php - Look for:

if (!($forumperms & CANVIEW) OR !($forumperms & CANVIEWOTHERS))

Replace that with:

if (!($forumperms & CANVIEW) OR !($forumperms & CANVIEWOTHERS) OR $forum['password'])

And that should fix the problem.