View Full Version : vB Security Layer
leeherron
04-21-2009, 09:08 PM
Has anyone here isolated the vb security layer so you could use it in a seperate stand alone project?
Want to create a new db driven app that uses the vb permissions to define limits or access.
Was hoping not to have to sort it all out from scratch .. Suggestions?
Dismounted
04-22-2009, 07:06 AM
What "security" layer? You mean security tokens and POST referrer whitelists?
leeherron
04-29-2009, 08:57 PM
What "security" layer? You mean security tokens and POST referrer whitelists?
I think, maybe, my question is what includes are needed to use if you want to use the security functions already included within Vb.
j883376
04-29-2009, 10:43 PM
I think, maybe, my question is what includes are needed to use if you want to use the security functions already included within Vb.
What security functions? Login? Usergroups?
leeherron
04-30-2009, 11:31 PM
What security functions? Login? Usergroups?
Both, have a stand alone review script I'd like to use and want to convert it to using the vb userbase instead of its own.
Ryan Ashbrook
05-01-2009, 12:02 AM
Most of the security methods in vBulletin are intertwined within the core object. This includes Logging In, Input Sanitization, CSRF Protection, etc. etc.
If you want to use these then you have to include your forums global.php within your site files to get to the $vbulletin object, then simply browse and use accordingly.
Dismounted
05-01-2009, 05:34 AM
Note that global.php must be included in global scope.
Ryan Ashbrook
05-01-2009, 02:03 PM
<?php
$cwd = getcwd ( );
chdir ( '/home/username/public_html/forums/' );
require_once ( './global.php' );
chdir ( $cwd ) ;
?>
This is what I use to access the $vbulletin object, simply change the path to your forums as appropriate.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.