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 | : 3.15.187.205
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 /
spouse /
[ HOME SHELL ]
Name
Size
Permission
Action
spouse.php
3.2
KB
-rw-r--r--
spouse_editor.php
3.96
KB
-rw-r--r--
spouse_list.php
6.13
KB
-rw-r--r--
view.php
3.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : view.php
<?php session_start(); include("../common/config.php"); include("../common/functions.php"); include("../homepage/header.php"); include("../homepage/headermenu.php"); if(empty($_SESSION["username"])) { Header("Location: ../login/login.php"); } $GovtId= $_REQUEST['GovtId']; $stmt = $conn->prepare("SELECT sp.id, sp.GovtId, sp.nameB, sp.nameE, d.DistrictName, sp.ocupation, sp.location FROM spouse sp LEFT JOIN district d ON(sp.district_id=d.id) WHERE sp.GovtId= ?"); $stmt->bind_param("s",$GovtId); $stmt->execute(); $result = $stmt->get_result(); $numrows=$result->num_rows; if($numrows==0) exit('No rows'); $slno=0; while($row = $result->fetch_assoc()) { $id = $row["id"]; $GovtId = $row["GovtId"]; $nameB = $row["nameB"]; $nameE = $row["nameE"]; $DistrictName = $row["DistrictName"]; $ocupation = $row["ocupation"]; $location = $row["location"]; } ?> <div class="container fullheight"> <div class="row"> <div class="col-md-12"> <br> <div class="row"> <div class="col-md-6 col-md-offset-3"> <h4> স্বামী-স্ত্রীর তথ্য</h4> <table class="table table-bordered table-striped table-condensed banglafont"> <tr> <td>PIMS আইডি</td> <td><?=bangladate($GovtId)?></td> </tr> <tr> <td>নাম (বাংলায়)</td> <td><?=$nameB?></td> </tr> <tr> <td>নাম (ইংরেজিতে)</td> <td><?=$nameE?></td> </tr> <tr> <td>জন্মগ্রহনকারী জেলা</td> <td><?=$DistrictName?></td> </tr> <tr> <td>পেশা</td> <td><?=$ocupation?></td> </tr> <tr> <td>কর্মস্থল ও যোগাযোগ</td> <td><?=$location?></td> </tr> </table> </div> </div> </div> </div> </div>
Close