Skip to content

Commit

Permalink
[Rule Tuning] Disable Windows Firewall Rules via Netsh (#2231)
Browse files Browse the repository at this point in the history
Co-authored-by: Terrance DeJesus <99630311+terrancedejesus@users.noreply.github.com>
Co-authored-by: Jonhnathan <jonhnathancesar@gmail.com>

(cherry picked from commit 3ba777c)
  • Loading branch information
TotalKnob authored and github-actions[bot] committed Aug 26, 2022
1 parent 0b38f9d commit 03de32b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ type = "eql"
query = '''
process where event.type in ("start", "process_started") and
process.name : "netsh.exe" and
(process.args : "disable" and process.args : "firewall" and process.args : "set") or
(process.args : "advfirewall" and process.args : "off" and process.args : "state")
(
(process.args : "disable" and process.args : "firewall" and process.args : "set") or
(process.args : "advfirewall" and process.args : "off" and process.args : "state")
)
'''


Expand Down

0 comments on commit 03de32b

Please sign in to comment.