Skip to content

Commit 02af406

Browse files
[PR #3554] added rule: PhaaS: Impact Solutions (Impact Vector Suite)
1 parent 5f2b613 commit 02af406

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: "PhaaS: Impact Solutions (Impact Vector Suite)"
2+
description: |
3+
Identifies the use of the Impact Solutions PhaaS.
4+
5+
Impact Vector Suite is a full-spectrum payload delivery platform, engineered for stealth-optimized execution across all major deployment vectors.
6+
type: "rule"
7+
severity: "medium"
8+
source: |
9+
type.inbound
10+
and length(attachments) >= 1
11+
and any(attachments,
12+
.size < 10000
13+
and .file_extension == "htm"
14+
and (
15+
regex.icontains(file.parse_html(.).raw,
16+
"const (?:urlParts|fakeEvent|progressBar|segments)"
17+
)
18+
or any([file.parse_html(.).raw],
19+
strings.icontains(., "impact?")
20+
or strings.icontains(., "/impact")
21+
or strings.icontains(., ":8443")
22+
or strings.icontains(., "file://")
23+
)
24+
)
25+
)
26+
27+
28+
attack_types:
29+
- "Credential Phishing"
30+
tactics_and_techniques:
31+
- "Evasion"
32+
detection_methods:
33+
- "Content analysis"
34+
id: "5ab4e668-916c-5ef5-8fed-0bb53205baa7"
35+
og_id: "4d197faf-31bc-5f09-bf60-9f6a52f913a9"
36+
testing_pr: 3554
37+
testing_sha: 3e53bd00f0f766e8f2580082399ba0723b123cf6

0 commit comments

Comments
 (0)