-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathPK_ATT_dammy.yar
More file actions
26 lines (24 loc) · 715 Bytes
/
Copy pathPK_ATT_dammy.yar
File metadata and controls
26 lines (24 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
rule PK_ATT_dammy : ATandT
{
meta:
description = "Phishing Kit impersonating ATandT"
licence = "GPL-3.0"
author = "Thomas 'tAd' Damonneville"
reference = ""
date = "2021-08-12"
comment = "Phishing Kit - ATandT - 'Hacked By Opa Dammy'"
strings:
// the zipfile working on
$zip_file = { 50 4b 03 04 }
// specific file found in PhishingKit
$spec_file = "Team.php"
$spec_file2 = "Indexxatt.htm"
condition:
// look for the ZIP header
uint32(0) == 0x04034b50 and
// make sure we have a local file header
$zip_file and
// check for file
$spec_file and
$spec_file2
}