Friday 26 June 2026 11:10:11 GMT+02:00

Netcrook

HomeManifesto
News
Techcrook
Geocrook
WikicrookTeamAppContact
EnglishItalianoArabic

WIKICROOK

Memory disclosure

A flaw that reveals data from memory that should not be visible to a caller or remote client.

Memory disclosure is a vulnerability that exposes data from process memory to a caller, local user, or remote client that should not be able to see it. The leaked bytes may include leftover credentials, session tokens, query results, pointers, or fragments of internal server state.

It matters in cyber security because disclosure bugs often turn a small information leak into a much larger compromise. Attackers use leaked memory to bypass address randomization, learn data formats, identify secrets, or chain the leak with another flaw such as SQL injection or a buffer overflow. In database systems and other network services, disclosure can happen when error handling, serialization, or parsing reads past initialized data, or returns uninitialized buffers. Defenders look for strict bounds checking, memory initialization, safe string handling, and patching of affected code paths, especially in features exposed to untrusted clients.

← WIKICROOK index