https://github.com/markei/wordpress-plugin-security-protection
Security & protection improvements: login event history, prevent login brute force, hide backend, update status API
https://github.com/markei/wordpress-plugin-security-protection
security wordpress wordpress-plugin
Last synced: about 2 months ago
JSON representation
Security & protection improvements: login event history, prevent login brute force, hide backend, update status API
- Host: GitHub
- URL: https://github.com/markei/wordpress-plugin-security-protection
- Owner: Markei
- License: mit
- Created: 2017-12-28T15:50:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-05-07T15:03:29.000Z (about 3 years ago)
- Last Synced: 2025-06-11T07:50:05.704Z (about 1 year ago)
- Topics: security, wordpress, wordpress-plugin
- Language: PHP
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Markei Security and Protection
==============================
Install the plugin via Composer
composer require markei/wordpress-security-protection
Activate the plugin in WordPress admin
Add the next two lines to `wordpress/wp-config.php` above `require_once(ABSPATH . 'wp-settings.php');`
define('MARKEI_SECURITY_PROTECTION_HIDEBACKEND_URL', '/my-secret-cms');
define('MARKEI_SECURITY_PROTECTION_UPDATEINFO_SECRET', 'super-secret-key');
define('MARKEI_SECURITY_PROTECTION_BLOCKXMLRPC', true);
Replace `/my-secret-cms` with an URL you like. Do **not** use `my-secret-cms`, `wp-admin` or `wp-login`! Mention the slash in the beginning. Replace `super-secret-key` with a [random long value](http://password.markei.nl/randomsave.txt).
Log out and use your new URL to relogin.
The API for update status report is located at `http://www.my-wordpress.tld/.markei/security-and-protection/update-state?secret=super-secret-key`