Skip to content

Commit ef3a400

Browse files
[PR sublime-security#3755] added rule: PhaaS: Impact Solutions (Impact Vector Suite)
1 parent 07be819 commit ef3a400

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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 (
11+
(
12+
length(attachments) >= 1
13+
and any(attachments,
14+
(
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 regex.contains(., '\d(/impact)')
21+
)
22+
)
23+
)
24+
)
25+
or (
26+
any(body.links,
27+
(
28+
strings.icontains(.href_url.url, "impact?")
29+
or strings.icontains(.href_url.url, "/impact")
30+
)
31+
and (
32+
strings.icontains(.href_url.url, ":8443")
33+
or strings.icontains(.href_url.url, ":2087")
34+
)
35+
)
36+
)
37+
)
38+
attack_types:
39+
- "Credential Phishing"
40+
tactics_and_techniques:
41+
- "Evasion"
42+
detection_methods:
43+
- "Content analysis"
44+
id: "6e46247f-f5cb-508c-be05-e79218644b60"
45+
og_id: "4d197faf-31bc-5f09-bf60-9f6a52f913a9"
46+
testing_pr: 3755
47+
testing_sha: 4df8c69249860ae527795dde46816bda22596232

0 commit comments

Comments
 (0)