????
| Current Path : /home2/morganrand/www/wp-content/plugins/sucuri-scanner/inc/tpl/ |
| Current File : /home2/morganrand/www/wp-content/plugins/sucuri-scanner/inc/tpl/firewall-ipaccess.html.tpl |
<script type="text/javascript">
/* global jQuery */
/* jshint forin: false */
/* jshint camelcase: false */
jQuery(document).ready(function ($) {
var sucuriscanLoadIPAccess = function () {
// $('.sucuriscan-ipaccess-table tbody').html('<tr>' +
// '<td colspan="2">Loading...</td></tr>');
$.post('%%SUCURI.AjaxURL.Firewall%%', {
action: 'sucuriscan_ajax',
sucuriscan_page_nonce: '%%SUCURI.PageNonce%%',
form_action: 'firewall_ipaccess',
}, function (data) {
$('.sucuriscan-ipaccess-table tbody').html('');
for (var i in data.blacklist) {
$('.sucuriscan-ipaccess-table tbody').append('<tr>' +
'<td><span class="sucuriscan-monospace">' + data.blacklist[i] + '</span></td>' +
'<td><button class="button button-primary sucuriscan-deblacklist" ' +
'ip="' + data.blacklist[i] + '">{{Delete}}</button></td>' +
'</tr>');
}
});
};
var sucuriscanPrintStatus = function (button, data) {
button.attr('disabled', false);
button.html('{{Submit}}');
if (data.ok) {
sucuriscanLoadIPAccess();
$('#sucuriscan-ipaccess-response').html('<div '+
'class="sucuriscan-inline-alert-success"><p>' +
data.msg + '</p></div>');
} else {
$('#sucuriscan-ipaccess-response').html('<div '+
'class="sucuriscan-inline-alert-error"><p>' +
data.msg + '</p></div>');
}
};
$('.sucuriscan-container').on('click', '.sucuriscan-ipaccess-button', function (event) {
event.preventDefault();
var button = $(this);
var ip = $('.sucuriscan-ipaccess-form input[name=sucuriscan_ip]').val();
button.attr('disabled', true);
button.html('{{Loading...}}');
$('#sucuriscan-ipaccess-response').html('');
$.post('%%SUCURI.AjaxURL.Firewall%%', {
action: 'sucuriscan_ajax',
sucuriscan_page_nonce: '%%SUCURI.PageNonce%%',
form_action: 'firewall_blacklist',
ip: ip,
}, function (data) {
sucuriscanPrintStatus(button, data);
});
});
$('.sucuriscan-container').on('click', '.sucuriscan-deblacklist', function (event) {
event.preventDefault();
var button = $(this);
button.attr('disabled', true);
button.html('{{Loading...}}');
$('#sucuriscan-ipaccess-response').html('');
$.post('%%SUCURI.AjaxURL.Firewall%%', {
action: 'sucuriscan_ajax',
sucuriscan_page_nonce: '%%SUCURI.PageNonce%%',
form_action: 'firewall_deblacklist',
ip: button.attr('ip'),
}, function (data) {
sucuriscanPrintStatus(button, data);
});
});
sucuriscanLoadIPAccess();
});
</script>
<div class="sucuriscan-panel">
<h3 class="sucuriscan-title">{{IP Address Access}}</h3>
<div class="inside">
<p>{{This tool allows you to whitelist and blacklist one or more IP addresses from accessing your website. You can also configure the plugin to automatically blacklist any IP address involved in a password guessing brute-force attack. If a legitimate user fails to submit the correct credentials of their account they will have to log into the Firewall dashboard in order to delete their IP address from the blacklist, or try to login once again through a VPN.}}</p>
<div id="sucuriscan-ipaccess-response"></div>
<form action="%%SUCURI.URL.Firewall%%#ipaccess" method="post" class="sucuriscan-ipaccess-form">
<input type="hidden" name="sucuriscan_blacklist_ip" value="true" />
<fieldset class="sucuriscan-clearfix">
<label>{{Blacklist IP:}}</label>
<input type="text" name="sucuriscan_ip" placeholder="{{e.g. 192.168.1.54}}" />
<button class="button button-primary sucuriscan-ipaccess-button">{{Submit}}</button>
</fieldset>
</form>
<table class="wp-list-table widefat sucuriscan-table sucuriscan-ipaccess-table">
<thead>
<tr>
<th>{{IP Address}}</th>
<th> </th>
</tr>
</thead>
<tbody>
<tr><td colspan="2">{{Loading...}}</td></tr>
</tbody>
</table>
</div>
</div>