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.222.168.73
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 /
demo /
rcubpgcet /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxrwxr-x
img
[ DIR ]
drwxrwxr-x
js
[ DIR ]
drwxrwxr-x
libs
[ DIR ]
drwxrwxr-x
links
[ DIR ]
drwxrwxr-x
reg_soon_files
[ DIR ]
drwxrwxr-x
src
[ DIR ]
drwxrwxr-x
student_photos
[ DIR ]
drwxrwxr-x
tarka_pdf
[ DIR ]
drwxrwxr-x
tarka_pdf_latest
[ DIR ]
drwxrwxr-x
app.php
427
B
-rw-rw-r--
cconfig.php
1.21
KB
-rw-rw-r--
enable_app_status.php
3.48
KB
-rw-rw-r--
enable_payment.php
3.4
KB
-rw-rw-r--
hall_ticket.php
2.98
KB
-rw-rw-r--
index.php
2.29
KB
-rw-rw-r--
make_payment.php
2.79
KB
-rw-rw-r--
notif.pdf
269.58
KB
-rw-rw-r--
payment_gate_way_responce.php
7.31
KB
-rw-rw-r--
payment_gateway.php
2.49
KB
-rw-rw-r--
print_app_form.php
3.45
KB
-rw-rw-r--
reg_soon.htm
23.92
KB
-rw-rw-r--
registration.php
724
B
-rw-rw-r--
vpc_php_serverhost_do.php
6.69
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hall_ticket.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <?php $app_no=$_REQUEST['app_no']; require_once("links/js_files.php");?> <script type="text/javascript"> $(function(){ $('#div_app_form_center').corner("5px").css("border","1px solid #4F3B3B"); $('#print_app_form').corner("5px"); $('.div_app_form_center_black').corner("5px"); url_object=GetUrlParameters(); app_no=url_object['app_no']; if(empty(app_no)) { alert("Invalid App No"); return false; } $.ajax({ type: "POST", async:false, url: $host_url+"GetApplicationStatus", data:"&app_no="+app_no, success: function GetApplicationStatusResponse(responce) { responce = eval('(' + responce + ')'); if(responce.error_code=="0") { html=responce.data['header']; hall_ticket=responce.data['hall_ticket']; fcompsheet=responce.data['fcompsheet']; fomr=responce.data['fomr']; if(hall_ticket==1) { $("#save_div").show(); $("#ht_div").show(); } else $("#save_div").hide(); if(!empty(fcompsheet)) { $("#a_cs").attr("href",fcompsheet); $("#cs_div").show(); } if(!empty(fomr)) { $("#a_omr").attr("href",fomr); $("#omr_div").show(); } $("#app_status_details").html(html); $(".button_text").corner("5px"); $(".submit_div_button").corner("5px"); } else { alert(responce.data); } } }); }); </script> </head> <body > <div id='main_frame'> <div class='header_main_div'> <?php require_once("links/header.php");?> <div class='app_form_center'> <div id='div_app_form_center' class="make_payment" style='height:auto;'> <div style="height:40px; padding:2px;" align='center' class="div_app_form_center_black"><a style='font-family:Trebuchet MS;word-spacing: 5px;line-height:42px;color:#FFFFFF;'>Application Status </a></div> <div id='app_status_details' style='margin-bottom:12px;'></div> <div style='clear:both;'/> <div class='submit_div' align='center' > <div class='submit_div_button' id='ht_div' style='width:180px;display:none;' onclick="GenerateHallTicket(<? echo $app_no?>);" ><div class='button_text'>Generate Hall Ticket</div></div> <div class='submit_div_button' id='omr_div' style='width:180px;display:none;' ><div class='button_text'><a style='color:#fff;text-decoration:none;' id='a_omr' target='_new'>OMR Sheet</a></div></div> <div class='submit_div_button' id='cs_div' style='width:180px;display:none;' ><div class='button_text'><a style='color:#fff;text-decoration:none;' id='a_cs' target='_new' >Computation Sheet</a></div></div> </div> </div> </div> </div> <?php require_once("links/footer.php");?> </div> </br> </body> </html>
Close