منتدى استراحات زايد

منتدى استراحات زايد (http://vb.ma7room.com/)
-   منتدى أخبار المواقع والمنتديات العربية والأجنبية (http://vb.ma7room.com/f183.html)
-   -   Blog [BLOG + CMS] image verification permissions problem in blog and CMS (hvcheck_post??) (http://vb.ma7room.com/t427931.html)

محروم.كوم 06-10-2010 03:30 AM

Blog [BLOG + CMS] image verification permissions problem in blog and CMS (hvcheck_post??)
 
Howdy. First, I should note that I am new to the vBulletin codebase so go easy. I am currently experiencing an issue which I believe is being caused by a permissions scope problem related to a user being in multiple groups.

The problem is that a superadmin user cannot comment on CMS articles or blog postings because they are also a member of a custom usergroup which requires image verification for posting and the image verification code is not displaying. My hunch is that the permissions check that decides whether that template should display the CAPTCHA is not the same as the one that checks whether the data sent by the user is sane and meets all requirements. I can live if the admin has to enter a CAPTCHA but in the current situation, they cannot do so because it is never shown.

In blogpost.php at line 1457 we have this code segment which checks for image verification if fetch_require_hvcheck() returns true and if so, forces a CAPTCHA verification and returns an error if it fails (this is not the display code, just the verification code):

Code:
if (fetch_require_hvcheck('post'))
{
require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
if (!$verify->verify_token($vbulletin->GPC['humanverify']))
{
$blogman->errors[] = fetch_error($verify->fetch_error());
}
}
There are two spots where "fetch_require_hvcheck" is defined, once in "includes/functions.php" and once on line 3704 of "includes/blog_functions.php". I am not sure which one is getting used as blog_post.php does not explicitly include either. The function definitions are quite different.

From "includes/blog_functions.php":

Code:
if (!function_exists('fetch_require_hvcheck'))
{
function fetch_require_hvcheck($action)
{
global $vbulletin;

return (!$vbulletin->userinfo['userid'] AND $vbulletin->options["hvcheck_{$action}"]);
}
}
This checks whether the user is logged in and whether the have a flag set for the action.

From line 5017 of "includes/functions.php"

Code:
function fetch_require_hvcheck($action)
{
global $vbulletin;

if (!$vbulletin->options['hv_type']
OR !($vbulletin->options['hvcheck'] & $vbulletin->bf_misc_hvcheck[$action]))
{
return false;
}

switch ($action)
{
case 'register':
{
$guestuser = array(
'userid' => 0,
'usergroupid' => 0,
);
cache_permissions($guestuser);

return ($guestuser['permissions']['genericoptions'] & $vbulletin->bf_ugp_genericoptions['requirehvcheck']);
}

case 'lostpw':
{
if ($vbulletin->userinfo['permissions']['adminpermissions'] & $vbulletin->bf_ugp_adminpermissions['cancontrolpanel'])
{
return false;
}
break;
}
}

return ($vbulletin->userinfo['permissions']['genericoptions'] & $vbulletin->bf_ugp_genericoptions['requirehvcheck']);
}
This function checks whether human verification is enabled and then a bunch of specific cases, all of which look different than the blog specific check.

My main questions at this point are:

Which function gets used for the editor display and which ones gets used for the sanity check after the article POST occurs? Where does the one that controls whether to display the CAPTCHA in the editing window occur?

Next, where do the various "$vbulletin->options['hvcheck']" type options actually get set?

Bonus points if you can explain how to correct the problem entirely.

=)

Any and all help appreciated.

Cheers


الساعة الآن 07:54 PM

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.5.2 TranZ By Almuhajir


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227