Linux server19.dn-server.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 46.209.20.154 & Your IP : 216.73.217.55
Domains :
Cant Read [ /etc/named.conf ]
User : emadteam
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
emadteam /
public_html /
hosting /
assets /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
tinymce
[ DIR ]
drwxr-xr-x
2026-08-12 16:46
whmcs
[ DIR ]
drwxr-xr-x
2026-08-12 16:46
Admin.js
38.99
KB
-rw-r--r--
2024-09-28 11:58
AdminAdvSearch.js
1.49
KB
-rw-r--r--
2024-09-28 11:58
AdminClientDropdown.js
4.72
KB
-rw-r--r--
2024-09-28 11:58
AdminClientTicketTab.js
3.23
KB
-rw-r--r--
2024-09-28 11:58
AdminConfigServersInterface.js
10.78
KB
-rw-r--r--
2024-09-28 11:58
AdminDashboard.js
7.35
KB
-rw-r--r--
2024-09-28 11:58
AdminDropdown.js
11.6
KB
-rw-r--r--
2024-09-28 11:58
AdminOpenTicketInterface.js
10.43
KB
-rw-r--r--
2024-09-28 11:58
AdminTicketInterface.js
26.35
KB
-rw-r--r--
2024-09-28 11:58
AjaxModal.js
12.68
KB
-rw-r--r--
2024-09-28 11:58
AutomationStatus.js
1.94
KB
-rw-r--r--
2024-09-28 11:58
ConfigBackups.js
7.14
KB
-rw-r--r--
2024-09-28 11:58
CreditCardValidation.js
1.16
KB
-rw-r--r--
2024-09-28 11:58
DateRangePicker.js
4.77
KB
-rw-r--r--
2024-09-28 11:58
MarketConnect.js
3.56
KB
-rw-r--r--
2024-09-28 11:58
ModuleQueue.js
5.43
KB
-rw-r--r--
2024-09-28 11:58
PasswordStrength.js
4.04
KB
-rw-r--r--
2024-09-28 11:58
Sortable.min.js
11.09
KB
-rw-r--r--
2024-09-28 11:58
StatesDropdown.js
10.93
KB
-rw-r--r--
2024-09-28 11:58
TelephoneCountryCodeDropdown.js
8.78
KB
-rw-r--r--
2024-09-28 11:58
bootstrap-tabdrop.js
3.09
KB
-rw-r--r--
2024-09-28 11:58
bootstrap.min.js
38.75
KB
-rw-r--r--
2024-09-28 11:58
dataTables.bootstrap.js
4.62
KB
-rw-r--r--
2024-09-28 11:58
dataTables.bootstrap.min.js
1.9
KB
-rw-r--r--
2024-09-28 11:58
dataTables.responsive.js
23.06
KB
-rw-r--r--
2024-09-28 11:58
dataTables.responsive.min.js
6.79
KB
-rw-r--r--
2024-09-28 11:58
fullcalendar.min.js
72.3
KB
-rw-r--r--
2024-09-28 11:58
index.php
42
B
-rw-r--r--
2024-09-28 11:58
ion.rangeSlider.js
69.61
KB
-rw-r--r--
2024-09-28 11:58
ion.rangeSlider.min.js
35.35
KB
-rw-r--r--
2024-09-28 11:58
jquery.dataTables.js
425.48
KB
-rw-r--r--
2024-09-28 11:58
jquery.dataTables.min.js
77.13
KB
-rw-r--r--
2024-09-28 11:58
jquery.highlight-5.js
1.42
KB
-rw-r--r--
2024-09-28 11:58
jquery.knob.js
20.26
KB
-rw-r--r--
2024-09-28 11:58
jquery.min.js
94.89
KB
-rw-r--r--
2024-09-28 11:58
jquery.miniColors.js
22.42
KB
-rw-r--r--
2024-09-28 11:58
jquery.payment.js
18.09
KB
-rw-r--r--
2024-09-28 11:58
jqueryFileTree.js
4.6
KB
-rw-r--r--
2024-09-28 11:58
jquerylq.js
3.56
KB
-rw-r--r--
2024-09-28 11:58
jqueryro.js
16.76
KB
-rw-r--r--
2024-09-28 11:58
jquerytt.js
5.39
KB
-rw-r--r--
2024-09-28 11:58
moment.min.js
31.03
KB
-rw-r--r--
2024-09-28 11:58
selectize.js
96.29
KB
-rw-r--r--
2024-09-28 11:58
selectize.min.js
41.33
KB
-rw-r--r--
2024-09-28 11:58
whmcs.js
2.76
KB
-rw-r--r--
2024-09-28 11:58
Save
Rename
/** * WHMCS Telephone Country Code Dropdown * * Using https://github.com/jackocnr/intl-tel-input * * @copyright Copyright (c) WHMCS Limited 2005-2019 * @license https://www.whmcs.com/license/ WHMCS Eula */ jQuery(document).ready(function() { if (typeof customCountryData !== "undefined") { var teleCountryData = $.fn['intlTelInput'].getCountryData(); for (var code in customCountryData) { if (customCountryData.hasOwnProperty(code)) { var countryDetails = customCountryData[code]; codeLower = code.toLowerCase(); if (countryDetails === false) { for (var i = 0; i < teleCountryData.length; i++) { if (codeLower === teleCountryData[i].iso2) { teleCountryData.splice(i, 1); break; } } } else { teleCountryData.push( { name: countryDetails.name, iso2: codeLower, dialCode: countryDetails.callingCode, priority: 0, areaCodes: null } ); } } } } if (jQuery('body').data('phone-cc-input')) { var phoneInput = jQuery('input[name^="phone"], input[name$="phone"], input[name="domaincontactphonenumber"]').not('input[type="hidden"]'); if (phoneInput.length) { var countryInput = jQuery('[name^="country"], [name$="country"]'), initialCountry = 'us'; if (countryInput.length) { initialCountry = countryInput.val().toLowerCase(); if (initialCountry === 'um') { initialCountry = 'us'; } } phoneInput.each(function(){ var thisInput = jQuery(this), inputName = thisInput.attr('name'); if (inputName === 'domaincontactphonenumber') { initialCountry = jQuery('[name="domaincontactcountry"]').val().toLowerCase(); } jQuery(this).before( '<input id="populatedCountryCode' + inputName + '" type="hidden" name="country-calling-code-' + inputName + '" value="" />' ); thisInput.intlTelInput({ preferredCountries: [initialCountry, "us", "gb"].filter(function(value, index, self) { return self.indexOf(value) === index; }), initialCountry: initialCountry, autoPlaceholder: 'polite', //always show the helper placeholder separateDialCode: true }); thisInput.on('countrychange', function (e, countryData) { jQuery('#populatedCountryCode' + inputName).val(countryData.dialCode); if (jQuery(this).val() === '+' + countryData.dialCode) { jQuery(this).val(''); } }); thisInput.on('blur keydown', function (e) { if (e.type === 'blur' || (e.type === 'keydown' && e.keyCode === 13)) { var number = jQuery(this).intlTelInput("getNumber"), countryData = jQuery(this).intlTelInput("getSelectedCountryData"), countryPrefix = '+' + countryData.dialCode; if (number.indexOf(countryPrefix) === 0 && (number.match(/\+/g) || []).length > 1) { number = number.substr(countryPrefix.length); } jQuery(this).intlTelInput("setNumber", number); } }); jQuery('#populatedCountryCode' + inputName).val(thisInput.intlTelInput('getSelectedCountryData').dialCode); countryInput.on('change', function() { if (thisInput.val() === '') { var country = jQuery(this).val().toLowerCase(); if (country === 'um') { country = 'us'; } phoneInput.intlTelInput('setCountry', country); } }); // this must be .attr (not .data) in order for it to be found by [data-initial-value] selector thisInput.attr('data-initial-value', $(thisInput).val()); thisInput.parents('form').find('input[type=reset]').each(function() { var resetButton = this; var form = $(resetButton).parents('form'); if (!$(resetButton).data('phone-handler')) { $(resetButton).data('phone-handler', true); $(resetButton).click(function(e) { e.stopPropagation(); $(form).trigger('reset'); $(form).find('input[data-initial-value]').each(function() { var inputToReset = this; $(inputToReset).val( $(inputToReset).attr('data-initial-value') ); }); return false; }); } }); }); /** * In places where a form icon is present, hide it. * Where the input has a class of field, remove that and add form-control in place. */ phoneInput.parents('div.form-group').find('.field-icon').hide().end(); phoneInput.removeClass('field').addClass('form-control'); } var registrarPhoneInput = jQuery('input[name$="][Phone Number]"], input[name$="][Phone]"]').not('input[type="hidden"]'); if (registrarPhoneInput.length) { jQuery.each(registrarPhoneInput, function(index, input) { var thisInput = jQuery(this), inputName = thisInput.attr('name'); inputName = inputName.replace('contactdetails[', '').replace('][Phone Number]', '').replace('][Phone]', ''); var countryInput = jQuery('[name$="' + inputName + '][Country]"]'), initialCountry = countryInput.val().toLowerCase(); if (initialCountry === 'um') { initialCountry = 'us'; } thisInput.before('<input id="populated' + inputName + 'CountryCode" class="' + inputName + 'customwhois" type="hidden" name="contactdetails[' + inputName + '][Phone Country Code]" value="" />'); thisInput.intlTelInput({ preferredCountries: [initialCountry, "us", "gb"].filter(function(value, index, self) { return self.indexOf(value) === index; }), initialCountry: initialCountry, autoPlaceholder: 'polite', //always show the helper placeholder separateDialCode: true }); thisInput.on('countrychange', function (e, countryData) { jQuery('#populated' + inputName + 'CountryCode').val(countryData.dialCode); if (jQuery(this).val() === '+' + countryData.dialCode) { jQuery(this).val(''); } }); thisInput.on('blur keydown', function (e) { if (e.type === 'blur' || (e.type === 'keydown' && e.keyCode === 13)) { var number = jQuery(this).intlTelInput("getNumber"), countryData = jQuery(this).intlTelInput("getSelectedCountryData"), countryPrefix = '+' + countryData.dialCode; if (number.indexOf(countryPrefix) === 0 && (number.match(/\+/g) || []).length > 1) { number = number.substr(countryPrefix.length); } jQuery(this).intlTelInput("setNumber", number); } }); jQuery('#populated' + inputName + 'CountryCode').val(thisInput.intlTelInput('getSelectedCountryData').dialCode); countryInput.on('blur', function() { if (thisInput.val() === '') { var country = jQuery(this).val().toLowerCase(); if (country === 'um') { country = 'us'; } thisInput.intlTelInput('setCountry', country); } }); }); } } });