Vulnerability Description
Wekan is open source kanban built with Meteor. From 8.36 until 9.74, the outgoing webhook Integration URL validator in models/integrations.js checked only the literal URL.hostname against regular expressions, so DNS names such as 169-254-169-254.nip.io passed that first-line check. The delivery path's fetchSafe guard already blocked the reported IPv4 destination, but its separate IPv4-only resolver and duplicated blocklist created inconsistent all-address-family enforcement and drift risk between input-time and connection-time validation. Version 9.74 makes server/lib/ssrfGuard.js resolve all addresses with `dns.lookup({ all: true })`, validate every result through the shared isIpBlocked logic, pin the connection, and block redirects. This issue is fixed in version 9.74.
CVSS Score
HIGH
Related Weaknesses (CWE)
References
- https://github.com/wekan/wekan/commit/ef845fe4a0adb82af436313310939cd48c0b1347
- https://github.com/wekan/wekan/releases/tag/v9.74
- https://github.com/wekan/wekan/security/advisories/GHSA-66m2-4wfr-c45p
- https://github.com/wekan/wekan/security/advisories/GHSA-66m2-4wfr-c45p
FAQ
What is CVE-2026-68558?
CVE-2026-68558 is a vulnerability with a CVSS score of 8.5 (HIGH). Wekan is open source kanban built with Meteor. From 8.36 until 9.74, the outgoing webhook Integration URL validator in models/integrations.js checked only the literal URL.hostname against regular expr...
How severe is CVE-2026-68558?
CVE-2026-68558 has been rated HIGH with a CVSS base score of 8.5/10. Review the CVSS metrics above for detailed severity breakdown.
Is there a patch for CVE-2026-68558?
Check the references section above for vendor advisories and patch information. Review vendor security bulletins for remediation guidance.