[Rule Tuning] Potential Privacy Control Bypass via TCCDB Modification (#2121)

* add exception for Bitdefender
This commit is contained in:
Mika Ayenson
2022-07-22 16:07:41 -04:00
committed by GitHub
parent cefb84ae15
commit d2be29b226
@@ -1,7 +1,7 @@
[metadata]
creation_date = "2020/12/23"
maturity = "production"
updated_date = "2022/03/31"
updated_date = "2022/07/18"
[rule]
author = ["Elastic"]
@@ -33,7 +33,8 @@ type = "eql"
query = '''
process where event.type in ("start", "process_started") and process.name : "sqlite*" and
process.args : "/*/Application Support/com.apple.TCC/TCC.db"
process.args : "/*/Application Support/com.apple.TCC/TCC.db" and
not process.parent.executable : "/Library/Bitdefender/AVP/product/bin/*"
'''