dataplat / dbadisa

🦅 DISA STIG automation module for SQL Server
MIT License
16 stars 13 forks source link

Find-DbsCommand to help find by Vuln #81

Closed potatoqualitee closed 4 years ago

potatoqualitee commented 4 years ago

Plus a lil fix

potatoqualitee commented 4 years ago

    .EXAMPLE
        PS C:\> Find-DbsCommand V-79355

        For lazy typers: finds all commands searching the entire help for V-79355

    .EXAMPLE
        PS C:\> Find-DbsCommand -Pattern audit

        For rigorous typers: finds all commands searching the entire help for the word audit

    .EXAMPLE
        PS C:\> Find-DbsCommand -Tag V-79355

        Finds all commands tagged with V-79355

    .EXAMPLE
        PS C:\> Find-DbsCommand -Tag V-79313, V-79315

        Finds all commands tagged with BOTH V-79355 and V-79061