CVE-2026-55733
Atom-table exhaustion denial of service in Guardian permissions AtomEncoding via unbounded atom creation
Description
Allocation of Resources Without Limits or Throttling in ueberauth guardian allows denial of service via unbounded atom creation from attacker-controlled binary input. Guardian.Permissions.AtomEncoding encodes permission scopes by passing arbitrary binaries to String.to_atom/1. When encode/3 in lib/guardian/permissions/atom_encoding.ex is called with a list, each binary entry is handled by the encode_value/3 binary clause, which calls String.to_atom(value) with no allow-list check. The perm_set argument (the application's small, finite set of legitimate permission names) is discarded, so any external string flows straight into atom creation. This encoder is selected with use Guardian.Permissions, encoding: Guardian.Permissions.AtomEncoding and reached through the imported encode/3 entry point. String.to_atom/1 creates a brand-new atom for every previously unseen binary, atoms are never garbage collected, and the BEAM atom table is fixed at roughly 1,048,576 entries by default. An application that funnels attacker-influenced permission scopes (from a request body, a JWT claim, or other external input) into encode/3 therefore mints one permanent atom per distinct value. A modest stream of varied, unauthenticated input permanently consumes the atom table and crashes the BEAM node with system_limit, taking down every application running on it. The default encoder is Guardian.Permissions.BitwiseEncoding, which is not affected. This issue affects guardian: from 2.0.0 before 2.4.1.
INFO
Published Date :
Aug. 1, 2026, 7:16 p.m.
Last Modified :
Aug. 1, 2026, 7:16 p.m.
Remotely Exploit :
No
Source :
6b3ad84c-e1a6-4bf7-a703-f496b71e49db
Affected Products
The following products are affected by CVE-2026-55733
vulnerability.
Even if cvefeed.io is aware of the exact versions of the
products
that
are
affected, the information is not represented in the table below.
No affected product recoded yet
CVSS Scores
| Score | Version | Severity | Vector | Exploitability Score | Impact Score | Source |
|---|---|---|---|---|---|---|
| CVSS 4.0 | MEDIUM | 6b3ad84c-e1a6-4bf7-a703-f496b71e49db | ||||
| CVSS 4.0 | MEDIUM | 6b3ad84c-e1a6-4bf7-a703-f496b71e49db |
Solution
- Update Guardian to version 2.4.1 or later.
- Ensure atom creation is properly bounded.
- Avoid passing arbitrary binaries to String.to_atom/1.
- Validate external inputs for permission scopes.
References to Advisories, Solutions, and Tools
Here, you will find a curated list of external links that provide in-depth
information, practical solutions, and valuable tools related to
CVE-2026-55733.
CWE - Common Weakness Enumeration
While CVE identifies
specific instances of vulnerabilities, CWE categorizes the common flaws or
weaknesses that can lead to vulnerabilities. CVE-2026-55733 is
associated with the following CWEs:
Common Attack Pattern Enumeration and Classification (CAPEC)
Common Attack Pattern Enumeration and Classification
(CAPEC)
stores attack patterns, which are descriptions of the common attributes and
approaches employed by adversaries to exploit the CVE-2026-55733
weaknesses.
We scan GitHub repositories to detect new proof-of-concept exploits. Following list is a collection of public exploits and proof-of-concepts, which have been published on GitHub (sorted by the most recently updated).
Results are limited to the first 15 repositories due to potential performance issues.
The following list is the news that have been mention
CVE-2026-55733 vulnerability anywhere in the article.
The following table lists the changes that have been made to the
CVE-2026-55733 vulnerability over time.
Vulnerability history details can be useful for understanding the evolution of a vulnerability, and for identifying the most recent changes that may impact the vulnerability's severity, exploitability, or other characteristics.
-
New CVE Received by 6b3ad84c-e1a6-4bf7-a703-f496b71e49db
Aug. 01, 2026
Action Type Old Value New Value Added Affected [{'cpes': ['cpe:2.3:a:ueberauth:guardian:*:*:*:*:*:*:*:*'], 'repo': 'https://github.com/ueberauth/guardian', 'vendor': 'ueberauth', 'modules': ["'Elixir.Guardian.Permissions.AtomEncoding'"], 'product': 'guardian', 'versions': [{'status': 'affected', 'version': '2.0.0', 'lessThan': '2.4.1', 'versionType': 'semver'}], 'packageURL': 'pkg:hex/guardian', 'packageName': 'guardian', 'programFiles': ['lib/guardian/permissions/atom_encoding.ex'], 'collectionURL': 'https://repo.hex.pm', 'defaultStatus': 'unaffected', 'programRoutines': [{'name': "'Elixir.Guardian.Permissions.AtomEncoding':encode/3"}, {'name': "'Elixir.Guardian.Permissions.AtomEncoding':encode_value/3"}]}, {'cpes': ['cpe:2.3:a:ueberauth:guardian:*:*:*:*:*:*:*:*'], 'repo': 'https://github.com/ueberauth/guardian', 'vendor': 'ueberauth', 'modules': ["'Elixir.Guardian.Permissions.AtomEncoding'"], 'product': 'guardian', 'versions': [{'status': 'affected', 'version': 'b7a6128ca4d0ffb7f7df5219dd982304ff9d6802', 'lessThan': '9cd268557846aa4c3ad53566c08f2c190ee5513f', 'versionType': 'git'}], 'packageURL': 'pkg:github/ueberauth/guardian', 'packageName': 'ueberauth/guardian', 'programFiles': ['lib/guardian/permissions/atom_encoding.ex'], 'collectionURL': 'https://github.com', 'defaultStatus': 'unaffected', 'programRoutines': [{'name': "'Elixir.Guardian.Permissions.AtomEncoding':encode/3"}, {'name': "'Elixir.Guardian.Permissions.AtomEncoding':encode_value/3"}]}] Added Description Allocation of Resources Without Limits or Throttling in ueberauth guardian allows denial of service via unbounded atom creation from attacker-controlled binary input. Guardian.Permissions.AtomEncoding encodes permission scopes by passing arbitrary binaries to String.to_atom/1. When encode/3 in lib/guardian/permissions/atom_encoding.ex is called with a list, each binary entry is handled by the encode_value/3 binary clause, which calls String.to_atom(value) with no allow-list check. The perm_set argument (the application's small, finite set of legitimate permission names) is discarded, so any external string flows straight into atom creation. This encoder is selected with use Guardian.Permissions, encoding: Guardian.Permissions.AtomEncoding and reached through the imported encode/3 entry point. String.to_atom/1 creates a brand-new atom for every previously unseen binary, atoms are never garbage collected, and the BEAM atom table is fixed at roughly 1,048,576 entries by default. An application that funnels attacker-influenced permission scopes (from a request body, a JWT claim, or other external input) into encode/3 therefore mints one permanent atom per distinct value. A modest stream of varied, unauthenticated input permanently consumes the atom table and crashes the BEAM node with system_limit, taking down every application running on it. The default encoder is Guardian.Permissions.BitwiseEncoding, which is not affected. This issue affects guardian: from 2.0.0 before 2.4.1. Added CVSS V4.0 AV:L/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X Added CWE CWE-770 Added Reference https://cna.erlef.org/cves/CVE-2026-55733.html Added Reference https://github.com/ueberauth/guardian/commit/9cd268557846aa4c3ad53566c08f2c190ee5513f Added Reference https://github.com/ueberauth/guardian/security/advisories/GHSA-fjr5-7xrc-hmpj Added Reference https://osv.dev/vulnerability/EEF-CVE-2026-55733