Guest Account Enabled
ID: guest-account-enabled
Severity: high
Author: princechaddha
Tags: windows,user,account,guest,code,windows-audit
Description
Section titled “Description”Checks if the Guest account is enabled.
YAML Source
Section titled “YAML Source”id: guest-account-enabled
info: name: Guest Account Enabled author: princechaddha severity: high description: Checks if the Guest account is enabled. impact: | Enabling the Guest account can allow unauthorized users to access the system with minimal restrictions. remediation: | Disable the Guest account to reduce the risk of unauthorized access. tags: windows,user,account,guest,code,windows-audit
self-contained: true
code: - pre-condition: | IsWindows(); engine: - powershell - powershell.exe args: - -ExecutionPolicy - Bypass pattern: "*.ps1" source: | (Get-WmiObject -Class Win32_UserAccount -Filter "Name='Guest' and LocalAccount=True").Disabled
matchers: - type: word words: - "False"# digest: 4b0a0048304602210093e2da47777fb5bacd1e11ee44e508fcd2e0b8527889c159c7cd3c4a64e2f167022100a23bb59c3525976e99ead643adab4f61fd978ed1c0e9544981b2ed12aa8f3734:922c64590222798bb761d5b6d8e72950Guide to check the vulnerabilities
Section titled “Guide to check the vulnerabilities”This template is used to detect vulnerabilities in web applications. It can be used with the Nuclei tool to scan for specific patterns or behaviors.
$ nuclei -u "URL" -t "code/windows/audit/guest-account-enabled.yaml"