WP Force SSL & HTTPS SSL Redirect
by WebFactory · 90,000 active installations · v1.68
⏱ Disclosure Timeline
🔒 Security Findings
13 issuesSecurity Findings — Restricted Access
Security details are shared with the plugin developer during the 90-day disclosure period.
If you received a notification email, use the magic link or enter your password below.
Embargoed until Aug 10, 2026
Are you the plugin developer? Request access →
Enter your name and email and we'll review your request.
PHP_CodeSniffer
6626 coding standard violationsPHP_CodeSniffer (PHPCS) is a static analysis tool that checks your PHP code against a set of coding standards. The violations below were caught using the WordPress Coding Standards ruleset — the official style guide for WordPress plugins. These aren't security issues, but they affect code consistency, readability, and long-term maintainability.
Run it yourself & auto-fixInstall PHPCS and the WordPress ruleset via Composer:
composer require --dev squizlabs/php_codesniffer wp-coding-standards/wpcs
./vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs
Then check your plugin:
./vendor/bin/phpcs --standard=WordPress wp-force-ssl/
Many violations can be fixed automatically with phpcbf (PHP Code Beautifier, bundled with PHPCS):
./vendor/bin/phpcbf --standard=WordPress wp-force-ssl/
phpcbf will auto-fix whitespace, indentation, and many formatting issues. Review the diff before committing.