CVE-2026-54901
Published:June 19, 2026
Updated:June 21, 2026
Summary "Oj::Parser" in usual mode does not mark "array_class" and "hash_class" references during garbage collection. If GC runs after the class is assigned but before a parse, the class object is reclaimed, leaving the parser holding a dangling VALUE. The subsequent "parse" call dereferences the freed object, producing a segfault. Version - Software: oj gem - Affected: all versions with "ext/oj/usual.c" / "ext/oj/parser.c" - Latest tested: 3.17.1 (confirmed present) Details The "parser_mark" function in "ext/oj/parser.c" is registered as the GC mark callback for the parser's "TypedData". If "array_class" (stored as "d->array_class" in the "Usual" struct) is not passed to "rb_gc_mark", the GC does not know it is referenced and may collect it. When "close_array_class" ("usual.c:405") later calls "rb_funcallv" on the collected class VALUE, it accesses freed memory, crashing at "RIP: 0x7f... / 0x0000000000000000". Crash output: array_class finalized about to parse [BUG] Segmentation fault at 0x0000000000000000 close_array_class+0x194 /ext/oj/usual.c:405 parse+0x17b3 /ext/oj/parser.c:715 parser_parse+0x10b /ext/oj/parser.c:1408 RIP: 0x7fd1b46d68b7 RBP: 0x0000000000000000 Reproduce require 'oj' p = Oj::Parser.new(:usual, array_class: (ac = Class.new { def <<(_x); end })) ObjectSpace.define_finalizer(ac, proc { warn 'array_class finalized' }) ac = nil GC.start(full_mark: true, immediate_sweep: true) # collect the class p.parse('[1]') # segfault
Affected Packages
oj (RUBY):
Affected version(s) >=0.5 <3.17.3Fix Suggestion:
Update to version 3.17.3Related Resources (2)
Do you need more information?
Contact UsCVSS v4
Base Score:
8.7
Attack Vector
NETWORK
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
NONE
User Interaction
NONE
Vulnerable System Confidentiality
NONE
Vulnerable System Integrity
NONE
Vulnerable System Availability
HIGH
Subsequent System Confidentiality
NONE
Subsequent System Integrity
NONE
Subsequent System Availability
NONE
CVSS v3
Base Score:
7.5
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
NONE
User Interaction
NONE
Scope
UNCHANGED
Confidentiality
NONE
Integrity
NONE
Availability
HIGH
Weakness Type (CWE)
Use After Free