From fc97a6b5d32b96523032917dfc4babdd94040b70 Mon Sep 17 00:00:00 2001 From: Eiman Eltigani Date: Thu, 11 Dec 2025 11:39:36 -0700 Subject: [PATCH 1/2] Add sample-dev.com to test site domain_names This allows the local development sample sites to work with the operator. --- src/main/resources/com.uid2.core/test/sites/sites.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/com.uid2.core/test/sites/sites.json b/src/main/resources/com.uid2.core/test/sites/sites.json index 6ece32a0e..2286d3ef6 100644 --- a/src/main/resources/com.uid2.core/test/sites/sites.json +++ b/src/main/resources/com.uid2.core/test/sites/sites.json @@ -3,7 +3,7 @@ "id": 123, "name": "MegaTest Site", "enabled": true, - "domain_names" : ["localhost", "uidapi.com"], + "domain_names" : ["localhost", "uidapi.com", "sample-dev.com"], "app_names": ["com.123.Game.App.android", "123456789", "com.123.Game.App.ios", "com.uid2.devapp"] }, { From 7c6fb12550ed0db5c64c54c785eb7d03125c17ab Mon Sep 17 00:00:00 2001 From: Eiman Eltigani Date: Thu, 11 Dec 2025 11:50:08 -0700 Subject: [PATCH 2/2] Fix urllib3 vulnerability (CVE-2025-66418, CVE-2025-66471) Upgrade urllib3 from 1.26.20 to 2.6.0 --- scripts/aws/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/aws/requirements.txt b/scripts/aws/requirements.txt index 421faba98..fe56f20ad 100644 --- a/scripts/aws/requirements.txt +++ b/scripts/aws/requirements.txt @@ -1,4 +1,4 @@ requests[socks]==2.32.3 boto3==1.35.59 -urllib3==1.26.20 +urllib3==2.6.0 PyYAML===6.0.2 \ No newline at end of file