4837 Total CVEs
26 Years
GitHub
README.md
README.md not found for CVE-2023-21746. The file may not exist in the repository.
POC / yara_rule_for_detection.yar YAR
rule detect_localpotato {
    meta:
        description = "Detects the localpotato exploit"
    strings:
                $CLSID = "854A20FB-2D44-457D-992F-EF13785D2B51"
		$localpotato = {6c 6f 63 61 6c 70 6f 74 61 74 6f}
		$ntlm = {4e 54 4c 4d}
		$function = "NtQueryInformationProcess"

    condition:
        all of them
}