Plugin Directory

Changeset 1046486


Ignore:
Timestamp:
12/17/2014 01:56:46 AM (11 years ago)
Author:
cbergen
Message:

tagging v1.2.1

Location:
gauntlet-security
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • gauntlet-security/tags/1.2.1/README.txt

    r1040048 r1046486  
    44Tags: security, secure, vulnerability, exploit, hacks, audit, scanner, virus, gauntlet, checklist, protection
    55Requires at least: 3.4
    6 Tested up to: 4.0.1
    7 Stable tag: 1.2.0
     6Tested up to: 4.1
     7Stable tag: 1.2.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    100100== Changelog ==
    101101
     102= 1.2.1 =
     103
     104* Tested on WordPress 4.1
     105* Fix: Test for user ID #1
     106
    102107= 1.2.0 =
    103108* New test: Prevent access to stray non-Wordpress files which could be useful to attackers
  • gauntlet-security/tags/1.2.1/admin/includes/classes/gus_StrayFiles.php

    r1040048 r1046486  
    652652    </IfModule>
    653653
    654     # Apache 2.3
     654    # Apache >= 2.3
    655655    <IfModule mod_authz_core.c>
    656656        Require all denied
  • gauntlet-security/tags/1.2.1/admin/includes/classes/gus_UserIdOne.php

    r988766 r1046486  
    55    protected function main_check()
    66    {
    7         if(array_reduce( get_users(), array( $this, 'is_one_callback' ) ))
     7        if(array_reduce( get_users(), array( $this, 'is_one_callback' ), false ))
    88        {
    99            $this->fail();
     
    1717    private function is_one_callback($carry, $user)
    1818    {
    19         return $user->ID == 1;
     19        return $user->ID == 1 || $carry;
    2020    }
    2121
  • gauntlet-security/tags/1.2.1/gauntlet-security.php

    r1040055 r1046486  
    77 * Author: Cornelius Bergen, Matchbox Creative
    88 * Author URI: http://matchboxcreative.com
    9  * Version: 1.2.0
     9 * Version: 1.2.1
    1010 * Text Domain: gauntlet
    1111 */
  • gauntlet-security/trunk/README.txt

    r1040048 r1046486  
    44Tags: security, secure, vulnerability, exploit, hacks, audit, scanner, virus, gauntlet, checklist, protection
    55Requires at least: 3.4
    6 Tested up to: 4.0.1
    7 Stable tag: 1.2.0
     6Tested up to: 4.1
     7Stable tag: 1.2.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    100100== Changelog ==
    101101
     102= 1.2.1 =
     103
     104* Tested on WordPress 4.1
     105* Fix: Test for user ID #1
     106
    102107= 1.2.0 =
    103108* New test: Prevent access to stray non-Wordpress files which could be useful to attackers
  • gauntlet-security/trunk/admin/includes/classes/gus_StrayFiles.php

    r1040048 r1046486  
    652652    </IfModule>
    653653
    654     # Apache 2.3
     654    # Apache >= 2.3
    655655    <IfModule mod_authz_core.c>
    656656        Require all denied
  • gauntlet-security/trunk/admin/includes/classes/gus_UserIdOne.php

    r988766 r1046486  
    55    protected function main_check()
    66    {
    7         if(array_reduce( get_users(), array( $this, 'is_one_callback' ) ))
     7        if(array_reduce( get_users(), array( $this, 'is_one_callback' ), false ))
    88        {
    99            $this->fail();
     
    1717    private function is_one_callback($carry, $user)
    1818    {
    19         return $user->ID == 1;
     19        return $user->ID == 1 || $carry;
    2020    }
    2121
  • gauntlet-security/trunk/gauntlet-security.php

    r1040055 r1046486  
    77 * Author: Cornelius Bergen, Matchbox Creative
    88 * Author URI: http://matchboxcreative.com
    9  * Version: 1.2.0
     9 * Version: 1.2.1
    1010 * Text Domain: gauntlet
    1111 */
Note: See TracChangeset for help on using the changeset viewer.