Current Path: > home > transcarter > > www > wp-content > plugins > wordfence > js
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.135 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
admin.1744125809.js | File | 147817 bytes | July 17 2025 21:05:47. | |
admin.ajaxWatcher.1744125809.js | File | 15569 bytes | July 17 2025 21:05:47. | |
admin.liveTraffic.1744125809.js | File | 29285 bytes | July 17 2025 21:05:47. | |
chart.umd.1744125809.js | File | 203190 bytes | July 17 2025 21:05:47. | |
date.1744125809.js | File | 23344 bytes | July 17 2025 21:05:47. | |
jquery-ui-timepicker-addon.1744125809.js | File | 80707 bytes | July 17 2025 21:05:47. | |
jquery.colorbox-min.1744125809.js | File | 11898 bytes | July 17 2025 21:05:47. | |
jquery.colorbox.1744125809.js | File | 29173 bytes | July 17 2025 21:05:47. | |
jquery.qrcode.min.1744125809.js | File | 13995 bytes | July 17 2025 21:05:47. | |
jquery.tmpl.min.1744125809.js | File | 6115 bytes | July 17 2025 21:05:47. | |
knockout-3.5.1.1744125809.js | File | 68249 bytes | July 17 2025 21:05:47. | |
wfdashboard.1744125809.js | File | 365 bytes | July 17 2025 21:05:47. | |
wfdropdown.1744125809.js | File | 4689 bytes | July 17 2025 21:05:47. | |
wfglobal.1744125809.js | File | 32374 bytes | July 17 2025 21:05:47. | |
wfi18n.1744125809.js | File | 6491 bytes | July 17 2025 21:05:47. | |
wfonboarding.1744125809.js | File | 4824 bytes | July 17 2025 21:05:47. | |
wfpopover.1744125809.js | File | 22985 bytes | July 17 2025 21:05:47. | |
wfselect2.min.1744125809.js | File | 79628 bytes | July 17 2025 21:05:47. |
(function($) { $(function() { function showRegistrationModal(id, message) { console.log("Registration error message: ", message); var content = $("#wf-onboarding-registration-" + id + "-template").clone().attr('id', null); if (message) content.find('.message').empty().text(message); $.wfcolorbox({ width: (wordfenceExt.isSmallScreen ? '300px' : '500px'), html: content[0].outerHTML, overlayClose: false, closeButton: false, className: 'wf-modal' }); } function toggleInstallType(event) { event.preventDefault(); event.stopPropagation(); $(event.target).parents('.wf-onboarding-registration-prompt').find('.wf-onboarding-install-type').toggle(); $.wfcolorbox.resize(); } $(document).on('click', '.wf-onboarding-install-type-toggle', toggleInstallType); $('.wf-onboarding-install-type-toggle').on('click', toggleInstallType); $(document).on('input', '#wf-onboarding-email-input,#wf-onboarding-license-input', function(event) { var context = $(event.target).parents('.wf-onboarding-registration-prompt'); context.find('.wf-onboarding-consent-group').show(); context.find('#wf-onboarding-consent-input').prop('checked', false); }); var subscriptionOptionSelector = '.wf-onboarding-subscription-options li'; function handleSubscriptionOptionClick(event) { var target = $(event.target); target.parent().find('li').removeClass('wf-active').attr('aria-checked', 'false'); target.addClass('wf-active').attr('aria-checked', 'true'); event.stopPropagation(); }; $(subscriptionOptionSelector).on('click', handleSubscriptionOptionClick); $(document).on('click', subscriptionOptionSelector, handleSubscriptionOptionClick); $(document).on('keyup keydown', subscriptionOptionSelector, function (event) { if (event.which == 32) { event.preventDefault(); event.stopPropagation(); if (event.type == 'keyup') $(event.target).trigger('click'); } }); $(document).on('submit', '.wf-onboarding-form', function(event) { event.preventDefault(); var context = $(this); if (context.data('submitting')) return; context.data('submitting', true); var button = context.find('button'); button.prop('disabled', true); var enable = function (result) { context.data('submitting', false); button.prop('disabled', false); if (typeof result !== 'undefined') return result; }; var email = context.find('#wf-onboarding-email-input').val(); var licenseKey = context.find('#wf-onboarding-license-input').val(); var subscriptionWarning = context.find('.wf-onboarding-subscription-option-required').hide(); var subscribe = false; if (context.find('.wf-onboarding-subscription-options:visible').length) { var subscriptionOption = context.find(subscriptionOptionSelector).filter('.wf-active'); if (!subscriptionOption.length) { subscriptionWarning.show(); return enable(false); } subscribe = !!parseInt(subscriptionOption.data('value')); } var attempt = context.data('attempt'); var optionKey = 'onboardingAttempt' + attempt; var optionValueEmail = context.data('option-value-email'); var optionValueLicense = context.data('option-value-license'); wordfenceExt.onboardingInstallLicense( licenseKey, function(licenseResponse) { wordfenceExt.setOption( optionKey, optionValueLicense, function(optionResponse) { wordfenceExt.onboardingProcessEmails( [ email ], subscribe, null, function(success, error) { if (!success) { showRegistrationModal('error', error); enable(); return; } var modalType = 'free'; if (licenseResponse.isPaid) { modalType = 'premium'; if (licenseResponse.type === 'care' || licenseResponse.type === 'response') { modalType = licenseResponse.type; } } if (licenseResponse.inUse) { showRegistrationModal('inuse-' + modalType); } else { showRegistrationModal('success-' + modalType); } enable(); } ); }, function() { showRegistrationModal('error'); enable(); } ); }, function(error) { showRegistrationModal('error', (typeof error === 'string') ? error : null); enable(); } ); }); $(document).on('click', '#wf-onboarding-delay', function() { wordfenceExt.setOption( 'onboardingDelayedAt', $('#wf-onboarding-delay').data('timestamp'), function() { $('#wf-onboarding-banner').hide(); showRegistrationModal('delayed'); }, function() { showRegistrationModal('delayed-error'); } ); }); }); })(jQuery);
SILENT KILLER Tool