Changeset 1307060
- Timestamp:
- 12/12/2015 09:02:49 PM (10 years ago)
- Location:
- honnypotter
- Files:
-
- 5 edited
- 8 copied
-
tags/1.2 (copied) (copied from honnypotter/trunk)
-
tags/1.2/LICENSE.txt (copied) (copied from honnypotter/trunk/LICENSE.txt)
-
tags/1.2/class.honnypotter-admin.php (copied) (copied from honnypotter/trunk/class.honnypotter-admin.php) (1 diff)
-
tags/1.2/class.honnypotter.php (copied) (copied from honnypotter/trunk/class.honnypotter.php) (1 diff)
-
tags/1.2/honnypotter.php (copied) (copied from honnypotter/trunk/honnypotter.php) (1 diff)
-
tags/1.2/index.php (copied) (copied from honnypotter/trunk/index.php)
-
tags/1.2/readme.md (copied) (copied from honnypotter/trunk/readme.md) (1 diff)
-
tags/1.2/readme.txt (copied) (copied from honnypotter/trunk/readme.txt) (2 diffs)
-
trunk/class.honnypotter-admin.php (modified) (1 diff)
-
trunk/class.honnypotter.php (modified) (1 diff)
-
trunk/honnypotter.php (modified) (1 diff)
-
trunk/readme.md (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
honnypotter/tags/1.2/class.honnypotter-admin.php
r1307047 r1307060 24 24 add_options_page('HonnyPotter', 'HonnyPotter', 'manage_options', 'honnypotter', array( 'HonnyPotter_Admin', 'plugin_options_page') ); 25 25 } 26 27 28 26 29 27 public static function plugin_admin_init() -
honnypotter/tags/1.2/class.honnypotter.php
r1307047 r1307060 36 36 public static function options_init() 37 37 { 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'; 39 39 $array['log_name'] = $random_log_file_name; 40 40 $array['wp_authenticate_override'] = false; -
honnypotter/tags/1.2/honnypotter.php
r1307047 r1307060 7 7 Plugin URI: https://github.com/MartinIngesen/HonnyPotter 8 8 Description: Log all failed login-attempts. 9 Version: 1. 19 Version: 1.2 10 10 Author: Martin ingesen 11 11 Author URI: http://martin.ingesen.no -
honnypotter/tags/1.2/readme.md
r1307059 r1307060 1 1 # HonnyPotter 2 3 Available at [https://wordpress.org/plugins/honnypotter/](https://wordpress.org/plugins/honnypotter/). 2 4 3 5 # How to install -
honnypotter/tags/1.2/readme.txt
r1307047 r1307060 3 3 Tags: honeypot 4 4 Requires at least: 4.3.1 5 Tested up to: 4. 3.16 Stable tag: trunk5 Tested up to: 4.4 6 Stable tag: 1.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 = How do I clear the logs? = 34 34 35 FTP or access the wordpress installation, navigate to the HonnyPotter folder and delete the log. 36 35 FTP or access the WordPress installation, navigate to the HonnyPotter folder and delete the log. 37 36 38 37 == Changelog == 39 38 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 = 41 43 * First version. -
honnypotter/trunk/class.honnypotter-admin.php
r1307047 r1307060 24 24 add_options_page('HonnyPotter', 'HonnyPotter', 'manage_options', 'honnypotter', array( 'HonnyPotter_Admin', 'plugin_options_page') ); 25 25 } 26 27 28 26 29 27 public static function plugin_admin_init() -
honnypotter/trunk/class.honnypotter.php
r1307047 r1307060 36 36 public static function options_init() 37 37 { 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'; 39 39 $array['log_name'] = $random_log_file_name; 40 40 $array['wp_authenticate_override'] = false; -
honnypotter/trunk/honnypotter.php
r1307047 r1307060 7 7 Plugin URI: https://github.com/MartinIngesen/HonnyPotter 8 8 Description: Log all failed login-attempts. 9 Version: 1. 19 Version: 1.2 10 10 Author: Martin ingesen 11 11 Author URI: http://martin.ingesen.no -
honnypotter/trunk/readme.md
r1307059 r1307060 1 1 # HonnyPotter 2 3 Available at [https://wordpress.org/plugins/honnypotter/](https://wordpress.org/plugins/honnypotter/). 2 4 3 5 # How to install -
honnypotter/trunk/readme.txt
r1307047 r1307060 3 3 Tags: honeypot 4 4 Requires at least: 4.3.1 5 Tested up to: 4. 3.16 Stable tag: trunk5 Tested up to: 4.4 6 Stable tag: 1.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 = How do I clear the logs? = 34 34 35 FTP or access the wordpress installation, navigate to the HonnyPotter folder and delete the log. 36 35 FTP or access the WordPress installation, navigate to the HonnyPotter folder and delete the log. 37 36 38 37 == Changelog == 39 38 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 = 41 43 * First version.
Note: See TracChangeset
for help on using the changeset viewer.