Skip to content

Commit

Permalink
Rules 20210420
Browse files Browse the repository at this point in the history
  • Loading branch information
t4d committed Apr 20, 2021
1 parent 911402f commit b0bca91
Show file tree
Hide file tree
Showing 6 changed files with 136 additions and 3 deletions.
25 changes: 25 additions & 0 deletions PK_DHL_tare.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
rule PK_DHL_tare : DHL
{
meta:
description = "Phishing Kit impersonating DHL"
licence = "GPL-3.0"
author = "Thomas 'tAd' Damonneville"
reference = ""
date = "2021-04-08"
comment = "Phishing Kit - DHL - 'Created in 2014 By tare_ama'"

strings:
$zip_file = { 50 4b 03 04 }
$spec_dir = "DHL_files"
$spec_file1 = "deliveryform.php"
$spec_file2 = "DHL.php"
$spec_file3 = "tracking2.php"
$spec_file4 = "mailar222.txt"
condition:
uint32(0) == 0x04034b50 and
$zip_file and
$spec_dir and
// check for file
all of ($spec_file*)
}
29 changes: 29 additions & 0 deletions PK_DeutschePost_zabi.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
rule PK_DeutschePost_zabi : DeutschePost
{
meta:
description = "Phishing Kit impersonating DeutschePost"
licence = "GPL-3.0"
author = "Thomas 'tAd' Damonneville"
reference = ""
date = "2021-04-12"
comment = "Phishing Kit - DeutschePost - '. $zabi .'"

strings:
// the zipfile working on
$zip_file = { 50 4b 03 04 }
$spec_dir = "manage"
// specific file found in PhishingKit
$spec_file = "card.php"
$spec_file2 = "block3.php"
$spec_file3 = "1.css"
$spec_file4 = "proxyblock.php"
condition:
// look for the ZIP header
uint32(0) == 0x04034b50 and
// make sure we have a local file header
$zip_file and
$spec_dir and
// check for file
all of ($spec_file*)
}
5 changes: 2 additions & 3 deletions PK_DocuSign_capetownh.yar
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@ rule PK_DocuSign_capetownh : DocuSign
author = "Thomas 'tAd' Damonneville"
reference = ""
date = "2021-01-10"
comment = "Phishing Kit - DocuSign - 'capetownh.txt'"
comment = "Phishing Kit rev.2 - DocuSign - 'capetownh.txt'"

strings:
$zip_file = { 50 4b 03 04 }
$spec_dir = "javascript"
$spec_file1 = "u.php"
$spec_file2 = "hello.php"
$spec_file3 = "php.ini"
$spec_file4 = "facebox.css"
$spec_file3 = "facebox.css"
condition:
uint32(0) == 0x04034b50 and
Expand Down
27 changes: 27 additions & 0 deletions PK_O365_Priv9.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
rule PK_O365_Priv9 : Office365
{
meta:
description = "Phishing Kit impersonating Office 365"
licence = "GPL-3.0"
author = "Thomas 'tAd' Damonneville"
reference = ""
date = "2021-01-20"
comment = "Phishing Kit - O365 - code reuse from PK_O365_Priv8"

strings:
// the zipfile working on
$zip_file = { 50 4b 03 04 }
// specific files found in PhishingKit
$spec_file = "pt.htm"
$spec_file2 = "ind.php"
$spec_file3 = "n.php"
$spec_file4 = "index.html"
condition:
// look for the ZIP header
uint32(0) == 0x04034b50 and
// make sure we have a local file header
$zip_file and
// check for file
all of ($spec_file*)
}
29 changes: 29 additions & 0 deletions PK_Whatsapp_Arpantek.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
rule PK_Whatsapp_Arpantek : Whatsapp
{
meta:
description = "Phishing Kit impersonating Whatsapp"
licence = "GPL-3.0"
author = "Thomas 'tAd' Damonneville"
reference = ""
date = "2021-04-10"
comment = "Phishing Kit - Whatsapp - 'ARPANTEK'"

strings:
// the zipfile working on
$zip_file = { 50 4b 03 04 }
$spec_dir = "cgi-bin"
// specific file found in PhishingKit
$spec_file = "joining.php"
$spec_file2 = "email.php"
$spec_file3 = "fb_style.css"
$spec_file4 = "setting.php"
condition:
// look for the ZIP header
uint32(0) == 0x04034b50 and
// make sure we have a local file header
$zip_file and
$spec_dir and
// check for file
all of ($spec_file*)
}
24 changes: 24 additions & 0 deletions PK_XFinity_slim.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
rule PK_XFinity_slim : XFinity
{
meta:
description = "Phishing Kit impersonating XFinity"
licence = "GPL-3.0"
author = "Thomas 'tAd' Damonneville"
reference = ""
date = "2021-04-13"
comment = "Phishing Kit - XFinity - 'Created By SLim'"

strings:
$zip_file = { 50 4b 03 04 }
$spec_dir = "Sign in to XFINITY_files"
$spec_file1 = "verify.php"
$spec_file2 = "1647526060x32.js"
$spec_file3 = "asc.txt"
condition:
uint32(0) == 0x04034b50 and
$zip_file and
$spec_dir and
// check for file
all of ($spec_file*)
}

0 comments on commit b0bca91

Please sign in to comment.