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.129.23.179
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 /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
pages
[ DIR ]
drwxr-xr-x
MainPage.js
47.64
KB
-rwxr-xr-x
MainPage2.js
45.7
KB
-rwxr-xr-x
MainPage2_17122018.js
35.07
KB
-rwxr-xr-x
MainPage_11302018.js
44.39
KB
-rwxr-xr-x
admin.js
15.51
KB
-rwxr-xr-x
advanced-form-elements.js
5.41
KB
-rwxr-xr-x
apprCandidList.js
10.2
KB
-rwxr-xr-x
demo.js
3.33
KB
-rwxr-xr-x
forgot-password.js
520
B
-rwxr-xr-x
form-wizard.js
2.9
KB
-rwxr-xr-x
form_submit.js
1.3
KB
-rwxr-xr-x
getautofill.php
438
B
-rwxr-xr-x
helpers.js
576
B
-rwxr-xr-x
registration.js
5.97
KB
-rwxr-xr-x
script.js
3
B
-rwxr-xr-x
sign-in.js
1.07
KB
-rwxr-xr-x
sign-up.js
2.83
KB
-rwxr-xr-x
updateFeeDet.js
3.7
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : form-wizard.js
$(function () { //Horizontal form basic $('#wizard_horizontal').steps({ headerTag: 'h2', bodyTag: 'section', transitionEffect: 'slideLeft', onInit: function (event, currentIndex) { setButtonWavesEffect(event); }, onStepChanged: function (event, currentIndex, priorIndex) { setButtonWavesEffect(event); } }); //Vertical form basic $('#wizard_vertical').steps({ headerTag: 'h2', bodyTag: 'section', transitionEffect: 'slideLeft', stepsOrientation: 'vertical', onInit: function (event, currentIndex) { setButtonWavesEffect(event); }, onStepChanged: function (event, currentIndex, priorIndex) { setButtonWavesEffect(event); } }); //Advanced form with validation var form = $('#wizard_with_validation').show(); form.steps({ headerTag: 'h3', bodyTag: 'fieldset', transitionEffect: 'slideLeft', onInit: function (event, currentIndex) { $.AdminBSB.input.activate(); //Set tab width var $tab = $(event.currentTarget).find('ul[role="tablist"] li'); var tabCount = $tab.length; $tab.css('width', (100 / tabCount) + '%'); //set button waves effect setButtonWavesEffect(event); }, onStepChanging: function (event, currentIndex, newIndex) { if (currentIndex > newIndex) { return true; } if (currentIndex < newIndex) { form.find('.body:eq(' + newIndex + ') label.error').remove(); form.find('.body:eq(' + newIndex + ') .error').removeClass('error'); } form.validate().settings.ignore = ':disabled,:hidden'; return form.valid(); }, onStepChanged: function (event, currentIndex, priorIndex) { setButtonWavesEffect(event); }, onFinishing: function (event, currentIndex) { form.validate().settings.ignore = ':disabled'; return form.valid(); }, onFinished: function (event, currentIndex) { swal("Good job!", "Submitted!", "success"); } }); form.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('.form-group').append(error); }, rules: { 'confirm': { equalTo: '#password' } } }); }); function setButtonWavesEffect(event) { $(event.currentTarget).find('[role="menu"] li a').removeClass('waves-effect'); $(event.currentTarget).find('[role="menu"] li:not(.disabled) a').addClass('waves-effect'); }
Close