Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cai /
admins /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
scroll
[ DIR ]
drwxr-x--x
common.js
13.74
KB
-rwxr-x--x
jquery-input-char-count.js
6.39
KB
-rwxr-x--x
jquery-ui.css
37
KB
-rwxr-x--x
jquery-ui.min.js
247.76
KB
-rwxr-x--x
jquery.min.js
84.91
KB
-rwxr-x--x
sweetalert.min.js
39.88
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : common.js
// JavaScript Document $('.bfdecimal').keypress(function() { var value = event.target.value + String.fromCharCode(event.keyCode); if (!(/^\d{1,2}(\.$|\.\d{1,2}$|$)/).test(value)) { event.preventDefault(); event.stopPropagation(); } }); $('.decimal').keypress(function (e) { var character = String.fromCharCode(e.keyCode) var newValue = this.value + character; if (isNaN(newValue) || hasDecimalPlace(newValue, 3)) { e.preventDefault(); return false; } }); /*$(document).on('keypress','.resticInput', function(e) { var a = e.key; if (a.length == 1) return /^[ A-Za-z0-9-)(\/\\]*$/i.test(a); return true; });*/ $(".chkPaste").bind("paste", function(e){ event.preventDefault(); var pastedData = e.originalEvent.clipboardData.getData('text'); var string = pastedData.replace(/[^A-Za-z0-9-)(\/\\#]/g, ''); string = string.substring(0,30); $("#chlnno").val(string); return true; }); $(".chkBlPaste").bind("paste", function(e){ event.preventDefault(); var pastedData = e.originalEvent.clipboardData.getData('text'); var string = pastedData.replace(/[^A-Za-z0-9-)(\/\\]/g, ''); string = string.substring(0,30); $("#blno").val(string); return true; }); $(document).on('keypress','.resticInput', function(e) { var a = e.key; if (a.length == 1) return /^[A-Za-z0-9-)(\/\\#]*$/i.test(a); return true; }); $(document).on('keypress','.alphanumeric', function(e) { var a = e.key; if (a.length == 1) return /[a-z]|[0-9]|&/i.test(a); return true; }); $(".charPaste").bind("paste", function(e){ event.preventDefault(); var pastedData = e.originalEvent.clipboardData.getData('text'); var string = pastedData.replace(/[^A-Za-z]/g, ''); string = string.substring(0,4); $("#charName").val(string); return true; }); /*$(document).on('keypress','.charonly', function(e) { var a = e.key; if (a.length == 1) return /[a-zA-Z]|&/i.test(a); return true; });*/ $(document).on('keypress','.charonly', function(e) { var a = e.key; if (a.length == 1) return /[a-zA-Z]|&/i.test(a); return true; }); $('.disableInput').on("cut copy paste",function(e) { e.preventDefault(); }); $('.dPaste').on("paste",function(e) { e.preventDefault(); }); $(document).on('keypress','.charspace', function (e) { var a = e.key; return /^[a-zA-Z\s]+$/.test(a); return true; }); $(document).on('keypress','.dec2pnt', function (evt) { var $txtBox = $(this); var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57) && charCode != 46) return false; else { var len = $txtBox.val().length; var index = $txtBox.val().indexOf('.'); if (index > 0 && charCode == 46) { return false; } if (index > 0) { var charAfterdot = (len + 1) - index; if (charAfterdot > 3) { return false; } } } return $txtBox; //for chaining }); //$('.chkdec3pnt').bind('input', function(evt) { $(document).on('input','.chkdec2pnt', function (evt) { var str = $(this).val(); str = str.replace(/ /g,''); //alert(str); var Id=$(this).attr('id'); var dec = str.indexOf("."); var first_char = str.charAt(0); var isNumber = true; var haveDecimal = false; if (first_char == '-' || !isNaN(first_char)) { for (i=1; i<str.length; i++) { if(isNaN(str.charAt(i)) && str.charAt(i) != '.') { isNumber = false; break; } } } else { isNumber = false; } if(dec != -1 && isNumber) { //str = str.substring(0, str.indexOf(".")); var len = str.length; var index = str.indexOf('.'); var charAfterdot = len - (index +1); if (charAfterdot > 3) { var strSet=str.split('.'); var NewcharAfterdot = strSet[1].substring(0,2); str = strSet[0]+'.'+NewcharAfterdot; } } if (isNumber) { $("#"+Id).val(str); } else { $("#"+Id).val(""); } }); $(document).on('keypress','.dec3pnt', function (evt) { var $txtBox = $(this); var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57) && charCode != 46) return false; else { var len = $txtBox.val().length; var index = $txtBox.val().indexOf('.'); if (index > 0 && charCode == 46) { return false; } if (index > 0) { var charAfterdot = (len + 1) - index; if (charAfterdot > 4) { return false; } } } return $txtBox; //for chaining }); $('form').attr('autocomplete','off'); // allow 3 numbers after decimal $('.3decimal').keypress(function(event) { var $this = $(this); if ((event.which != 46 || $this.val().indexOf('.') != -1) && ((event.which < 48 || event.which > 57) && (event.which != 0 && event.which != 8))) { event.preventDefault(); } var text = $(this).val(); if ((event.which == 46) && (text.indexOf('.') == -1)) { setTimeout(function() { if ($this.val().substring($this.val().indexOf('.')).length > 4) { $this.val($this.val().substring(0, $this.val().indexOf('.') + 4)); } }, 1); } if ((text.indexOf('.') != -1) && (text.substring(text.indexOf('.')).length > 3) && (event.which != 0 && event.which != 8) && ($(this)[0].selectionStart >= text.length - 3)) { event.preventDefault(); } }); // allow 3 numbers after decimal $('.setpointnumber').keypress(function(event) { var $this = $(this); if ((event.which != 46 || $this.val().indexOf('.') != -1) && ((event.which < 48 || event.which > 57) && (event.which != 0 && event.which != 8))) { event.preventDefault(); } var text = $(this).val(); if ((event.which == 46) && (text.indexOf('.') == -1)) { setTimeout(function() { if ($this.val().substring($this.val().indexOf('.')).length > 4) { $this.val($this.val().substring(0, $this.val().indexOf('.') + 4)); } }, 1); } if ((text.indexOf('.') != -1) && (text.substring(text.indexOf('.')).length > 3) && (event.which != 0 && event.which != 8) && ($(this)[0].selectionStart >= text.length - 3)) { event.preventDefault(); } }); $(document).on('keypress','.blkspace', function (event) { var k = event ? event.which : window.event.keyCode; if (k == 32) return false; }); // alllow number only 0-9 start //$(".CheckNum").keypress(function (e) { /*$(document).on('keypress','.CheckNum', function (e) { if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) { return false; } });*/ $(document).on('keypress','.CheckNum', function (e) { //if the letter is not digit then display error and don't type anything if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) { //display error message return false; } }); // allow only +,0-9 start $(".PhoneNumberFormat").keypress(function (e) { //if the letter is not digit then display error and don't type anything if (e.which != 8 && e.which != 0 && e.which != 43 && (e.which < 48 || e.which > 57)) { //display error message return false; } }); // phone number with leading +, +,0-9 $(".PhoneNumber").keypress(function (e) { if (e.which != 8 && e.which != 0 && e.which != 43 && (e.which < 48 || e.which > 57)) { return false; } }); // allow only .,0-9 start $('.decimalnumber').keypress(function(event) { if ((event.which != 46 || $(this).val().indexOf('.') != -1) && (event.which < 48 || event.which > 57)) { event.preventDefault(); } }); $(".twoPointDecimals").on("keypress", function (evt) { var $txtBox = $(this); var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57) && charCode != 46) return false; else { var len = $txtBox.val().length; var index = $txtBox.val().indexOf('.'); if (index > 0 && charCode == 46) { return false; } if (index > 0) { var charAfterdot = (len + 1) - index; if (charAfterdot > 3) { return false; } } } return $txtBox; //for chaining }); $(document).on('keypress','.2PntDecimal', function (evt) { var $txtBox = $(this); var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57) && charCode != 46) return false; else { var len = $txtBox.val().length; var index = $txtBox.val().indexOf('.'); if (index > 0 && charCode == 46) { return false; } if (index > 0) { var charAfterdot = (len + 1) - index; if (charAfterdot > 3) { return false; } } } return $txtBox; //for chaining }); /* Return to previous page ================================================*/ /* $("#backLink").click(function(event) { event.preventDefault(); history.back(1); });*/ function nospaces(t) { if(t.value.match(/\s/g)) { //alert('You are not allowed to enter any spaces'); t.value=t.value.replace(/\s/g,''); } } function check_alphabet_address(v) { if (/[^a-zA-Z\ \.\,\-]/.test(v.value)) { //alert("Please enter alphanumerics only"); v.value=v.value.replace(/[^a-zA-Z\ \.\,\-]/,''); return false; } else { return true; } } function check_alphanumeric_nospace(v) { if (/\W/.test(v.value)) { v.value=v.value.replace(/\W/,''); return false; } else { return true; } } function check_alphanumeric(v) { //alert('XXXXXXXXX'); if (/[^a-zA-Z0-9\&\ ]/.test(v.value)) { //alert("Please enter alphanumerics only"); v.value=v.value.replace(/[^a-zA-Z0-9\&\ ]/,''); return false; } else { return true; } /*if(t.value.match(/\s/g)) { //alert('You are not allowed to enter any spaces'); t.value=t.value.replace(/\s/g,''); }*/ } function check_alphaneu_spl(v) { //alert('XXXXXXXXX'); if (/[^a-zA-Z0-9\-\/]/.test(v.value)) { //alert("Please enter alphanumerics only"); v.value=v.value.replace(/[^a-zA-Z0-9\-\/]/,''); return false; } else { return true; } /*if(t.value.match(/\s/g)) { //alert('You are not allowed to enter any spaces'); t.value=t.value.replace(/\s/g,''); }*/ } function check_phone_fax(v) { if (/[^0-9\+]/.test(v.value)) { //alert("Please enter alphanumerics only"); v.value=v.value.replace(/[^0-9\+]/,''); return false; } else { return true; } } function check_numeric_dot(v) { if (/[^0-9\.]/.test(v.value)) { //alert("Please enter alphanumerics only"); v.value=v.value.replace(/[^0-9\.]/,''); return false; } else { return true; } } function check_number(v) { if (/[^0-9]/.test(v.value)) { //alert("Please enter alphanumerics only"); v.value=v.value.replace(/[^0-9]/,''); return false; } else { return true; } } function check_alphanumeric_dot(v) { if (/[^a-zA-Z0-9\.]/.test(v.value)) { //alert("Please enter alphanumerics only"); v.value=v.value.replace(/[^a-zA-Z0-9\.]/,''); return false; } else { return true; } } function check_alphanumeric_address(v) { if (/[^a-zA-Z0-9\ \.\,\-]/.test(v.value)) { //alert("Please enter alphanumerics only"); v.value=v.value.replace(/[^a-zA-Z0-9\ \.\,\-]/,''); return false; } else { return true; } } function check_numeric(v) { if (/\D/.test(v.value)) { //alert("Please enter alphanumerics only"); v.value=v.value.replace(/\D/,''); return false; } else { return true; } } function check_email(e) { var reg1 = /(@.*@)|(\.\.)|(@\.)|(\.@)|(^\.)/; var reg2 = /^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,3}|[0-9]{1,3})(\]?)$/; if (!reg1.test(e) && reg2.test(e)) { return true; } else { return false; } } function check_alphanumeric_bill(v) //this will allow a to z, 0 to 9, / and - { if (/[^a-zA-Z0-9\/\-]/.test(v.value)) { //alert("Please enter alphanumerics only"); v.value=v.value.replace(/[^a-zA-Z0-9\/\-]/,''); return false; } else { return true; } } $(window).load(function() { // Animate loader off screen $('.preloader').delay(300).fadeOut(500); }); /* Return to previous page ================================================*/ $("#backId").click(function(event) { event.preventDefault(); history.back(1); });
Close