CVE-2026-26980 (CVSS 9.4) + CVE-2026-29784 (CVSS 7.5) Current version: 6.16.1 (vulnerable) Target version: 6.19.3 (patches both CVEs) Exposure window: March 2 - present Deployment plan covers both Ghost CLI and Docker update paths. Ghost CMS flagged as undocumented service — manifest update needed. Created by Chronicler #29
2.4 KiB
Deployment Plan — Ghost CMS Security Update
Task: Ghost CMS Security Update
Document Type: deployment-plan
Status: ACTIVE
Last Updated: 2026-03-10
Target Version: 6.19.3 (patches CVE-2026-26980 + CVE-2026-29784)
Pre-Flight
SSH into Ghost VPS:
ssh root@64.50.188.14
Check current Ghost version to confirm:
ghost version
If ghost command not found, detect install method:
which ghost
docker ps | grep ghost
find / -name "ghost" -type d 2>/dev/null | grep -v proc | head -10
Step 1 — Identify Install Method
If ghost version works → Ghost CLI install. Follow Path A.
If docker ps shows a Ghost container → Docker install. Follow Path B.
Path A: Ghost CLI Update (most likely)
Step 1 — Navigate to Ghost directory:
cd /var/www/ghost
Step 2 — Run the update:
ghost update 6.19.3
Step 3 — Confirm version:
ghost version
Step 4 — Check status:
ghost status
Expected output: Ghost is running, version 6.19.3
Path B: Docker Update
Step 1 — Find the compose file:
find / -name "docker-compose.yml" 2>/dev/null | xargs grep -l ghost
Step 2 — Navigate to it:
cd /path/to/ghost/compose/
Step 3 — Update the image tag in docker-compose.yml:
Change:
image: ghost:6.16.1
To:
image: ghost:6.19.3
Step 4 — Pull and restart:
docker-compose pull
docker-compose up -d
Step 5 — Confirm:
docker ps | grep ghost
Post-Update Verification
Check the admin panel loads:
https://firefrostgaming.com/ghost
Verify version in admin footer — should read 6.19.3
Check site is serving correctly:
https://firefrostgaming.com
Check Ghost process is healthy:
ghost status
If Something Goes Wrong
Ghost CLI rollback:
ghost update --rollback
Check logs:
ghost log
Ghost service restart:
ghost restart
Completion Checklist
- SSH into Ghost VPS
- Confirmed current version (6.16.1)
- Identified install method (CLI or Docker)
- Updated to 6.19.3
- Confirmed version in admin panel footer
- Site loading correctly post-update
- Update task status to COMPLETE
- Update infrastructure manifest with Ghost CMS entry