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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
<?php // -*-php-*-
rcs_id('$Id: _AuthInfo.php,v 1.20 2006/03/07 21:07:42 rurban Exp $');
/**
Copyright 2004 $ThePhpWikiProgrammingTeam
This file is part of PhpWiki.
PhpWiki is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
PhpWiki is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PhpWiki; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
require_once('lib/Template.php');
/**
* Used to debug auth problems and settings.
* This plugin is only testing purposes.
* if DEBUG is false, only admin can call it, which is of no real use.
*
* Warning! This may display db and user passwords in cleartext.
*/
class WikiPlugin__AuthInfo
extends WikiPlugin
{
function getName () {
return _("AuthInfo");
}
function getDescription () {
return _("Display general and user specific auth information.");
}
function getVersion() {
return preg_replace("/[Revision: $]/", '',
"\$Revision: 1.20 $");
}
function getDefaultArguments() {
return array('userid' => '');
}
function run($dbi, $argstr, &$request, $basepage) {
$args = $this->getArgs($argstr, $request);
extract($args);
if (empty($userid) or $userid == $request->_user->UserName()) {
$user = $request->_user;
$userid = $user->UserName();
} else {
$user = WikiUser($userid);
}
if (!$user->isAdmin() and ! (DEBUG && _DEBUG_LOGIN)) {
$request->_notAuthorized(WIKIAUTH_ADMIN);
$this->disabled("! user->isAdmin");
}
$html = HTML(HTML::h3(fmt("General Auth Settings")));
$table = HTML::table(array('border' => 1,
'cellpadding' => 2,
'cellspacing' => 0));
$table->pushContent($this->_showhash("AUTH DEFINES",
$this->_buildConstHash(
array("ENABLE_USER_NEW","ALLOW_ANON_USER",
"ALLOW_ANON_EDIT","ALLOW_BOGO_LOGIN",
"REQUIRE_SIGNIN_BEFORE_EDIT","ALLOW_USER_PASSWORDS",
"PASSWORD_LENGTH_MINIMUM","USE_DB_SESSION"))));
if ((defined('ALLOW_LDAP_LOGIN') && ALLOW_LDAP_LOGIN) or in_array("LDAP",$GLOBALS['USER_AUTH_ORDER']))
$table->pushContent($this->_showhash("LDAP DEFINES",
$this->_buildConstHash(array("LDAP_AUTH_HOST","LDAP_BASE_DN"))));
if ((defined('ALLOW_IMAP_LOGIN') && ALLOW_IMAP_LOGIN) or in_array("IMAP",$GLOBALS['USER_AUTH_ORDER']))
$table->pushContent($this->_showhash("IMAP DEFINES", array("IMAP_AUTH_HOST" => IMAP_AUTH_HOST)));
if (defined('AUTH_USER_FILE') or in_array("File",$GLOBALS['USER_AUTH_ORDER']))
$table->pushContent($this->_showhash("AUTH_USER_FILE",
$this->_buildConstHash(array("AUTH_USER_FILE",
"AUTH_USER_FILE_STORABLE"))));
if (defined('GROUP_METHOD'))
$table->pushContent($this->_showhash("GROUP_METHOD",
$this->_buildConstHash(array("GROUP_METHOD","AUTH_GROUP_FILE","GROUP_LDAP_QUERY"))));
$table->pushContent($this->_showhash("\$USER_AUTH_ORDER[]", $GLOBALS['USER_AUTH_ORDER']));
$table->pushContent($this->_showhash("USER_AUTH_POLICY", array("USER_AUTH_POLICY"=>USER_AUTH_POLICY)));
$DBParams = $GLOBALS['DBParams'];
$DBParams['dsn'] = class_exists('WikiDB_SQL') ? WikiDB_SQL::view_dsn($DBParams['dsn']) : '';
$table->pushContent($this->_showhash("\$DBParams[]", $DBParams));
$DBAuthParams = $GLOBALS['DBAuthParams'];
if (isset($DBAuthParams['auth_dsn']) and class_exists('WikiDB_SQL'))
$DBAuthParams['auth_dsn'] = WikiDB_SQL::view_dsn($DBAuthParams['auth_dsn']);
else
$DBAuthParams['auth_dsn'] = '';
unset($DBAuthParams['dummy']);
$table->pushContent($this->_showhash("\$DBAuthParams[]", $DBAuthParams));
$html->pushContent($table);
$html->pushContent(HTML(HTML::h3(fmt("Personal Auth Settings for '%s'", $userid))));
if (!$user) {
$html->pushContent(HTML::p(fmt("No userid")));
} else {
$table = HTML::table(array('border' => 1,
'cellpadding' => 2,
'cellspacing' => 0));
//$table->pushContent(HTML::tr(HTML::td(array('colspan' => 2))));
$userdata = obj2hash($user, array('_dbi','_request', 'password', 'passwd'));
if (isa($user, "_FilePassUser")) {
foreach ($userdata['_file']->users as $u => $p) {
$userdata['_file']->users[$u] = "<hidden>";
}
}
$table->pushContent($this->_showhash("User: Object of ".get_class($user), $userdata));
if (ENABLE_USER_NEW) {
$group = &$request->getGroup();
$groups = $group->getAllGroupsIn();
$groupdata = obj2hash($group, array('_dbi','_request', 'password', 'passwd'));
unset($groupdata['request']);
$table->pushContent($this->_showhash("Group: Object of ".get_class($group), $groupdata));
$groups = $group->getAllGroupsIn();
$groupdata = array('getAllGroupsIn' => $groups);
foreach ($groups as $g) {
$groupdata["getMembersOf($g)"] = $group->getMembersOf($g);
$groupdata["isMember($g)"] = $group->isMember($g);
}
$table->pushContent($this->_showhash("Group Methods: ", $groupdata));
}
$html->pushContent($table);
}
return $html;
}
function _showhash ($heading, $hash, $depth = 0) {
static $seen = array();
static $maxdepth = 0;
$rows = array();
$maxdepth++;
if ($maxdepth > 35) return $heading;
if ($heading)
$rows[] = HTML::tr(array('bgcolor' => '#ffcccc',
'style' => 'color:#000000'),
HTML::td(array('colspan' => 2,
'style' => 'color:#000000'),
$heading));
if (is_object($hash))
$hash = obj2hash($hash);
if (!empty($hash)) {
ksort($hash);
foreach ($hash as $key => $val) {
if (is_object($val)) {
$heading = "Object of ".get_class($val);
if ($depth > 3) $val = $heading;
elseif ($heading == "Object of wikidb_sql") $val = $heading;
elseif (substr($heading,0,13) == "Object of db_") $val = $heading;
elseif (!isset($seen[$heading])) {
//if (empty($seen[$heading])) $seen[$heading] = 1;
$val = HTML::table(array('border' => 1,
'cellpadding' => 2,
'cellspacing' => 0),
$this->_showhash($heading, obj2hash($val), $depth+1));
} else {
$val = $heading;
}
} elseif (is_array($val)) {
$heading = $key."[]";
if ($depth > 3) $val = $heading;
elseif (!isset($seen[$heading])) {
//if (empty($seen[$heading])) $seen[$heading] = 1;
$val = HTML::table(array('border' => 1,
'cellpadding' => 2,
'cellspacing' => 0),
$this->_showhash($heading, $val, $depth+1));
} else {
$val = $heading;
}
}
$rows[] = HTML::tr(HTML::td(array('align' => 'right',
'bgcolor' => '#cccccc',
'style' => 'color:#000000'),
HTML(HTML::raw(' '), $key,
HTML::raw(' '))),
HTML::td(array('bgcolor' => '#ffffff',
'style' => 'color:#000000'),
$val ? $val : HTML::raw(' '))
);
//if (empty($seen[$key])) $seen[$key] = 1;
}
}
return $rows;
}
function _buildConstHash($constants) {
$hash = array();
foreach ($constants as $c) {
$hash[$c] = defined($c) ? constant($c) : '<empty>';
if ($hash[$c] === false) $hash[$c] = 'false';
elseif ($hash[$c] === true) $hash[$c] = 'true';
}
return $hash;
}
};
// $Log: _AuthInfo.php,v $
// Revision 1.20 2006/03/07 21:07:42 rurban
// protect File passwords
//
// Revision 1.19 2005/04/01 14:04:31 rurban
// use obj2hash exclude arg,
// fix minor security flaw: enable _AuthInfo only if Admin or DEBUG && _DEBUG_LOGIN
// not on any DEBUG value
//
// Revision 1.18 2005/03/27 19:46:12 rurban
// security fixes (unknown why and where these get defined)
//
// Revision 1.17 2004/10/21 21:00:59 rurban
// fix recursion bug for old WikiUser:
// limit max recursion depth (4) and overall recursions (35).
//
// Revision 1.16 2004/06/25 14:29:22 rurban
// WikiGroup refactoring:
// global group attached to user, code for not_current user.
// improved helpers for special groups (avoid double invocations)
// new experimental config option ENABLE_XHTML_XML (fails with IE, and document.write())
// fixed a XHTML validation error on userprefs.tmpl
//
// Revision 1.15 2004/06/16 10:38:59 rurban
// Disallow refernces in calls if the declaration is a reference
// ("allow_call_time_pass_reference clean").
// PhpWiki is now allow_call_time_pass_reference = Off clean,
// but several external libraries may not.
// In detail these libs look to be affected (not tested):
// * Pear_DB odbc
// * adodb oracle
//
// Revision 1.14 2004/05/18 14:49:52 rurban
// Simplified strings for easier translation
//
// Revision 1.13 2004/04/02 15:06:56 rurban
// fixed a nasty ADODB_mysql session update bug
// improved UserPreferences layout (tabled hints)
// fixed UserPreferences auth handling
// improved auth stability
// improved old cookie handling: fixed deletion of old cookies with paths
//
// Revision 1.12 2004/03/12 15:48:08 rurban
// fixed explodePageList: wrong sortby argument order in UnfoldSubpages
// simplified lib/stdlib.php:explodePageList
//
// Revision 1.11 2004/03/12 11:18:25 rurban
// fixed ->membership chache
//
// Revision 1.10 2004/03/10 13:54:53 rurban
// adodb WikiGroup fix
//
// Revision 1.9 2004/03/08 18:17:10 rurban
// added more WikiGroup::getMembersOf methods, esp. for special groups
// fixed $LDAP_SET_OPTIONS
// fixed _AuthInfo group methods
//
// Revision 1.8 2004/03/08 16:35:23 rurban
// fixed "Undefined index: auth_dsn" warning
//
// Revision 1.7 2004/02/17 12:11:36 rurban
// added missing 4th basepage arg at plugin->run() to almost all plugins. This caused no harm so far, because it was silently dropped on normal usage. However on plugin internal ->run invocations it failed. (InterWikiSearch, IncludeSiteMap, ...)
//
// Revision 1.6 2004/02/15 15:21:24 rurban
// don't display the SQL dsn connection password
//
// Revision 1.5 2004/02/09 03:58:20 rurban
// for now default DB_SESSION to false
// PagePerm:
// * not existing perms will now query the parent, and not
// return the default perm
// * added pagePermissions func which returns the object per page
// * added getAccessDescription
// WikiUserNew:
// * added global ->prepare (not yet used) with smart user/pref/member table prefixing.
// * force init of authdbh in the 2 db classes
// main:
// * fixed session handling (not triple auth request anymore)
// * don't store cookie prefs with sessions
// stdlib: global obj2hash helper from _AuthInfo, also needed for PagePerm
//
// Revision 1.4 2004/02/07 10:41:25 rurban
// fixed auth from session (still double code but works)
// fixed GroupDB
// fixed DbPassUser upgrade and policy=old
// added GroupLdap
//
// Revision 1.3 2004/02/02 05:36:29 rurban
// Simplification and more options, but no passwd or admin protection yet.
//
// Revision 1.2 2004/02/01 09:14:11 rurban
// Started with Group_Ldap (not yet ready)
// added new _AuthInfo plugin to help in auth problems (warning: may display passwords)
// fixed some configurator vars
// renamed LDAP_AUTH_SEARCH to LDAP_BASE_DN
// changed PHPWIKI_VERSION from 1.3.8a to 1.3.8pre
// USE_DB_SESSION defaults to true on SQL
// changed GROUP_METHOD definition to string, not constants
// changed sample user DBAuthParams from UPDATE to REPLACE to be able to
// create users. (Not to be used with external databases generally, but
// with the default internal user table)
//
// fixed the IndexAsConfigProblem logic. this was flawed:
// scripts which are the same virtual path defined their own lib/main call
// (hmm, have to test this better, phpwiki.sf.net/demo works again)
//
// Revision 1.1 2004/02/01 01:04:34 rurban
// Used to debug auth problems and settings.
// This may display passwords in cleartext.
// DB Objects are not displayed anymore.
//
// Revision 1.21 2003/02/21 04:22:28 dairiki
// Make this work for array-valued data. Make display of cached markup
// readable. Some code cleanups. (This still needs more work.)
//
// Revision 1.20 2003/01/18 21:19:24 carstenklapp
// Code cleanup:
// Reformatting; added copyleft, getVersion, getDescription
//
// (c-file-style: "gnu")
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>
|