ActivityPub

Slug: activitypub · Automattic · 6,000+

Actively maintained
ActivityPub banner image

Overall Score

Good overall quality

86
Good

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.
Score computed: May 24, 2026 12:11 am (1 month ago). Vulnerability data mode: Live.
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 28, 2026 9:46 pm (16 minutes ago)

No known open vulnerabilities found.

AI-Generated Summary

ActivityPub currently scores 86/100 (good). Latest scan findings include 0 errors and 24 warnings.

Strengths

  • Overall score is in a strong range for production use.
  • No open vulnerabilities are currently recorded in tracked sources.

Risks

  • Tested-up-to metadata is behind the current WordPress version.

Recommended Next Actions

  • Address warning-level findings to improve maintainability and reduce future risk.
  • Validate compatibility against the latest WordPress core and refresh tested-up-to metadata.

Generated from latest scan and metadata signals. Validate in staging before production changes.

Score Breakdown

Shield
Security
60
Needs Review
Why this score?

Top deductions are based on 1 affected rules, reducing this category by 40 total points.

Rule Hits Impact Share
Security issue: Warning 10 -40 100%
W
WP.org Readiness
96
Excellent
Why this score?

Top deductions are based on 2 affected rules, reducing this category by 4 total points.

Rule Hits Impact Share
Tested up to version is behind current WordPress 1 -3 75%
Repo issue: Notice 1 -1 25%
Speed
Performance
97
Excellent
Why this score?

Top deductions are based on 1 affected rules, reducing this category by 3 total points.

Rule Hits Impact Share
Performance issue: Warning 1 -3 100%
Code
Code Quality
97
Excellent
Why this score?

Top deductions are based on 1 affected rules, reducing this category by 3 total points.

Rule Hits Impact Share
Code Quality issue: Warning 1 -3 100%
A11y
Accessibility
76
Needs Review
Why this score?

Top deductions are based on 1 affected rules, reducing this category by 24 total points.

Rule Hits Impact Share
Accessibility issue: Warning 12 -24 100%
Bug
Vulnerability Status
100
Excellent
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: 8.2.1
  • Active Installs: 6,000+
  • Last Updated: 2026-05-01 07:45:00
  • Tested up to: 6.9.4
  • Requires PHP: 7.4
  • Rating: 4.9/5 (40 ratings)
  • Support: 11/24 resolved (46%)
  • View on WordPress.org
  • Download Plugin

Scan Summary

  • Errors: 0
  • Warnings: 24
  • Notices: 1
  • Last Scanned: 2026-05-23 23:11:39
  • Score confidence: 100/100
Scans are performed automatically once per day, and the report will note when source data is stale or incomplete.

What Changed Since Last Scan

Run at least two completed scans to view issue deltas.

Detected Issues

Severity Category Message File Fix Guidance
WARNING CODE_QUALITY Support thread resolution rate is below 50% (46% resolved).
Quick Close out older threads and improve response consistency on active issues.
Moderate Build a documented support process with priority levels and escalation paths.
Advanced Integrate support analytics and staffing forecasts to sustain healthy resolution rates.
WARNING SECURITY Main plugin file does not appear to guard direct access with an ABSPATH check. activitypub.php
Quick Add an ABSPATH guard near the top of the main plugin file to prevent direct execution.
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.
WARNING ACCESSIBILITY Image markup without an alt attribute detected. includes/wp-admin/class-settings.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.
WARNING ACCESSIBILITY Image markup without an alt attribute detected. includes/wp-admin/class-user-settings-fields.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.
WARNING ACCESSIBILITY Image markup without an alt attribute detected. includes/wp-admin/class-blog-settings-fields.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.
WARNING SECURITY Raw superglobal access detected. includes/wp-admin/import/class-starter-kit.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 ACCESSIBILITY Image markup without an alt attribute detected. includes/rest/class-post-controller.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.
WARNING SECURITY Use of base64_decode() detected. includes/rest/oauth/class-token-controller.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.
WARNING ACCESSIBILITY Image markup without an alt attribute detected. includes/class-comment.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.
WARNING ACCESSIBILITY Image markup without an alt attribute detected. includes/functions-media.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.
WARNING SECURITY Direct database query detected without an immediately visible $wpdb->prepare() wrapper. includes/class-statistics.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. includes/class-migration.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. includes/class-options.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. includes/oauth/class-token.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. includes/class-attachments.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.
WARNING SECURITY Use of base64_decode() detected. includes/signature/class-http-signature-draft.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.
WARNING SECURITY Use of base64_decode() detected. includes/signature/class-http-message-signature.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.
WARNING SECURITY Use of base64_decode() detected. includes/class-signature.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.
WARNING PERFORMANCE flush_rewrite_rules() detected. includes/class-activitypub.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 ACCESSIBILITY Image markup without an alt attribute detected. build/follow-me/render.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.
WARNING ACCESSIBILITY Image markup without an alt attribute detected. templates/post-preview.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.
WARNING ACCESSIBILITY Image markup without an alt attribute detected. templates/embed.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.
WARNING ACCESSIBILITY Image markup without an alt attribute detected. templates/help-tab/editor-blocks.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.
WARNING ACCESSIBILITY Image markup without an alt attribute detected. templates/emails/new-follower.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 REPO Translation functions are present, but no textdomain loader was detected.
Quick Call load_plugin_textdomain() during plugin bootstrap so translations can be loaded.
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.

Score History

No history available yet. · All-Time High: N/A

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
ActivityPub <= 0.17.0 - Authenticated (Subscriber+) Insecure Direct Object Reference to Sensitive Post Title Exposure N/A LOW Closed *-0.17.0 1.0.0 2023-09-25 00:00:00 Wordfence
ActivityPub <= 0.17.0 - Authenticated (Subscriber+) Insecure Direct Object Reference to Sensitive Post Content Exposure N/A LOW Closed *-0.17.0 1.0.0 2023-09-25 00:00:00 Wordfence
ActivityPub <= 0.17.0 - Authenticated (Contributor+) Stored Cross-Site Scripting via User Metadata N/A LOW Closed *-0.17.0 1.0.0 2023-09-25 00:00:00 Wordfence
ActivityPub <= 0.17.0 - Authenticated (Contributor+) Stored Cross-Site Scripting via Post Content N/A LOW Closed *-0.17.0 1.0.0 2023-09-25 00:00:00 Wordfence
ActivityPub <= 1.0.5 - Missing Authorization N/A LOW Closed *-1.0.5 1.0.6 2024-01-05 00:00:00 Wordfence
ActivityPub < 8.0.2 - Unauthenticated Information Epxosure N/A LOW Closed [*, 8.0.2) 8.0.2 2026-03-18 00:00:00 Wordfence