Answer in brief
CVE-2026-93155 records a Unknown severity vulnerability in crypto: keembay - Fix AEAD unregister count in error path. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=88574332451380f4b51f6ca88ab9810e714bfb9b <27ec91c29ee155cc507b2f56221fc6fab65dbb51 || >=88574332451380f4b51f6ca88ab9810e714bfb9b <5607b101d86cbee8dd1ffab784495c880ca73383 || >=88574332451380f4b51f6ca88ab9810e714bfb9b <5bbb726d27ff6dff750264e51aa665538394d0f8 || >=88574332451380f4b51f6ca88ab9810e714bfb9b <a3217fe7998622728a53dff405615e0971949eaf || >=88574332451380f4b51f6ca88ab9810e714bfb9b <e264401ce4776a288524e5b87593d4d864147115 | 27ec91c29ee155cc507b2f56221fc6fab65dbb51, 5607b101d86cbee8dd1ffab784495c880ca73383, 5bbb726d27ff6dff750264e51aa665538394d0f8, a3217fe7998622728a53dff405615e0971949eaf, e264401ce4776a288524e5b87593d4d864147115 |
| Linux/Linuxgeneric | 5.11 | Not reported |
Published upstream
Sep 17, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Sep 17, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Sep 17, 2026
In the Linux kernel, the following vulnerability has been resolved: crypto: keembay - Fix AEAD unregister count in error path register_aes_algs() registers the AEAD algorithms before registering the skcipher algorithms. If skcipher registration fails, the function unwinds the earlier AEAD registration with crypto_engine_unregister_aeads(), but it passes ARRAY_SIZE(algs), which is the skcipher table size. Use ARRAY_SIZE(algs_aead) for the AEAD unwind path so the unregister helper iterates over the same table that was registered. Also clarify the nearby comment: the crypto registration helpers clean up algorithms registered within the same call, while this function must still unwind earlier successful registration steps.
Quoted source text, attributed separately from HOL analysis.