Changeset 2563792
- Timestamp:
- 07/13/2021 06:06:40 PM (5 years ago)
- Location:
- bad-ip-wp
- Files:
-
- 1 deleted
- 3 edited
- 16 copied
-
tags/1.1.2 (copied) (copied from bad-ip-wp/trunk)
-
tags/1.1.2/README.txt (copied) (copied from bad-ip-wp/trunk/README.txt) (2 diffs)
-
tags/1.1.2/admin/class-bad_ip_wp-admin.php (copied) (copied from bad-ip-wp/trunk/admin/class-bad_ip_wp-admin.php)
-
tags/1.1.2/admin/js/bad_ip_wp-admin.js (copied) (copied from bad-ip-wp/trunk/admin/js/bad_ip_wp-admin.js)
-
tags/1.1.2/admin/partials/bad_ip_404_hook.php (copied) (copied from bad-ip-wp/trunk/admin/partials/bad_ip_404_hook.php)
-
tags/1.1.2/admin/partials/bad_ip_admin_dashboard_page.php (copied) (copied from bad-ip-wp/trunk/admin/partials/bad_ip_admin_dashboard_page.php)
-
tags/1.1.2/admin/partials/bad_ip_admin_menu_actions.php (copied) (copied from bad-ip-wp/trunk/admin/partials/bad_ip_admin_menu_actions.php)
-
tags/1.1.2/admin/partials/bad_ip_admin_settings_page.php (copied) (copied from bad-ip-wp/trunk/admin/partials/bad_ip_admin_settings_page.php)
-
tags/1.1.2/admin/partials/bad_ip_head_hook.php (copied) (copied from bad-ip-wp/trunk/admin/partials/bad_ip_head_hook.php)
-
tags/1.1.2/admin/partials/bad_ip_login_hook.php (copied) (copied from bad-ip-wp/trunk/admin/partials/bad_ip_login_hook.php)
-
tags/1.1.2/admin/partials/class-bad_ip_actions.php (copied) (copied from bad-ip-wp/trunk/admin/partials/class-bad_ip_actions.php)
-
tags/1.1.2/admin/partials/views (copied) (copied from bad-ip-wp/trunk/admin/partials/views)
-
tags/1.1.2/admin/partials/views/page-dashboard.twig (copied) (copied from bad-ip-wp/trunk/admin/partials/views/page-dashboard.twig) (4 diffs)
-
tags/1.1.2/admin/partials/views/page-settings.twig (copied) (copied from bad-ip-wp/trunk/admin/partials/views/page-settings.twig)
-
tags/1.1.2/admin/views (deleted)
-
tags/1.1.2/bad_ip_wp.php (copied) (copied from bad-ip-wp/trunk/bad_ip_wp.php) (2 diffs)
-
tags/1.1.2/screenshot-1.png (copied) (copied from bad-ip-wp/trunk/screenshot-1.png)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/partials/views/page-dashboard.twig (modified) (4 diffs)
-
trunk/bad_ip_wp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bad-ip-wp/tags/1.1.2/README.txt
r2382778 r2563792 3 3 Tags: bad_ip, firewall, login protection, security, tor, block, malicious, bad, ip, ban, auto, list 4 4 Requires at least: 3.0.1 5 <<<<<<< HEAD 6 Tested up to: 5.3.2 7 Stable tag: 1.0.8 8 ======= 5 9 Tested up to: 5.5.1 6 Stable tag: 1.1.1 10 Stable tag: 1.1.2 11 >>>>>>> 046a612abd639c6f6ee3362d6bc3ac093b9a7420 7 12 License: GPLv2 or later 8 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 58 54 59 == Changelog == 60 61 = 1.1.2 = 62 * Regular refactoring and optimisation 55 63 56 64 = 1.1.1 = -
bad-ip-wp/tags/1.1.2/admin/partials/views/page-dashboard.twig
r2313427 r2563792 173 173 <span class="icon text-success" title="Send request to unlist IP" onclick="ipUnlistRequest('{{ bad_ip.ip }}');return false;"> 174 174 <i class="fas fa-eraser"></i> 175 </span> 175 </span> 176 176 </td> 177 177 <td class="text-primary"> … … 196 196 </div> 197 197 198 198 199 199 200 200 {# <div class="col-lg-8">#} … … 248 248 <td class="text-danger"> 249 249 {{ bad_ip.ip }} 250 250 251 251 </td> 252 252 <td> 253 {{ bad_ip.action }}253 {{ bad_ip.action|striptags }} 254 254 255 <span class="icon text-{% if marked %}success{% else %}danger{% endif %}" title="{% if marked %}Remove query from whitelist{% else %}Whitelist this query{% endif %}" onclick="queryUnlistRequest('{{action}}','{{ bad_ip.action }}');return false;"> 256 <i class="fas fa-unlink"></i> 257 </span> 255 {# <span class="icon text-{% if marked %}success{% else %}danger{% endif %}" title="{% if marked %}Remove query from whitelist{% else %}Whitelist this query{% endif %}" onclick="queryUnlistRequest('{{action}}','{{ bad_ip.action }}');return false;">#} 256 {# <i class="fas fa-unlink"></i>#} 257 {# </span>#} 258 258 </td> 259 259 <td class="text-primary"> … … 295 295 </div> 296 296 297 297 298 298 299 299 </div> -
bad-ip-wp/tags/1.1.2/bad_ip_wp.php
r2382778 r2563792 11 11 * Plugin URI: https://bad-ip.iridiumintel.com 12 12 * Description: Protecting from malicious IP addresses visiting and trying to exploit your website with addition to block Tor endpoints 13 * Version: 1.1. 113 * Version: 1.1.2 14 14 * Author: Iridium Intelligence 15 15 * Author URI: https://iridiumintel.com … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define( 'BAD_IP_WP_VERSION', '1.1. 1' );37 define( 'BAD_IP_WP_VERSION', '1.1.2' ); 38 38 define( 'BAD_IP_WP_NAME', trim(dirname(plugin_basename(__FILE__)), '/')); 39 39 define( 'BAD_IP_WP_URL', plugins_url( basename( plugin_dir_path(__FILE__) ), basename( __FILE__ ) )); -
bad-ip-wp/trunk/README.txt
r2382778 r2563792 3 3 Tags: bad_ip, firewall, login protection, security, tor, block, malicious, bad, ip, ban, auto, list 4 4 Requires at least: 3.0.1 5 <<<<<<< HEAD 6 Tested up to: 5.3.2 7 Stable tag: 1.0.8 8 ======= 5 9 Tested up to: 5.5.1 6 Stable tag: 1.1.1 10 Stable tag: 1.1.2 11 >>>>>>> 046a612abd639c6f6ee3362d6bc3ac093b9a7420 7 12 License: GPLv2 or later 8 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 58 54 59 == Changelog == 60 61 = 1.1.2 = 62 * Regular refactoring and optimisation 55 63 56 64 = 1.1.1 = -
bad-ip-wp/trunk/admin/partials/views/page-dashboard.twig
r2313427 r2563792 173 173 <span class="icon text-success" title="Send request to unlist IP" onclick="ipUnlistRequest('{{ bad_ip.ip }}');return false;"> 174 174 <i class="fas fa-eraser"></i> 175 </span> 175 </span> 176 176 </td> 177 177 <td class="text-primary"> … … 196 196 </div> 197 197 198 198 199 199 200 200 {# <div class="col-lg-8">#} … … 248 248 <td class="text-danger"> 249 249 {{ bad_ip.ip }} 250 250 251 251 </td> 252 252 <td> 253 {{ bad_ip.action }}253 {{ bad_ip.action|striptags }} 254 254 255 <span class="icon text-{% if marked %}success{% else %}danger{% endif %}" title="{% if marked %}Remove query from whitelist{% else %}Whitelist this query{% endif %}" onclick="queryUnlistRequest('{{action}}','{{ bad_ip.action }}');return false;"> 256 <i class="fas fa-unlink"></i> 257 </span> 255 {# <span class="icon text-{% if marked %}success{% else %}danger{% endif %}" title="{% if marked %}Remove query from whitelist{% else %}Whitelist this query{% endif %}" onclick="queryUnlistRequest('{{action}}','{{ bad_ip.action }}');return false;">#} 256 {# <i class="fas fa-unlink"></i>#} 257 {# </span>#} 258 258 </td> 259 259 <td class="text-primary"> … … 295 295 </div> 296 296 297 297 298 298 299 299 </div> -
bad-ip-wp/trunk/bad_ip_wp.php
r2382778 r2563792 11 11 * Plugin URI: https://bad-ip.iridiumintel.com 12 12 * Description: Protecting from malicious IP addresses visiting and trying to exploit your website with addition to block Tor endpoints 13 * Version: 1.1. 113 * Version: 1.1.2 14 14 * Author: Iridium Intelligence 15 15 * Author URI: https://iridiumintel.com … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define( 'BAD_IP_WP_VERSION', '1.1. 1' );37 define( 'BAD_IP_WP_VERSION', '1.1.2' ); 38 38 define( 'BAD_IP_WP_NAME', trim(dirname(plugin_basename(__FILE__)), '/')); 39 39 define( 'BAD_IP_WP_URL', plugins_url( basename( plugin_dir_path(__FILE__) ), basename( __FILE__ ) ));
Note: See TracChangeset
for help on using the changeset viewer.