Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions pkg/edrRecon/edrdata.go
Original file line number Diff line number Diff line change
Expand Up @@ -888,6 +888,16 @@ var EdrList = []string{
"hlprotect.sys",
"cyserver.exe",
"Cortex XDR",
"Acronis",
"cyber-protect-service.exe",
"aakore.exe",
"anti_ransomware_service.exe",
"AcronisCyberProtectionService",
"AcronisActiveProtectionService",
"C:\\Program Files\\Acronis",
"fltsrv.sys",
"snapman.sys",
"tdrpman.sys",
}

var ReconList = []string{
Expand Down
1 change: 1 addition & 0 deletions pkg/resources/scan_edr.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ var (
LimacharlieEDR EDRType = "limacharlie"
HarfangLabEDR EDRType = "harfanglab"
CortexXDREDR EDRType = "cortex_xdr"
AcronisEDR EDRType = "acronis"
)
30 changes: 30 additions & 0 deletions pkg/scanners/scan_acronis.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package scanners

import "github.com/fourcorelabs/edrhunt/pkg/resources"

type AcronisDetection struct{}

func (w *AcronisDetection) Name() string {
return "Acronis Cyber Protect"
}

func (w *AcronisDetection) Type() resources.EDRType {
return resources.AcronisEDR
}

var AcronisHeuristic = []string{
"cyber-protect-service.exe",
"aakore.exe",
"AcronisCyberProtectionService",
"AcronisActiveProtectionService",
"C:\\Program Files\\Acronis",
}

func (w *AcronisDetection) Detect(data resources.SystemData) (resources.EDRType, bool) {
_, ok := data.CountMatchesAll(AcronisHeuristic)
if !ok {
return "", false
}

return resources.AcronisEDR, true
}
1 change: 1 addition & 0 deletions pkg/scanners/scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ var (
&MalwareBytesDetection{},
&LimacharlieDetection{},
&CortexXDRDetection{},
&AcronisDetection{},
}
)