Plugin Directory

Changeset 2313427


Ignore:
Timestamp:
05/27/2020 11:16:07 PM (6 years ago)
Author:
iridiumintel
Message:

Version 1.0.2

Location:
bad-ip-wp
Files:
1 deleted
6 edited
15 copied

Legend:

Unmodified
Added
Removed
  • bad-ip-wp/tags/1.0.2/trunk/README.txt

    r2312970 r2313427  
    44Requires at least: 3.0.1
    55Tested up to: 5.4.1
    6 Stable tag: 1.0.13
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353
    5454== Changelog ==
     55
     56= 1.0.2 =
     57* Regular refactoring and optimisation
    5558
    5659= 1.0.13 =
  • bad-ip-wp/tags/1.0.2/trunk/admin/partials/views/page-dashboard.twig

    r2312968 r2313427  
    66
    77<div class="container-fluid">
    8     {#{{ bad_ips_report_pm|length }}#}
    9 
    10     <!-- Page Heading -->
    11     {#<div class="d-sm-flex align-items-center justify-content-between mb-4">#}
    12         {#<h1 class="h3 mb-0 text-gray-800">Cards</h1>#}
    13     {#</div>#}
    148
    159    <div class="row">
  • bad-ip-wp/tags/1.0.2/trunk/admin/partials/views/page-settings.twig

    r2247105 r2313427  
    55
    66<div class="container-fluid" style="margin-top: 15px;">
    7     {#{{ bad_ips_report_pm|length }}#}
    8 
    9 
    107
    118    <!-- Page Heading -->
    12     {#<div class="d-sm-flex align-items-center justify-content-between mb-4">#}
    13         {#<h1 class="h3 mb-0 text-gray-800">Cards</h1>#}
    14     {#</div>#}
    159    <h1 class="h3 mb-4 text-gray-800">Settings</h1>
    1610
    17     {#{{ settings|print_r }}#}
    1811    <div class="row">
    1912
     
    5649
    5750                    <form id="form-bad_queries" action=" " method="POST">
    58                         {#<input type="checkbox" name="bad_queries" id="bad_queries" checked hidden>#}
    5951                        <input type="text" name="bad_queries" id="bad_queries" value="{{ settings.bad_queries }}" hidden>
    6052                    </form>
     
    8375
    8476                    <form id="form-tor" action=" " method="POST">
    85                         {#<input type="checkbox" name="tor_block" id="tor_block" checked hidden>#}
    8677                        <input type="text" name="tor_block" id="tor_block" value="{{ settings.tor_block }}" hidden>
    8778                    </form>
     
    10697
    10798                    <form id="form-deny-access" action=" " method="POST">
    108                         {#<input type="checkbox" name="deny_access" id="deny_access" value="{{ settings.deny_access }}" checked hidden>#}
    10999                        <input type="text" name="deny_access" id="deny_access" value="{{ settings.deny_access }}" hidden>
    110100                    </form>
     
    161151                    </a>
    162152                    <form id="form-origin" action=" " method="POST">
    163                         {#<input type="checkbox" name="deny_access" id="deny_access" value="{{ settings.deny_access }}" checked hidden>#}
    164153                        <input type="text" name="origin" id="origin" value="{{ settings.origin }}" hidden>
    165154                    </form>
     
    176165                    </a>
    177166                    <form id="form-bot_access" action=" " method="POST">
    178                         {#<input type="checkbox" name="deny_access" id="deny_access" value="{{ settings.deny_access }}" checked hidden>#}
    179167                        <input type="text" name="bot_access" id="bot_access" value="{{ settings.bot_access }}" hidden>
    180168                    </form>
     
    213201
    214202        <div class="col-lg-6">
    215         <div class="card  col-lg-12">
     203
     204            <div class="card  col-lg-12">
    216205                <div class="card-header py-3 d-flex bg-dark flex-row align-items-center justify-content-between">
    217206                    <h6 class="m-0 font-weight-bold text-white">Whitelist | Blacklist</h6>
     
    223212                        <span class="text">Save</span>
    224213                    </a>
    225                    
    226                         {# <input type="text" name="origin" id="origin" value="{{ settings.origin }}" hidden> #}
    227                 </div>
    228                     <div class="card-body">
     214
     215                </div>
     216                <div class="card-body">
    229217                    <form id="form-lists" action=" " method="POST">
    230                     <div class="row">
    231                         <div class="card col-lg-6">
    232                             <p>Add IP's that you trust that cannot be reported or blocked</p>
    233                             <textarea id="whiteListTXT" name="whiteListText" rows="13" class="whitelisttxt" placeholder="Separate IP addresses by space or new line">{% if whiteList %}{{ whiteList }}{% endif %}</textarea>
    234                         </div>
    235                         <div class="card col-lg-6">
    236                             <p>Add IP's that you want to block from accessing your website</p>
    237                             <textarea id="blackListTXT" name="blackListText" rows="13" class="blacklisttxt text-white" placeholder="Separate IP addresses by space or new line" style="background-color:black;">{% if blackList %}{{ blackList }}{% endif %}</textarea>
    238                         </div>
    239                     </div>
    240                     </row>
    241                     </form>
    242         </div>
    243         </div>
     218                        <div class="row">
     219                            <div class="card col-lg-6">
     220                                <p>Add IP's that you trust that cannot be reported or blocked</p>
     221                                <textarea id="whiteListTXT" name="whiteListText" rows="13" class="whitelisttxt" placeholder="Separate IP addresses by space or new line">{% if whiteList %}{{ whiteList }}{% endif %}</textarea>
     222                            </div>
     223                            <div class="card col-lg-6">
     224                                <p>Add IP's that you want to block from accessing your website</p>
     225                                <textarea id="blackListTXT" name="blackListText" rows="13" class="blacklisttxt text-white" placeholder="Separate IP addresses by space or new line" style="background-color:black;">{% if blackList %}{{ blackList }}{% endif %}</textarea>
     226                            </div>
     227                        </div>
     228                    </form>
     229                </div>
     230            </div>
    244231
    245232    </div>
  • bad-ip-wp/tags/1.0.2/trunk/bad_ip_wp.php

    r2312970 r2313427  
    1111 * Plugin URI:        https://bad-ip.iridiumintel.com
    1212 * Description:       Protecting from malicious IP addresses visiting and trying to exploit your website with addition to block Tor endpoints
    13  * Version:           1.0.13
     13 * Version:           1.0.2
    1414 * Author:            Iridium Intelligence
    1515 * Author URI:        https://iridiumintel.com
     
    3535 * Rename this for your plugin and update it as you release new versions.
    3636 */
    37 define( 'BAD_IP_WP_VERSION', '1.0.13' );
     37define( 'BAD_IP_WP_VERSION', '1.0.2' );
    3838define( 'BAD_IP_WP_NAME', trim(dirname(plugin_basename(__FILE__)), '/'));
    3939define( 'BAD_IP_WP_URL', plugins_url( basename( plugin_dir_path(__FILE__) ), basename( __FILE__ ) ));
  • bad-ip-wp/trunk/README.txt

    r2312970 r2313427  
    44Requires at least: 3.0.1
    55Tested up to: 5.4.1
    6 Stable tag: 1.0.13
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353
    5454== Changelog ==
     55
     56= 1.0.2 =
     57* Regular refactoring and optimisation
    5558
    5659= 1.0.13 =
  • bad-ip-wp/trunk/admin/partials/views/page-dashboard.twig

    r2312968 r2313427  
    66
    77<div class="container-fluid">
    8     {#{{ bad_ips_report_pm|length }}#}
    9 
    10     <!-- Page Heading -->
    11     {#<div class="d-sm-flex align-items-center justify-content-between mb-4">#}
    12         {#<h1 class="h3 mb-0 text-gray-800">Cards</h1>#}
    13     {#</div>#}
    148
    159    <div class="row">
  • bad-ip-wp/trunk/admin/partials/views/page-settings.twig

    r2247105 r2313427  
    55
    66<div class="container-fluid" style="margin-top: 15px;">
    7     {#{{ bad_ips_report_pm|length }}#}
    8 
    9 
    107
    118    <!-- Page Heading -->
    12     {#<div class="d-sm-flex align-items-center justify-content-between mb-4">#}
    13         {#<h1 class="h3 mb-0 text-gray-800">Cards</h1>#}
    14     {#</div>#}
    159    <h1 class="h3 mb-4 text-gray-800">Settings</h1>
    1610
    17     {#{{ settings|print_r }}#}
    1811    <div class="row">
    1912
     
    5649
    5750                    <form id="form-bad_queries" action=" " method="POST">
    58                         {#<input type="checkbox" name="bad_queries" id="bad_queries" checked hidden>#}
    5951                        <input type="text" name="bad_queries" id="bad_queries" value="{{ settings.bad_queries }}" hidden>
    6052                    </form>
     
    8375
    8476                    <form id="form-tor" action=" " method="POST">
    85                         {#<input type="checkbox" name="tor_block" id="tor_block" checked hidden>#}
    8677                        <input type="text" name="tor_block" id="tor_block" value="{{ settings.tor_block }}" hidden>
    8778                    </form>
     
    10697
    10798                    <form id="form-deny-access" action=" " method="POST">
    108                         {#<input type="checkbox" name="deny_access" id="deny_access" value="{{ settings.deny_access }}" checked hidden>#}
    10999                        <input type="text" name="deny_access" id="deny_access" value="{{ settings.deny_access }}" hidden>
    110100                    </form>
     
    161151                    </a>
    162152                    <form id="form-origin" action=" " method="POST">
    163                         {#<input type="checkbox" name="deny_access" id="deny_access" value="{{ settings.deny_access }}" checked hidden>#}
    164153                        <input type="text" name="origin" id="origin" value="{{ settings.origin }}" hidden>
    165154                    </form>
     
    176165                    </a>
    177166                    <form id="form-bot_access" action=" " method="POST">
    178                         {#<input type="checkbox" name="deny_access" id="deny_access" value="{{ settings.deny_access }}" checked hidden>#}
    179167                        <input type="text" name="bot_access" id="bot_access" value="{{ settings.bot_access }}" hidden>
    180168                    </form>
     
    213201
    214202        <div class="col-lg-6">
    215         <div class="card  col-lg-12">
     203
     204            <div class="card  col-lg-12">
    216205                <div class="card-header py-3 d-flex bg-dark flex-row align-items-center justify-content-between">
    217206                    <h6 class="m-0 font-weight-bold text-white">Whitelist | Blacklist</h6>
     
    223212                        <span class="text">Save</span>
    224213                    </a>
    225                    
    226                         {# <input type="text" name="origin" id="origin" value="{{ settings.origin }}" hidden> #}
    227                 </div>
    228                     <div class="card-body">
     214
     215                </div>
     216                <div class="card-body">
    229217                    <form id="form-lists" action=" " method="POST">
    230                     <div class="row">
    231                         <div class="card col-lg-6">
    232                             <p>Add IP's that you trust that cannot be reported or blocked</p>
    233                             <textarea id="whiteListTXT" name="whiteListText" rows="13" class="whitelisttxt" placeholder="Separate IP addresses by space or new line">{% if whiteList %}{{ whiteList }}{% endif %}</textarea>
    234                         </div>
    235                         <div class="card col-lg-6">
    236                             <p>Add IP's that you want to block from accessing your website</p>
    237                             <textarea id="blackListTXT" name="blackListText" rows="13" class="blacklisttxt text-white" placeholder="Separate IP addresses by space or new line" style="background-color:black;">{% if blackList %}{{ blackList }}{% endif %}</textarea>
    238                         </div>
    239                     </div>
    240                     </row>
    241                     </form>
    242         </div>
    243         </div>
     218                        <div class="row">
     219                            <div class="card col-lg-6">
     220                                <p>Add IP's that you trust that cannot be reported or blocked</p>
     221                                <textarea id="whiteListTXT" name="whiteListText" rows="13" class="whitelisttxt" placeholder="Separate IP addresses by space or new line">{% if whiteList %}{{ whiteList }}{% endif %}</textarea>
     222                            </div>
     223                            <div class="card col-lg-6">
     224                                <p>Add IP's that you want to block from accessing your website</p>
     225                                <textarea id="blackListTXT" name="blackListText" rows="13" class="blacklisttxt text-white" placeholder="Separate IP addresses by space or new line" style="background-color:black;">{% if blackList %}{{ blackList }}{% endif %}</textarea>
     226                            </div>
     227                        </div>
     228                    </form>
     229                </div>
     230            </div>
    244231
    245232    </div>
  • bad-ip-wp/trunk/bad_ip_wp.php

    r2312970 r2313427  
    1111 * Plugin URI:        https://bad-ip.iridiumintel.com
    1212 * Description:       Protecting from malicious IP addresses visiting and trying to exploit your website with addition to block Tor endpoints
    13  * Version:           1.0.13
     13 * Version:           1.0.2
    1414 * Author:            Iridium Intelligence
    1515 * Author URI:        https://iridiumintel.com
     
    3535 * Rename this for your plugin and update it as you release new versions.
    3636 */
    37 define( 'BAD_IP_WP_VERSION', '1.0.13' );
     37define( 'BAD_IP_WP_VERSION', '1.0.2' );
    3838define( 'BAD_IP_WP_NAME', trim(dirname(plugin_basename(__FILE__)), '/'));
    3939define( 'BAD_IP_WP_URL', plugins_url( basename( plugin_dir_path(__FILE__) ), basename( __FILE__ ) ));
Note: See TracChangeset for help on using the changeset viewer.