Tn Jones Shell Bypass
:
18.220.43.27
:
160.187.54.56 / upgov.net
:
Linux 160-187-54-56.cprapid.com 4.18.0-553.22.1.lve.1.el7h.x86_64 #1 SMP Tue Oct 8 14:36:03 UTC 2024 x86_64
:
/
home
/
upgov
/
www
/
rmpyrll
/
Ramaimp
/
Upload File:
files >> /home/upgov/www/rmpyrll/Ramaimp/index.php
<?php include("../connection.php"); session_start(); // Starting Session $error=''; // Variable To Store Error Message if(isset($_POST['btn'])) { if(empty($_POST['username']) || empty($_POST['password'])) { $error = "invalid Field"; } else { $a=$_REQUEST['username']; $b=$_REQUEST['password']; $sql=mysql_query("select * from ramaimplogin where user='$a' and password='$b'"); if(mysql_num_rows($sql)>0) { session_regenerate_id(); $member = mysql_fetch_assoc($sql); $_SESSION['user'] = $member['user']; $_SESSION['password'] = $member['password']; $_SESSION['start'] = time(); // Taking now logged in time. // Ending a session in 30 minutes from the starting time. $_SESSION['expire'] = $_SESSION['start'] + (30 * 60); session_write_close(); header("location:page.php"); exit(); } else { $error = "PASSWORD IS INVALID<br>select * from ramaimplogin where user='$a' and password='$b'"; } } } ?> <html lang="en-US"> <head> <meta charset="UTF-8"> <title>Login PHP</title> <link rel="stylesheet" href="style.css" /> <link href='http://fonts.googleapis.com/css?family=Oleo+Script' rel='stylesheet' type='text/css'> <script type="text/javascript" src="jquery-1.7.min.js"> </script> </head> <body> <div class="lg-container"> <h2 align="center"><font face="andalus"><strong>Please Login Here!</strong></font></h2> <form id="lg-form" name="lg-form" method="post"> <div> <center>Username</center> <?php $id=$_REQUEST['id']; $dist=$_REQUEST['dist']; ?> <input type="text" name="username" id="username" value="<?php echo $id;?><?php echo $dist;?>" placeholder="username" required="required" /> </div> <div> <center>Password</center> <input type="password" name="password" id="password" placeholder="password" required="required" /> </div> <div> <center> <button type="submit" name="btn" id="btn" style="font-family:andalus;width:60px;height:32px;">Login</button> <a href="http://ramapayroll.upgov.net/ramaimp/"><button type="button" name="bttn" id="bttn" style="font-family:andalus;width:70px;height:32px;">Back</button></a> </div> </form> <div id="message"><br><?php echo $error;?></div> </div> </body> </html>