Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
webedi.bdcloud.fr /
iTickets /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
Messages.js
1.51
KB
-rw-r--r--
2022-11-17 15:38
Notifications.js
1.12
KB
-rw-r--r--
2022-11-17 15:38
Scroll.js
154
B
-rw-r--r--
2022-11-17 15:38
Search.js
890
B
-rw-r--r--
2022-11-17 15:38
Show.js
2.2
KB
-rw-r--r--
2022-11-17 15:38
Status.js
607
B
-rw-r--r--
2022-11-17 15:38
jquery.ui.touch-punch.min.js
1.27
KB
-rw-r--r--
2022-11-17 15:38
main.js
2.27
KB
-rw-r--r--
2022-11-17 15:38
Save
Rename
(function ($) { "use strict"; /*================================================================== [ Focus input ]*/ $('.input100').each(function(){ $(this).on('blur', function(){ if($(this).val().trim() != "") { $(this).addClass('has-val'); } else { $(this).removeClass('has-val'); } }) }) /*================================================================== [ Validate ]*/ var input = $('.validate-input .input100'); $('.validate-form').on('submit',function(){ var check = true; for(var i=0; i<input.length; i++) { if(validate(input[i]) == false){ showValidate(input[i]); check=false; } } return check; }); $('.validate-form .input100').each(function(){ $(this).focus(function(){ hideValidate(this); }); }); function validate (input) { if($(input).attr('type') == 'email' || $(input).attr('name') == 'email') { if($(input).val().trim().match(/^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{1,5}|[0-9]{1,3})(\]?)$/) == null) { return false; } } else { if($(input).val().trim() == ''){ return false; } } } function showValidate(input) { var thisAlert = $(input).parent(); $(thisAlert).addClass('alert-validate'); } function hideValidate(input) { var thisAlert = $(input).parent(); $(thisAlert).removeClass('alert-validate'); } /*================================================================== [ Show pass ]*/ var showPass = 0; $('.btn-show-pass').on('click', function(){ if(showPass == 0) { $(this).next('input').attr('type','text'); $(this).addClass('active'); showPass = 1; } else { $(this).next('input').attr('type','password'); $(this).removeClass('active'); showPass = 0; } }); })(jQuery);