Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
rules
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
rules
Commits
d16d8be9
Commit
d16d8be9
authored
Jul 21, 2016
by
mmorenog
Committed by
GitHub
Jul 21, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update MALW_Ponmocup.yar
parent
9e88690e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
MALW_Ponmocup.yar
malware/MALW_Ponmocup.yar
+44
-0
No files found.
malware/MALW_Ponmocup.yar
View file @
d16d8be9
...
...
@@ -56,3 +56,47 @@ rule Ponmocup : plugins memory
$1500,$1501,$1502,$1505,$1506,$1507,$1508,$1509,$1510,$1511,$1512,$1600,$1601,$1700,$1800,$1801,
$1802,$1803,$2001,$2002,$2003,$2004,$2500,$2501,$2550,$2600,$2610,$2700,$2701,$2750,$2760,$2810)
}
/*
This Yara ruleset is under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) and open to any user or organization, as long as you use it under this license.
*/
import "pe"
rule Trj_Ponmocup {
meta:
author = "Centro Criptológico Nacional (CCN)"
ref ="https://www.ccn-cert.cni.es/informes/informes-ccn-cert-publicos.html"
description = "Ponmocup Installer"
strings:
$mz = { 4d 5a }
$pac = { 48 8F BB 54 5F 3E 4F 4E }
$unp = { 8B B8 7C 1F 46 00 33 C8 }
condition:
($mz at 0) and ($pac at 0x61F7C) and ($unp at 0x29F0)
}
rule Trj_Ponmocup_Downloader {
meta:
author = "Centro Criptológico Nacional (CCN)"
ref ="https://www.ccn-cert.cni.es/informes/informes-ccn-cert-publicos.html"
description = "Ponmocup Downloader"
strings:
$mz = { 4d 5a }
$vb5 = "VB5" fullword ascii
$tpb = "www.thepiratebay.org" fullword wide
$ua = "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; SV1)" fullword wide
condition:
($mz at 0) and ($vb5) and ($tpb) and ($ua)
}
rule Trj_Ponmocup_dll {
meta:
author = "Centro Criptológico Nacional (CCN)"
ref ="https://www.ccn-cert.cni.es/informes/informes-ccn-cert-publicos.html"
description = "Ponmocup Bot DLL"
strings:
$mz = { 4d 5a }
$pck = { 00 81 23 00 33 3E 00 00 3B F4 56 00 00 00 7D 00 }
$upk = { 68 F4 14 00 10 A1 6C C0 02 10 FF D0 59 59 E9 7A }
condition:
($mz at 0) and ($pck at 0x8a50) and ($upk at 0x61f)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment