Skip to content

Security: kyle-ssg/kyde

Security

SECURITY.md

Security Policy

Supported versions

Kyde is pre-1.0 and ships from main. Security fixes land on main and in the next tagged release. Older tagged releases are not separately patched.

Reporting a vulnerability

Please do not open a public issue for a security problem.

Report privately via GitHub's private vulnerability reporting (Security → Report a vulnerability) on this repository, or email kyle.johnson@flagsmith.com with the details and, if possible, a minimal reproduction.

You'll get an acknowledgement within a few days. Once fixed, the advisory and a credit (if you'd like one) are published with the release.

Scope / threat model

Kyde is a local desktop app. Things worth a report:

  • Shell-out injection. Kyde drives git by shelling out to the git binary (src/git.rs). A repo path, branch name, file name, or commit message that can break argument boundaries and run an unintended command is in scope.
  • Path traversal / writes outside the open project — file editing, save, and rollback (which deletes files) should never touch paths outside the selected repo.
  • Config parsing — the JSON config files under ~/.config/kyde/ (theme, keymap, plugins, projects) are user-editable; a crafted file causing memory unsafety is in scope (panics that are merely a crash are lower priority).
  • Dependency advisories — CI runs cargo-deny against RustSec, but a flagged advisory we've missed is welcome.

Out of scope: issues requiring an already-compromised local account, and the inherent trust in opening a repository you don't control (Kyde runs git in it, same as any git GUI).

There aren't any published security advisories