OpenSearch unauthorized data access on fields protected by field level security if field is a member of an object
Moderate severity
GitHub Reviewed
Published
Aug 1, 2025
in
opensearch-project/security
•
Updated Aug 1, 2025
Package
Affected versions
< 2.19.3.0
Patched versions
2.19.3.0
Description
Published to the GitHub Advisory Database
Aug 1, 2025
Reviewed
Aug 1, 2025
Last updated
Aug 1, 2025
Impact
OpenSearch versions 2.19.2 and earlier improperly apply Field Level Security (FLS) rules on fields which are not at the top level of the source document tree (i.e., which are members of a JSON object).
If an FLS exclusion rule (like
~object
) is applied to an object valued attribute in a source document, the object is properly removed from the_source
document in search and get results. However, any member attribute of that object remains available to search queries. This allows to reconstruct the original field contents using range queries.Patches
The issue has been resolved in OpenSearch 3.0.0 and OpenSearch 2.19.3.
Workarounds
If FLS exclusion rules are used for object valued attributes (like
~object
), add an additional exclusion rule for the members of the object (like~object.*
).References