VYPR
Moderate severityNVD Advisory· Published Sep 22, 2025· Updated Sep 23, 2025

CVE-2025-43814

CVE-2025-43814

Description

In Liferay Portal 7.4.0 through 7.4.3.112, and older unsupported versions, and Liferay DXP 2023.Q4.0 through 2023.Q4.8, 2023.Q3.1 through 2023.Q3.10, 7.4 GA through update 92, and older unsupported versions the audit events records a user’s password reminder answer, which allows remote authenticated users to obtain a user’s password reminder answer via the audit events.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
com.liferay:com.liferay.portal.security.audit.event.generators.user.managementMaven
< 5.0.135.0.13

Affected products

2

Patches

2
76c9c38f2161

LPD-16001 SF re-add atribute

https://github.com/liferay/liferay-portalPedro Victor SilvestreFeb 26, 2024via ghsa
1 file changed · +1 0
  • modules/apps/portal-security-audit/portal-security-audit-event-generators-user-management/src/main/java/com/liferay/portal/security/audit/event/generators/user/management/internal/model/listener/UserModelListener.java+1 0 modified
    @@ -100,6 +100,7 @@ protected List<Attribute> getModifiedAttributes(
     		attributesBuilder.add("reminderQueryAnswer");
     		attributesBuilder.add("reminderQueryQuestion");
     		attributesBuilder.add("screenName");
    +		attributesBuilder.add("timeZoneId");
     
     		List<Attribute> attributes = attributesBuilder.getAttributes();
     
    
6d0f123c838b

LPD-16001 Hide the values for the reminderQueryAnswer in audit

https://github.com/liferay/liferay-portalPedro Victor SilvestreFeb 5, 2024via ghsa
1 file changed · +8 1
  • modules/apps/portal-security-audit/portal-security-audit-event-generators-user-management/src/main/java/com/liferay/portal/security/audit/event/generators/user/management/internal/model/listener/UserModelListener.java+8 1 modified
    @@ -18,6 +18,7 @@
     import com.liferay.portal.security.audit.event.generators.util.AuditMessageBuilder;
     
     import java.util.List;
    +import java.util.Objects;
     
     import org.osgi.service.component.annotations.Component;
     import org.osgi.service.component.annotations.Reference;
    @@ -99,10 +100,16 @@ protected List<Attribute> getModifiedAttributes(
     		attributesBuilder.add("reminderQueryAnswer");
     		attributesBuilder.add("reminderQueryQuestion");
     		attributesBuilder.add("screenName");
    -		attributesBuilder.add("timeZoneId");
     
     		List<Attribute> attributes = attributesBuilder.getAttributes();
     
    +		if (attributes.removeIf(
    +				attribute -> Objects.equals(
    +					attribute.getName(), "reminderQueryAnswer"))) {
    +
    +			attributes.add(new Attribute("reminderQueryAnswer"));
    +		}
    +
     		if (user.isPasswordModified()) {
     			attributes.add(new Attribute("password"));
     		}
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

6

News mentions

0

No linked articles in our index yet.