SEOPress – AI SEO Plugin & On-site SEO
Slug: wp-seopress · Benjamin Denis · 300,000+
Overall Score
Some areas need attention
What this score means
Scores are calculated on a 100-point scale by analysing six weighted categories: Security, WP.org Readiness, Performance, Code Quality, Accessibility, and Vulnerabilities. Open vulnerabilities are weighted by severity, CVSS, and patch availability, and incomplete source data can reduce confidence slightly.
-
Excellent The plugin follows best practices across every measured category. It is well-maintained, low-risk, and recommended for production use.
-
Good Strong overall quality with minor areas for improvement. Generally safe to use on most sites.
-
Needs Review Some areas of concern detected. Review the full issues report and weigh the risks before installing on production.
-
High Risk Significant quality or security problems found. Exercise caution — check the details carefully before using this plugin.
High confidence (100/100) based on metadata completeness and vulnerability evidence quality.
Open vulnerabilities are weighted by severity, CVSS, and patch availability, then adjusted slightly when the source data is incomplete.
- Wordfence: June 9, 2026 9:48 pm (30 minutes ago)
Score Breakdown
Why this score?
Top deductions are based on 1 affected rules, reducing this category by 68 total points.
| Rule | Hits | Impact | Share |
|---|---|---|---|
| Security issue: Warning | 17 | -68 | 100% |
Why this score?
Top deductions are based on 1 affected rules, reducing this category by 1 total points.
| Rule | Hits | Impact | Share |
|---|---|---|---|
| Repo issue: Notice | 1 | -1 | 100% |
Why this score?
Top deductions are based on 1 affected rules, reducing this category by 12 total points.
| Rule | Hits | Impact | Share |
|---|---|---|---|
| Performance issue: Warning | 4 | -12 | 100% |
Why this score?
Top deductions are based on 1 affected rules, reducing this category by 2 total points.
| Rule | Hits | Impact | Share |
|---|---|---|---|
| Code Quality issue: Notice | 2 | -2 | 100% |
Why this score?
Top deductions are based on 1 affected rules, reducing this category by 2 total points.
| Rule | Hits | Impact | Share |
|---|---|---|---|
| Accessibility issue: Warning | 1 | -2 | 100% |
Why this score?
Top deductions are based on 0 affected rules, reducing this category by 0 total points.
No deductions were applied for this category in the latest score run.
Plugin Details
- Version: 9.9.2
- Active Installs: 300,000+
- Last Updated: 2026-06-02 15:09:00
- Tested up to: 7.0
- Requires PHP: 7.4
- Rating: 4.8/5 (1,229 ratings)
- Support: 16/22 resolved (73%)
- View on WordPress.org
- Download Plugin
Scan Summary
- Errors: 0
- Warnings: 22
- Notices: 3
- Last Scanned: 2026-05-22 21:18:35
- Score confidence: 100/100
What Changed Since Last Scan
New Issues
No items in this category.
Resolved Issues
No items in this category.
Worsened Issues
No items in this category.
Detected Issues
| Severity | Category | Message | File | Fix Guidance |
|---|---|---|---|---|
| NOTICE | REPO | Plugin package does not include a license file. |
Quick
Add a LICENSE or COPYING file so distribution terms are explicit.
Moderate
Apply the same remediation pattern across repo findings and re-scan to confirm notice issues drop.
Advanced
Add automated linting, CI checks, and team review guidance so this issue class is prevented in future releases.
|
|
| WARNING | SECURITY | Direct database query detected without an immediately visible $wpdb->prepare() wrapper. | src/Core/Table/QueryCreateTable.php |
Quick
Wrap dynamic SQL arguments with $wpdb->prepare() in the flagged query.
Moderate
Refactor repeated SQL into repository/helper methods that enforce prepared statements by default.
Advanced
Add integration tests and static checks that fail builds when direct dynamic SQL is introduced.
|
| WARNING | SECURITY | Direct database query detected without an immediately visible $wpdb->prepare() wrapper. | src/Core/Table/QueryExistTable.php |
Quick
Wrap dynamic SQL arguments with $wpdb->prepare() in the flagged query.
Moderate
Refactor repeated SQL into repository/helper methods that enforce prepared statements by default.
Advanced
Add integration tests and static checks that fail builds when direct dynamic SQL is introduced.
|
| WARNING | SECURITY | Use of unserialize() detected. | src/Thirds/MainWP/MainWPFunctions.php |
Quick
Switch the flagged payload to JSON decoding where practical.
Moderate
If serialization is required, enforce allowed_classes=false and strict input validation before parsing.
Advanced
Move state transfer to signed/typed schemas and add security tests for malformed payloads.
|
| WARNING | PERFORMANCE | flush_rewrite_rules() detected. | src/Thirds/MainWP/MainWPFunctions.php |
Quick
Only flush rewrite rules during activation or explicit maintenance flows.
Moderate
Apply the same remediation pattern across performance findings and re-scan to confirm warning issues drop.
Advanced
Add automated linting, CI checks, and team review guidance so this issue class is prevented in future releases.
|
| NOTICE | CODE_QUALITY | Short PHP opening tags or inline template tags may reduce compatibility across environments. | src/Services/Metas/GetImageInContent.php |
Quick
Prefer full <?php opening tags for maximum portability.
Moderate
Apply the same remediation pattern across code quality findings and re-scan to confirm notice issues drop.
Advanced
Add automated linting, CI checks, and team review guidance so this issue class is prevented in future releases.
|
| WARNING | SECURITY | Direct database query detected without an immediately visible $wpdb->prepare() wrapper. | src/Services/Repository/ContentAnalysisRepository.php |
Quick
Wrap dynamic SQL arguments with $wpdb->prepare() in the flagged query.
Moderate
Refactor repeated SQL into repository/helper methods that enforce prepared statements by default.
Advanced
Add integration tests and static checks that fail builds when direct dynamic SQL is introduced.
|
| WARNING | ACCESSIBILITY | Image markup without an alt attribute detected. | src/Services/ContentAnalysis/GetContent.php |
Quick
Add alt attributes to the flagged image tags, or alt="" for decorative images.
Moderate
Audit all templates/components for missing alternative text and update content guidelines.
Advanced
Integrate accessibility testing in CI (axe/pa11y) and block releases with critical a11y violations.
|
| NOTICE | CODE_QUALITY | Short PHP opening tags or inline template tags may reduce compatibility across environments. | src/Services/ContentAnalysis/DomFilterContent.php |
Quick
Prefer full <?php opening tags for maximum portability.
Moderate
Apply the same remediation pattern across code quality findings and re-scan to confirm notice issues drop.
Advanced
Add automated linting, CI checks, and team review guidance so this issue class is prevented in future releases.
|
| WARNING | SECURITY | Raw superglobal access detected. | src/Services/EnqueueModuleMetabox.php |
Quick
Wrap direct request values with sanitization and nonce verification in the affected code path.
Moderate
Centralize request normalization in helper methods so handlers consume validated input only.
Advanced
Adopt typed request DTOs and automated security lint checks for unsanitized superglobal access.
|
| WARNING | PERFORMANCE | flush_rewrite_rules() detected. | src/Actions/Options/OptionSaveHooks.php |
Quick
Only flush rewrite rules during activation or explicit maintenance flows.
Moderate
Apply the same remediation pattern across performance findings and re-scan to confirm warning issues drop.
Advanced
Add automated linting, CI checks, and team review guidance so this issue class is prevented in future releases.
|
| WARNING | SECURITY | Raw superglobal access detected. | src/Actions/Ajax/PreviewMetaDescription.php |
Quick
Wrap direct request values with sanitization and nonce verification in the affected code path.
Moderate
Centralize request normalization in helper methods so handlers consume validated input only.
Advanced
Adopt typed request DTOs and automated security lint checks for unsanitized superglobal access.
|
| WARNING | SECURITY | Raw superglobal access detected. | src/Actions/Ajax/PreviewMetaTitle.php |
Quick
Wrap direct request values with sanitization and nonce verification in the affected code path.
Moderate
Centralize request normalization in helper methods so handlers consume validated input only.
Advanced
Adopt typed request DTOs and automated security lint checks for unsanitized superglobal access.
|
| WARNING | SECURITY | Raw superglobal access detected. | src/Actions/Admin/ModuleMetabox.php |
Quick
Wrap direct request values with sanitization and nonce verification in the affected code path.
Moderate
Centralize request normalization in helper methods so handlers consume validated input only.
Advanced
Adopt typed request DTOs and automated security lint checks for unsanitized superglobal access.
|
| WARNING | SECURITY | Direct database query detected without an immediately visible $wpdb->prepare() wrapper. | src/Actions/Admin/Importer/SiteSEO.php |
Quick
Wrap dynamic SQL arguments with $wpdb->prepare() in the flagged query.
Moderate
Refactor repeated SQL into repository/helper methods that enforce prepared statements by default.
Advanced
Add integration tests and static checks that fail builds when direct dynamic SQL is introduced.
|
| WARNING | SECURITY | Direct database query detected without an immediately visible $wpdb->prepare() wrapper. | src/Actions/Admin/Importer/RankMath.php |
Quick
Wrap dynamic SQL arguments with $wpdb->prepare() in the flagged query.
Moderate
Refactor repeated SQL into repository/helper methods that enforce prepared statements by default.
Advanced
Add integration tests and static checks that fail builds when direct dynamic SQL is introduced.
|
| WARNING | SECURITY | Direct database query detected without an immediately visible $wpdb->prepare() wrapper. | src/Actions/Admin/Importer/AIO.php |
Quick
Wrap dynamic SQL arguments with $wpdb->prepare() in the flagged query.
Moderate
Refactor repeated SQL into repository/helper methods that enforce prepared statements by default.
Advanced
Add integration tests and static checks that fail builds when direct dynamic SQL is introduced.
|
| WARNING | SECURITY | Direct database query detected without an immediately visible $wpdb->prepare() wrapper. | src/Actions/Api/Commands.php |
Quick
Wrap dynamic SQL arguments with $wpdb->prepare() in the flagged query.
Moderate
Refactor repeated SQL into repository/helper methods that enforce prepared statements by default.
Advanced
Add integration tests and static checks that fail builds when direct dynamic SQL is introduced.
|
| WARNING | PERFORMANCE | flush_rewrite_rules() detected. | src/Actions/Api/Commands.php |
Quick
Only flush rewrite rules during activation or explicit maintenance flows.
Moderate
Apply the same remediation pattern across performance findings and re-scan to confirm warning issues drop.
Advanced
Add automated linting, CI checks, and team review guidance so this issue class is prevented in future releases.
|
| WARNING | SECURITY | Direct database query detected without an immediately visible $wpdb->prepare() wrapper. | src/Actions/Api/Options/ToolsSettings.php |
Quick
Wrap dynamic SQL arguments with $wpdb->prepare() in the flagged query.
Moderate
Refactor repeated SQL into repository/helper methods that enforce prepared statements by default.
Advanced
Add integration tests and static checks that fail builds when direct dynamic SQL is introduced.
|
| WARNING | SECURITY | Direct database query detected without an immediately visible $wpdb->prepare() wrapper. | src/Models/Table/TableColumn.php |
Quick
Wrap dynamic SQL arguments with $wpdb->prepare() in the flagged query.
Moderate
Refactor repeated SQL into repository/helper methods that enforce prepared statements by default.
Advanced
Add integration tests and static checks that fail builds when direct dynamic SQL is introduced.
|
| WARNING | SECURITY | Raw superglobal access detected. | seopress.php |
Quick
Wrap direct request values with sanitization and nonce verification in the affected code path.
Moderate
Centralize request normalization in helper methods so handlers consume validated input only.
Advanced
Adopt typed request DTOs and automated security lint checks for unsanitized superglobal access.
|
| WARNING | PERFORMANCE | flush_rewrite_rules() detected. | seopress.php |
Quick
Only flush rewrite rules during activation or explicit maintenance flows.
Moderate
Apply the same remediation pattern across performance findings and re-scan to confirm warning issues drop.
Advanced
Add automated linting, CI checks, and team review guidance so this issue class is prevented in future releases.
|
| WARNING | SECURITY | Direct database query detected without an immediately visible $wpdb->prepare() wrapper. | uninstall.php |
Quick
Wrap dynamic SQL arguments with $wpdb->prepare() in the flagged query.
Moderate
Refactor repeated SQL into repository/helper methods that enforce prepared statements by default.
Advanced
Add integration tests and static checks that fail builds when direct dynamic SQL is introduced.
|
| WARNING | SECURITY | Use of base64_decode() detected. | seopress-functions.php |
Quick
Ensure any encoded payloads are necessary, documented, and never used to obscure executable logic.
Moderate
Apply the same remediation pattern across security findings and re-scan to confirm warning issues drop.
Advanced
Add automated linting, CI checks, and team review guidance so this issue class is prevented in future releases.
|
Score History
Range Change: 0 pts · All-Time High: 79/100
All Past Vulnerabilities
Showing all known historical vulnerabilities for this plugin, including open and closed records.
| Vulnerability | CVE | Severity | Status | Affected Versions | Patched Version | Updated | Source |
|---|---|---|---|---|---|---|---|
| SEOPress <= 8.1.1 - Missing Authorization | N/A | LOW | Closed | *-8.1.1 | 8.2 | 2024-10-24 00:00:00 | Wordfence |
| SEOPress <= 8.1.1 - Missing Authorization | N/A | LOW | Closed | *-8.1.1 | 8.2 | 2024-10-24 00:00:00 | Wordfence |
| SEOPress – On-site SEO <= 7.9 - Authenticated(Contributor+) Stored Cross-Site Scripting via Social Image URL | N/A | LOW | Closed | *-7.9 | 7.9.1 | 2024-06-19 13:31:27 | Wordfence |
| SEOPress – On-site SEO <= 7.5.2.1 - Authenticated (Contributor+) Stored Cross-Site Scripting | N/A | LOW | Closed | *-7.5.2.1 | 7.6 | 2024-05-23 17:02:51 | Wordfence |
| SEOPress <= 7.6.1 - Information Exposure | N/A | LOW | Closed | *-7.6.1 | 7.7 | 2024-05-03 00:00:00 | Wordfence |
| SEOPress <= 7.7.2 - Authenticated (Contributor+) Open Redirect | N/A | LOW | Closed | *-7.7.2 | 7.8 | 2024-06-03 00:00:00 | Wordfence |
| SEOPress 5.0.0 - 5.0.3 - Stored Cross-Site Scripting | N/A | LOW | Closed | 5.0.0, 5.0.1, 5.0.2, 5.0.3 | 5.0.4 | 2021-08-16 15:33:00 | Wordfence |
| SEOPress <= 8.1.1 - Missing Authorization | N/A | LOW | Closed | *-8.1.1 | 8.2 | 2024-10-24 00:00:00 | Wordfence |
| SEOPress <= 7.8 - Unauthenticated PHP Object Injection | N/A | LOW | Closed | *-7.8 | 7.9 | 2024-06-18 00:00:00 | Wordfence |
| SEOPress – On-site SEO <= 8.1.1 - Reflected Cross-Site Scripting | N/A | LOW | Closed | *-8.1.1 | 8.2 | 2024-10-01 00:00:00 | Wordfence |
| SEOPress – On-site SEO <= 7.5.2.1 - Authenticated (Author+) Stored Cross-Site Scripting | N/A | LOW | Closed | *-7.5.2.1 | 7.6 | 2024-03-22 00:00:00 | Wordfence |
| SEOPress <= 7.7.2 - Authenticated (Contributor+) Stored Cross-Site Scripting | N/A | LOW | Closed | *-7.7.2 | 7.8 | 2024-06-03 00:00:00 | Wordfence |
| SEOPress – On-site SEO <= 7.2 - Authenticated (Admin+) Stored Cross-Site Scripting | N/A | LOW | Closed | *-7.2 | 7.3 | 2023-12-26 00:00:00 | Wordfence |
| SEOPress <= 6.5.0.2 - Authenticated (Administrator+) PHP Object Injection | N/A | LOW | Closed | *-6.5.0.2 | 6.5.0.3 | 2023-04-05 00:00:00 | Wordfence |