Skip to content

Conversation

@odaysec
Copy link

@odaysec odaysec commented Sep 29, 2025

Description

This fixes addresses path traversal vulnerabilities in tar archive extraction within the kind codebase. Without proper validation, specially crafted tar entries could escape the intended extraction directory and overwrite arbitrary files on the host system. This PR introduces safeguards to ensure that extracted files remain confined to the target directory.

abs := filepath.Join(dir, rel)
switch f.Typeflag {
case tar.TypeReg:
wf, err := os.OpenFile(abs, os.O_CREATE|os.O_RDWR, os.FileMode(f.Mode))
if err != nil {
return err
}
n, err := io.Copy(wf, tr)
if closeErr := wf.Close(); closeErr != nil && err == nil {
err = closeErr
}
if err != nil {
return errors.Errorf("error writing to %s: %v", abs, err)
}
if n != f.Size {
return errors.Errorf("only wrote %d bytes to %s; expected %d", n, abs, f.Size)
}
case tar.TypeDir:
if _, err := os.Stat(abs); err != nil {
if err := os.MkdirAll(abs, 0755); err != nil {

  • Issue: Tar archive entries are written to paths derived directly from the archive without validation. Attackers could craft entries with .. or absolute paths to escape the destination directory.

    • Compute the absolute path of the intended extraction target using filepath.Abs and filepath.Clean.
    • Verify that the target path begins with the cleaned absolute destination directory path.
    • Skip extraction (or return an error) for any entry that falls outside of the allowed directory.
    • Ensure this check is performed before any file system operations (e.g., os.Create, os.MkdirAll).

filepath.Join(destDirectory, filepath.Dir(hdr.Name)), os.FileMode(0o755),
); err != nil {
return fmt.Errorf("creating image directory structure: %w", err)
}
f, err := os.Create(filepath.Join(destDirectory, hdr.Name))

  • Issue: Similar to untar, the function does not validate hdr.Name, allowing malicious tar entries to escape the intended destination.
    • After joining hdr.Name with the target directory, normalize the path using filepath.Clean.
    • Confirm that the cleaned path remains within the cleaned target directory.
    • Reject or skip entries containing absolute paths or .. segments that lead outside the extraction directory.
    • Added a check using strings.HasPrefix(cleanedPath, cleanedDestDir + string(os.PathSeparator)) to enforce confinement.

Notes Refferences

  • No new dependencies were added; the fix leverages existing filepath, os, and strings packages.
  • The behavior of normal, well-formed tarballs remains unchanged.
  • Malicious or malformed entries are safely rejected.

@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Sep 29, 2025
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: odaysec
Once this PR has been reviewed and has the lgtm label, please assign aojea for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot
Copy link
Contributor

Welcome @odaysec!

It looks like this is your first PR to kubernetes-sigs/kind 🎉. Please refer to our pull request process documentation to help your PR have a smooth ride to approval.

You will be prompted by a bot to use commands during the review process. Do not be afraid to follow the prompts! It is okay to experiment. Here is the bot commands documentation.

You can also check if kubernetes-sigs/kind has its own contribution guidelines.

You may want to refer to our testing guide if you run into trouble with your tests not passing.

If you are having difficulty getting your pull request seen, please follow the recommended escalation practices. Also, for tips and tricks in the contribution process you may want to read the Kubernetes contributor cheat sheet. We want to make sure your contribution gets all the attention it needs!

Thank you, and welcome to Kubernetes. 😃

@k8s-ci-robot k8s-ci-robot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label Sep 29, 2025
@k8s-ci-robot
Copy link
Contributor

Hi @odaysec. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added the size/M Denotes a PR that changes 30-99 lines, ignoring generated files. label Sep 29, 2025
@odaysec
Copy link
Author

odaysec commented Sep 29, 2025

/ok-to-test

@k8s-ci-robot
Copy link
Contributor

@odaysec: Cannot trigger testing until a trusted user reviews the PR and leaves an /ok-to-test message.

In response to this:

/ok-to-test

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@stmcginnis
Copy link
Contributor

Do you see a way where this is exposed in a way that could be exploited? Or was this just an AI recommendation?

@BenTheElder
Copy link
Member

/ok-to-test

Do you see a way where this is exposed in a way that could be exploited? Or was this just an AI recommendation?

ummm if you have a malicious process running in the kind node which is bad enough on it's own, but perhaps sandboxed into say, a limactl vm, then this allow overwriting on the host as the host user IF the user calls kind export logs (which is pretty common)

for the other one, where you're downloading a kubernetes release, if that is malicious then you're probably in pretty bad shape already, but we should still mitigate it.

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Nov 3, 2025
return errors.Wrapf(err, "could not get absolute path for extraction file: %v", err)
}
// Path traversal check: absClean must be within dirAbs
// Ensure dirAbs ends with a separator to prevent prefix matching issues
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be hoisted out of the loop?

@k8s-ci-robot
Copy link
Contributor

@odaysec: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
pull-kind-test 1e225b8 link true /test pull-kind-test
pull-kind-e2e-kubernetes 1e225b8 link true /test pull-kind-e2e-kubernetes
pull-kind-conformance-parallel-dual-stack-ipv4-ipv6 1e225b8 link true /test pull-kind-conformance-parallel-dual-stack-ipv4-ipv6
pull-kind-conformance-parallel-ga-only 1e225b8 link true /test pull-kind-conformance-parallel-ga-only
pull-kind-conformance-parallel-ipv6 1e225b8 link true /test pull-kind-conformance-parallel-ipv6
pull-kind-build 1e225b8 link true /test pull-kind-build
pull-kind-e2e-kubernetes-1-32 1e225b8 link true /test pull-kind-e2e-kubernetes-1-32
pull-kind-e2e-kubernetes-1-34 1e225b8 link true /test pull-kind-e2e-kubernetes-1-34
pull-kind-e2e-kubernetes-1-31 1e225b8 link true /test pull-kind-e2e-kubernetes-1-31
pull-kind-verify 1e225b8 link true /test pull-kind-verify
pull-kind-e2e-kubernetes-1-33 1e225b8 link true /test pull-kind-e2e-kubernetes-1-33

Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

Copy link
Member

@BenTheElder BenTheElder left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should probably be looking at https://go.dev/blog/osroot in the future

unfortunately it would make go 1.24 the minimum version to build kind, which is a little aggressive at the moment

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants