Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .trivyignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ CVE-2025-59375 exp:2025-12-15

# UID2-6128
CVE-2025-55163 exp:2025-10-30

# UID2-6340
CVE-2025-64720 exp:2026-06-05
CVE-2025-65018 exp:2026-06-05
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.uid2</groupId>
<artifactId>uid2-core</artifactId>
<version>2.30.36</version>
<version>2.30.39-alpha-161-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/uid2/core/util/MetadataHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static String getMetadataPathName(OperatorType operatorType, int siteId,
StoreScope store;
Boolean providePrivateSiteData = ConfigStore.Global.getBoolean("provide_private_site_data");
if (supportsDecryption) { // Check if decryption is possible
if (operatorType == OperatorType.PUBLIC ) //siteId_public folder
if (operatorType == OperatorType.PUBLIC || (providePrivateSiteData == null || !providePrivateSiteData.booleanValue()))
{
store = new EncryptedScope(new CloudPath(metadataPathName), siteId, true);
} else //siteId_private folder
Expand Down