-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
32 lines (22 loc) · 926 Bytes
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
=== Prevent Password Reuse ===
Contributors: simonbbrown
Tags: password, security, prevent reuse
Requires at least: 3.7
Tested up to: 4.0
Stable tag: 1.1
== Description ==
This plugin keeps records of your users hashed passwords in order to prevent them from reusing their current or a previous password
== Installation ==
1. Download
2. Upload to your `/wp-contents/plugins/` directory.
3. Activate the plugin through the 'Plugins' menu in WordPress.
== Frequently Asked Questions ==
Q: Are stored passwords secure?
A: The passwords are as secure as the current password for your user, the plugin only stores the hashed version of the password.
Q: How can I reset the stored passwords?
A: run the following mysql - TRUNCATE TABLE `###password_log` - where ### is your table prefix (this can be found on your wp-config.php
== Changelog ==
= 1.1 =
Code refactoring for best practices.
= 1.0 =
Initial release version