WordPress Security Checklist (2026): Plugins, CVEs & PoC Testing
Admin · September 25, 2026
Introduction
Use this checklist on every internet-facing WordPress property.
Weekly operator checklist
- [ ] Export plugin list with exact versions
- [ ] Review WordPress core update status
- [ ] Confirm backups restorable (test quarterly)
- [ ] Scan access logs for
wp-login.phpbrute force spikes - [ ] Verify MFA on administrator accounts
- [ ] Check TLS cert expiry and HSTS headers
Monthly engineering checklist
- [ ] Remove unused plugins/themes
- [ ] Review admin users and API keys
- [ ] Patch staging → smoke → production
- [ ] Subscribe to CISA KEV diff alerts
- [ ] Scan pocbit.org/blog for relevant new CMS CVE primers
Emergency CVE checklist (first 4 hours)
- Identify affected plugin/version in inventory
- Read vendor + NVD + check KEV
- Block or WAF-tune if patch not ready
- Schedule patch with rollback snapshot
- Hunt logs using public PoC URI patterns (lab-derived)
FAQ
How often do WordPress plugin CVEs appear?
Multiple critical plugin CVEs can publish in a single week. Treat plugin monitoring as continuous, not quarterly.
Is hiding wp-admin enough?
It helps but is not sufficient—many bugs hit REST or AJAX on public routes.
Where to test PoCs safely?
Isolated lab only; see our safe PoC lab guide.
Operational checklist (copy into tickets)
| # | Task | Notes | |---|------|-------| | 1 | Confirm product + exact version in inventory | Include plugins, not only core | | 2 | Document internet exposure | SG, WAF, DNS, CDN orange-cloud | | 3 | Pull CVE, NVD, vendor advisory | Save URLs in ticket | | 4 | Check CISA KEV | Escalate if listed | | 5 | Reproduce in isolated lab with public PoC if available | Never on prod | | 6 | Patch, mitigate, or accept with expiry | Workarounds need dates | | 7 | SOC hunt for related URIs / IOCs | Tune after lab run | | 8 | Post-mortem: detection gap? | Update runbooks |
Working with pocbit.org
pocbit.org combines a PoC archive, CVE-oriented tooling, and blog articles for defenders. Use write-ups to align patch priority; use PoCs only where you have authorization. Pair this content with your vendor’s official remediation guidance—not as a substitute for it.
SEO and research keywords (for your internal wiki)
When linking internally, prefer descriptive anchor text: “WordPress plugin CVE triage”, “Joomla VEL monitoring”, “CVSS environmental score”, “KEV catalog workflow”, “safe PoC lab network isolation”. External readers find us via those same long-tail queries; your internal docs should mirror plain language, not acronym soup alone.
SEO depth: CMS attack surface
WordPress and Joomla remain primary targets because extensions multiply entry points. Attackers automate scans for known plugin CVEs within minutes of public PoC release. Your goal is to shrink reachable admin interfaces, maintain authoritative inventories, and patch faster than scan-to-shell timelines.
Hardening priorities that actually move risk
- Remove unused extensions — dormant code still parses requests on many configs
- Separate admin paths — VPN or IP allowlist for
/wp-adminand/administrator - Disable file editing in wp-config where policy allows (
DISALLOW_FILE_EDIT) - Enforce MFA on privileged accounts; rotate after incidents
- Backup immutability — ransomware targets backup plugins first
When a CMS CVE drops
- Confirm exact version in inventory (include premium/build strings)
- Read vendor advisory + NVD + check CISA KEV
- Search pocbit.org PoC archive for mechanism (lab only)
- Stage patch → smoke test → production with rollback
- Hunt logs for PoC URI patterns; tune WAF temporarily if needed
Content delivery and SEO note for operators
Public educational sites (like pocbit.org) publish long security blog articles to help defenders—not to encourage unauthorized testing. Use our PoC archive and CVE Detector as references inside your runbooks.
Related on pocbit.org
- PoC archive — curated proof-of-concept write-ups for authorized testing
- CVE Detector — live monitoring for high-severity CMS-related CVEs
- Blog index — WordPress, Joomla, CVE, and defender guides
- CVSS explained · CISA KEV guide · Safe PoC lab