Plugin Directory

Changeset 1307060


Ignore:
Timestamp:
12/12/2015 09:02:49 PM (10 years ago)
Author:
Mrtn9
Message:

tagging version 1.2

Location:
honnypotter
Files:
5 edited
8 copied

Legend:

Unmodified
Added
Removed
  • honnypotter/tags/1.2/class.honnypotter-admin.php

    r1307047 r1307060  
    2424    add_options_page('HonnyPotter', 'HonnyPotter', 'manage_options', 'honnypotter', array( 'HonnyPotter_Admin', 'plugin_options_page') );
    2525  }
    26 
    27 
    2826
    2927  public static function plugin_admin_init()
  • honnypotter/tags/1.2/class.honnypotter.php

    r1307047 r1307060  
    3636  public static function options_init()
    3737  {
    38     $random_log_file_name = bin2hex(mcrypt_create_iv(7, MCRYPT_DEV_URANDOM)) . '.log';
     38    $random_log_file_name = $rand = substr(md5(microtime()),rand(0,17),14) . '.log';
    3939    $array['log_name'] = $random_log_file_name;
    4040    $array['wp_authenticate_override'] = false;
  • honnypotter/tags/1.2/honnypotter.php

    r1307047 r1307060  
    77Plugin URI: https://github.com/MartinIngesen/HonnyPotter
    88Description: Log all failed login-attempts.
    9 Version: 1.1
     9Version: 1.2
    1010Author: Martin ingesen
    1111Author URI: http://martin.ingesen.no
  • honnypotter/tags/1.2/readme.md

    r1307059 r1307060  
    11# HonnyPotter
     2
     3Available at [https://wordpress.org/plugins/honnypotter/](https://wordpress.org/plugins/honnypotter/).
    24
    35# How to install
  • honnypotter/tags/1.2/readme.txt

    r1307047 r1307060  
    33Tags: honeypot
    44Requires at least: 4.3.1
    5 Tested up to: 4.3.1
    6 Stable tag: trunk
     5Tested up to: 4.4
     6Stable tag: 1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3333= How do I clear the logs? =
    3434
    35 FTP or access the wordpress installation, navigate to the HonnyPotter folder and delete the log.
    36 
     35FTP or access the WordPress installation, navigate to the HonnyPotter folder and delete the log.
    3736
    3837== Changelog ==
    3938
    40 = 1.0 =
     39= 1.2 =
     40* Fixed issue `[Fatal error :( #1](https://github.com/MartinIngesen/HonnyPotter/issues/1)` by rewriting the code for randomizing logfile-names.
     41
     42= 1.1 =
    4143* First version.
  • honnypotter/trunk/class.honnypotter-admin.php

    r1307047 r1307060  
    2424    add_options_page('HonnyPotter', 'HonnyPotter', 'manage_options', 'honnypotter', array( 'HonnyPotter_Admin', 'plugin_options_page') );
    2525  }
    26 
    27 
    2826
    2927  public static function plugin_admin_init()
  • honnypotter/trunk/class.honnypotter.php

    r1307047 r1307060  
    3636  public static function options_init()
    3737  {
    38     $random_log_file_name = bin2hex(mcrypt_create_iv(7, MCRYPT_DEV_URANDOM)) . '.log';
     38    $random_log_file_name = $rand = substr(md5(microtime()),rand(0,17),14) . '.log';
    3939    $array['log_name'] = $random_log_file_name;
    4040    $array['wp_authenticate_override'] = false;
  • honnypotter/trunk/honnypotter.php

    r1307047 r1307060  
    77Plugin URI: https://github.com/MartinIngesen/HonnyPotter
    88Description: Log all failed login-attempts.
    9 Version: 1.1
     9Version: 1.2
    1010Author: Martin ingesen
    1111Author URI: http://martin.ingesen.no
  • honnypotter/trunk/readme.md

    r1307059 r1307060  
    11# HonnyPotter
     2
     3Available at [https://wordpress.org/plugins/honnypotter/](https://wordpress.org/plugins/honnypotter/).
    24
    35# How to install
  • honnypotter/trunk/readme.txt

    r1307047 r1307060  
    33Tags: honeypot
    44Requires at least: 4.3.1
    5 Tested up to: 4.3.1
    6 Stable tag: trunk
     5Tested up to: 4.4
     6Stable tag: 1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3333= How do I clear the logs? =
    3434
    35 FTP or access the wordpress installation, navigate to the HonnyPotter folder and delete the log.
    36 
     35FTP or access the WordPress installation, navigate to the HonnyPotter folder and delete the log.
    3736
    3837== Changelog ==
    3938
    40 = 1.0 =
     39= 1.2 =
     40* Fixed issue `[Fatal error :( #1](https://github.com/MartinIngesen/HonnyPotter/issues/1)` by rewriting the code for randomizing logfile-names.
     41
     42= 1.1 =
    4143* First version.
Note: See TracChangeset for help on using the changeset viewer.