Raw vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:HSummary
CVE-2022-1292 is a high-severity OS Command Injection (CWE-78) vulnerability in Openssl Openssl. Its CVSS base score is 7.3 (High).
Operationally, ranked in the top 0.4% of CVEs by exploit likelihood; it is not currently listed in the CISA KEV catalog.
The strongest mitigations our analysis identified map to SI-10 (Information Input Validation) and SI-2 (Flaw Remediation) — see the control section below for these in your framework.
Deeper analysis AI-assisted summary
Synthesised by an AI model from the NVD description and linked references — a reading aid, not an authoritative source.
The vulnerability is a command injection flaw (CWE-78) in the c_rehash script distributed with OpenSSL, which fails to sanitize shell metacharacters. It affects OpenSSL 3.0.0-3.0.2, 1.1.1-1.1.1n, and 1.0.2-1.0.2zd on operating systems that automatically execute the script; the issue is rated 7.3 under CVSS 3.1 with local attack vector.
An attacker able to influence files processed by c_rehash on such systems can execute arbitrary commands with the privileges of the script, which is considered obsolete.
Official patches have been released in OpenSSL 3.0.3, 1.1.1o, and 1.0.2ze, and vendors including Siemens and Debian advise migrating to the supported "openssl rehash" command-line tool instead of relying on the script. The EPSS score reached a peak of 0.4121 with a current value of 0.3889.
OWASP Top 10 for Web (2025)
EU & UK References
- 🇪🇺 ENISA EUVD: EUVD-2022-24621
Vulnerability Data
The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with…
more
the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).
- CWE(s)
Related Threats
Likely ATT&CK TechniquesAI
Techniques this vulnerability likely enables, inferred from its description, weakness type, and attributed-actor tradecraft. Confidence is per-technique.
CVEs Like This One
Affected Assets
Mitigating Controls
Control response
Mitigating Controls (NIST 800-53 r5) AI
Directly requires validation and sanitization of untrusted input (filenames) processed by c_rehash, blocking the shell metacharacter injection.
Mandates timely application of the vendor patches (OpenSSL 3.0.3/1.1.1o/1.0.2ze) that eliminate the flawed c_rehash script.
Enforces least functionality by disabling or replacing the obsolete c_rehash script with the supported 'openssl rehash' tool.
Mitigating Controls (NIST CSF 2.0) AI
Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.
PR.PS-06's SDLC practices directly require secure coding and input handling that blocks command-injection defects, yet the single broad outcome leaves many specific neutralization vectors and verification gaps unaddressed.
Routine patching/maintenance can remediate known command-injection CVEs in dependencies (partial forward) but does nothing to stop developers from introducing improper neutralization in custom code (none reverse).
Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI
Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.
Security testing and code review target insecure use of operating-system command interfaces, catching command-injection flaws introduced during development.