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.116.13.192
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 /
kusdde /
adm /
admin /
html_modules /
[ HOME SHELL ]
Name
Size
Permission
Action
abcentre.html
4.9
KB
-rwxr-xr-x
admlastdate.html
6.39
KB
-rwxr-xr-x
application.html
33.13
KB
-rwxr-xr-x
application_rep.html
2.13
KB
-rwxr-xr-x
applications.html
8.02
KB
-rwxr-xr-x
apprApplications.html
12.17
KB
-rwxr-xr-x
apprApplications_30112018.html
10.28
KB
-rwxr-xr-x
apprCandidList.html
7.21
KB
-rwxr-xr-x
apprCandidates.html
7.07
KB
-rwxr-xr-x
asignApplication.html
8.9
KB
-rwxr-xr-x
changeStudyCentre.html
4.57
KB
-rwxr-xr-x
createUser.html
3.12
KB
-rwxr-xr-x
dashboard.html
6.44
KB
-rwxr-xr-x
gapstudent.html
4.88
KB
-rwxr-xr-x
idcard.html
6.05
KB
-rwxr-xr-x
updateFeeDet.html
3.95
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admlastdate.html
<div class="row clearfix"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="card"> <div class="header"> <h2> Update Last Date </h2> </div> <div class="body"> <form class="form-horizontal" id='appRangeForm'> <div class="row clearfix"> <div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label m_b_10"> <label class="pull-left" for="daterange">Degree Range</label> </div> <div class="col-sm-4 col-md-3 no_margin"> <div class="input-group m_b_10"> <div class="form-line"> <input type="text" class="form-control" id="fromdeg" placeholder="Degree From" value='0' required> </div> </div> </div> <div class="col-sm-4 col-md-3 m-l-5 no_margin"> <div class="input-group m_b_10"> <div class="form-line"> <input type="text" class="form-control" id="todeg" placeholder="Degree To" value="Z" required> </div> </div> </div> </div> <div class="row clearfix"> <div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label m_b_10"> <label class="pull-left" for="daterange">Exam Range</label> </div> <div class="col-sm-4 col-md-3 no_margin"> <div class="input-group m_b_10"> <div class="form-line"> <input type="text" class="form-control" id="fromexam" placeholder="Exam From" value='0' required> </div> </div> </div> <div class="col-sm-4 col-md-3 m-l-5 no_margin"> <div class="input-group m_b_10"> <div class="form-line"> <input type="text" class="form-control" id="toexam" placeholder="Exam To" value="Z" required> </div> </div> </div> </div> <div class="row clearfix"> <div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label m_b_10"> <label class="pull-left" class="pull-left" for="RollnumberRange">College Range</label> </div> <div class="col-sm-4 col-md-3 no_margin"> <div class="input-group m_b_10"> <div class="form-line"> <input type="text" id="fromcoll" class="form-control" placeholder="College From" value="0" required> </div> </div> </div> <div class="col-sm-4 col-md-3 m-l-5 no_margin"> <div class="input-group m_b_10"> <div class="form-line"> <input type="text" id="tocoll" class="form-control" placeholder="College To" value="Z" required> </div> </div> </div> </div> <div class="row clearfix"> <div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label m_b_10"> <label class="pull-left" class="pull-left" for="RollnumberRange">Date Range</label> </div> <div class="col-sm-4 col-md-3 no_margin"> <div class="input-group"> <div class="form-line"> <input type="date" id="fromdate" class="form-control" placeholder="Date. From" required> </div> </div> </div> <div class="col-sm-4 col-md-3 m-l-5 no_margin"> <div class="input-group"> <div class="form-line"> <input type="date" id="todate" class="form-control" placeholder="Date. To" required> </div> </div> </div> </div> <div class="row clearfix"> <div class="col-md-1"> <button class="btn btn-primary waves-effect" onclick = "updatelastdate()">Update</button> </div> </div> </form> </div> </div> </div> </div> <script type="text/javascript"> $('#appRangeForm :input').focus(function(){ $(this).parent().addClass('focused')}); $('#appRangeForm :input').blur(function(){ $(this).parent().removeClass('focused')}); $('form').submit(false); $('#appRangeForm').validate({ highlight: function (input) { $(input).parents('.form-line').addClass('error'); }, unhighlight: function (input) { $(input).parents('.form-line').removeClass('error'); }, errorPlacement: function (error, element) { $(element).parents('.input-group').append(error); } }); $("#S4").keypress(function (e){ var key = e.which; if(key == 13) // the enter key code { getDetails(); } }); $(document).ready(function () { var inputs = $('input, select').keypress(function (e) { if (e.which == 13) { e.preventDefault(); var nextInput = inputs.get(inputs.index(this) + 1); if (nextInput) { nextInput.focus(); } } }); }); </script>
Close