Skip to content

Commit 545871c

Browse files
IndiaAceID Generatoralex-herold
authored
LWescott create gophish_abuse_pixel_tracking rule (#3351)
Co-authored-by: ID Generator <[email protected]> Co-authored-by: Alex Herold <[email protected]>
1 parent 25edb40 commit 545871c

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "Credential theft: Gophish abuse with hidden tracking image"
2+
description: "Detects messages containing hidden tracking images with display:none style and tracking parameters in the source URL, commonly used for user tracking and engagement monitoring."
3+
type: "rule"
4+
severity: "high"
5+
source: |
6+
type.inbound
7+
and (
8+
strings.icontains(body.html.raw,
9+
'<img alt='''' style=''display: none'' src='''
10+
)
11+
or strings.icontains(body.html.raw, 'img alt="" style="display: none" src="')
12+
)
13+
and strings.icontains(body.html.raw, '/track?rid=')
14+
15+
attack_types:
16+
- "Spam"
17+
tactics_and_techniques:
18+
- "Evasion"
19+
- "Image as content"
20+
detection_methods:
21+
- "Content analysis"
22+
- "HTML analysis"
23+
id: "59915ceb-4d7c-56ba-a28e-ccda8d95b5e2"

0 commit comments

Comments
 (0)