Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@
* [Authentication](winrm-protocol/authentication.md)
* [Command Execution](winrm-protocol/command-execution.md)
* [Defeating LAPS](winrm-protocol/defeating-laps.md)
* [WSUS Configuration Enumeration](winrm-protocol/wsus-configuration-enumeration.md)

## MSSQL protocol

Expand Down
15 changes: 15 additions & 0 deletions winrm-protocol/wsus-configuration-enumeration.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# WSUS Configuration Enumeration

This module (`wsus_enum`) enumerates a host's **Windows Update configuration** to determine whether it is configured to use a **WSUS server** and whether that configuration is vulnerable to **WSUS spoofing**.

`wsus_enum` collects the relevant Windows Update settings (**registry values**) and evaluates whether the machine is enforcing a WSUS server. The module reports the configured `WUServer / WUStatusServer` values as well as flags such as `UseWUServer`, `NoAutoUpdate` and `AUOptions`.

```bash
nxc winrm <ip> -u user -p pass -M wsus_enum
```

If WinRM is not available, you can run the module over SMB (**requires administrative privileges**):

```bash
nxc smb <ip> -u user -p pass -M wsus_enum
```