| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 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 resetlogin.php if he tried to open reset.php directly ~~~~~
if((!isset($HTTP_REQUEST_VARS["a_user"])) || (!isset($HTTP_REQUEST_VARS["a_pwd"])))
{
@header("Location: resetlogin.php");
exit;
}
// ~~~~~ Include shared functions ~~~~~
include "phphits.inc.php";
?>
<html>
<head>
<title>phphits :: reset</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">
<!--
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))
{
phphitsResetCounter($HTTP_REQUEST_VARS["a_mode"]);
}
else
{
echo "<hr noshade><font size=\"2\" face=\"" . LOG_FONT_FACE . "\">Wrong username / password!<p></p><a href=\"resetlogin.php\">Back</a></font><hr noshade>";
}
?>
</body>
</html>