Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions bedrock/auditing-wordpress-vulnerabilities-with-composer.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
---
date_modified: 2026-05-03 12:00
date_modified: 2026-07-24 23:00
date_published: 2026-05-03 12:00
description: Audit WordPress plugins and themes for known vulnerabilities with Composer using WP Sec Adv, a security advisory repository sourced from Wordfence Intelligence.
title: Auditing WordPress Vulnerabilities with Composer
authors:
- ben
- tangrufus
---

# Auditing WordPress Vulnerabilities with Composer
Expand Down Expand Up @@ -45,11 +46,10 @@ Not every advisory requires immediate action. Composer lets you acknowledge spec
```json
{
"config": {
"audit": {
"ignore": {
"CVE-2026-3589": {
"apply": "block",
"reason": "Waiting for upstream fix in v1.2.3. Allow during updates but still report in audits"
"policy": {
"advisories": {
"ignore-id": {
"CVE-2026-3589": "Waiting for upstream fix in v1.2.3. Allow during updates but still report in audits"
}
}
}
Expand Down
Loading