| Server IP : 208.122.213.31 / Your IP : 216.73.216.185 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/tits-bigtits.com/phphits/ |
Upload File : |
<?php
// ~~~~~ Load all GET and POST variables into array ~~~~~
$HTTP_REQUEST_VARS = array_merge($HTTP_GET_VARS, $HTTP_POST_VARS);
// ~~~~~ Redirect user to loglogin.php if he tried to open log.php directly ~~~~~
if((!isset($HTTP_REQUEST_VARS["a_user"])) || (!isset($HTTP_REQUEST_VARS["a_pwd"])))
{
@header("Location: loglogin.php");
exit;
}
// ~~~~~ Include shared functions ~~~~~
include "phphits.inc.php";
// ~~~~~ Set general variables ~~~~~
if (!isset($HTTP_REQUEST_VARS["sortby"]))
{
$HTTP_REQUEST_VARS["sortby"] = "rowid";
}
if (!isset($HTTP_REQUEST_VARS["mode"]))
{
$HTTP_REQUEST_VARS["mode"] = "desc";
}
?>
<html>
<head>
<title>phphits :: log file</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="robots" content="NOINDEX,NOFOLLOW">
<meta name="author" content="Johannes Gamba (jgamba@geekfactory.de)">
<style type="text/css">
<!--
body { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px}
table { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px}
a:link { color: #0066FF; text-decoration: underline}
a:visited { color: #666666; text-decoration: underline}
a:hover { color: #0066cc; text-decoration: none}
-->
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<?php
// ~~~~~ Check if login data is valid and go to selected area ~~~~~
if ((($HTTP_REQUEST_VARS["a_user"] == ADMIN_USER) && ($HTTP_REQUEST_VARS["a_pwd"] == ADMIN_PWD)) || (($HTTP_REQUEST_VARS["a_user"] == md5(ADMIN_USER)) && ($HTTP_REQUEST_VARS["a_pwd"] == md5(ADMIN_PWD))))
{
phphitsShowLog($HTTP_REQUEST_VARS["sortby"], $HTTP_REQUEST_VARS["mode"]);
}
else
{
echo "<hr noshade><font size=\"2\" face=\"" . LOG_FONT_FACE . "\">Wrong username / password!<p></p><a href=\"loglogin.php\">Back</a></font><hr noshade>";
}
?>
</body>
</html>