mirror of
https://github.com/fleetdm/fleet
synced 2026-05-19 15:09:20 +00:00
* Initial cut of Win tables schema * Add context * Formatting fixes * Add bitlocker_info * Remove temp stuff * Remove temp stuff redux * Apply suggestions from code review Co-authored-by: Guillaume Ross <guillaume@binaryfactory.ca> * Update bitlocker_info.yml * Edited for clarity Co-authored-by: Guillaume Ross <guillaume@binaryfactory.ca>
9 lines
No EOL
345 B
YAML
9 lines
No EOL
345 B
YAML
name: windows_optional_features
|
|
examples: >-
|
|
SMBv1 is deprecated and has known, unpatched vulnerablities; it should be disabled whenever possible. This query lists enabled SMBv1 services (client and/or server).
|
|
|
|
```
|
|
|
|
SELECT name,caption,statename FROM windows_optional_features WHERE name LIKE 'SMB1Protocol%' AND state = 1;
|
|
|
|
``` |