Skip to content

Commit

Permalink
add indicators for trellix
Browse files Browse the repository at this point in the history
  • Loading branch information
dadevel committed Nov 18, 2024
1 parent 00411bc commit bf932f9
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "servicedetector"
version = "0.0.7"
version = "0.0.8"
description = ""
authors = ["dadevel <[email protected]>"]
license = "MIT"
Expand Down
23 changes: 23 additions & 0 deletions servicedetector/indicators.csv
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ epp,Bitdefender,service,bdredline_agent
epp,Carbon Black App Control,service,Parity
epp,Carbon Black,service,CbDefenseWSC
epp,Carbon Black,service,CbDefense
epp,CrowdStrike,driver,CSAgent.sys
epp,CrowdStrike,driver,CSBoot.sys
epp,CrowdStrike,driver,CSDeviceControl.sys
epp,CrowdStrike,driver,CSFirmwareAnalysis.sys
epp,CrowdStrike,pipe,CrowdStrike\{*
epp,CrowdStrike,process,CSFalconContainer.exe
epp,CrowdStrike,process,CSFalconService.exe
Expand Down Expand Up @@ -114,6 +118,25 @@ epp,Sophos Intercept X,service,Sophos System Protection Service
epp,Symantec,service,SNAC
epp,Symantec,service,SepMasterService
epp,Symantec,service,SepScanService
epp,Trellix,pipe,McAfeeAgent_Pipe_*
epp,Trellix,pipe,TrellixEDR_Pipe_*
epp,Trellix,pipe,mfefire_*
epp,Trellix,pipe,mfemactl_*
epp,Trellix,pipe,mfetp_*
epp,Trellix,process,McAfeeAgent.exe
epp,Trellix,process,McAfeeEDR.exe
epp,Trellix,process,mfefire.exe
epp,Trellix,process,mfemactl.exe
epp,Trellix,process,mfetp.exe
epp,Trellix,service,McAfee Endpoint Security Platform Service
epp,Trellix,service,macmnsvc
epp,Trellix,service,masvc
epp,Trellix,service,mfeaack
epp,Trellix,service,mfefire
epp,Trellix,service,mfemactl
epp,Trellix,service,mfemms
epp,Trellix,service,mfetp
epp,Trellix,service,mfewc
epp,Trend Micro,pipe,IPC_XBC_XBC_AGENT_PIPE_*
epp,Trend Micro,pipe,Log_ServerNamePipe
epp,Trend Micro,pipe,OIPC_LWCS_PIPE_*
Expand Down
2 changes: 1 addition & 1 deletion servicedetector/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def run_detections(host: str, opts: Namespace) -> bool:

def read_indicators() -> dict[str, list[dict[str, str]]]:
resources = importlib.resources.files(__package__)
indicators = dict(file=[], pipe=[], process=[], service=[])
indicators = dict(file=[], driver=[], pipe=[], process=[], service=[])
with open(resources/'indicators.csv') as file: # type: ignore
reader = csv.DictReader(file)
for row in reader:
Expand Down

0 comments on commit bf932f9

Please sign in to comment.