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
42ce5248
Commit
42ce5248
authored
Dec 15, 2016
by
mmorenog
Committed by
GitHub
Dec 15, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create GEN_PowerShell.yar
parent
6066cf93
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
GEN_PowerShell.yar
malware/GEN_PowerShell.yar
+20
-0
No files found.
malware/GEN_PowerShell.yar
0 → 100644
View file @
42ce5248
rule GEN_PowerShell {
meta:
description = "Generic PowerShell Malware Rule"
author = "https://github.com/interleaved"
strings:
$s1 = "powershell"
$s2 = "-ep bypass" nocase
$s3 = "-nop" nocase
$s10 = "-executionpolicy bypass" nocase
$s4 = "-win hidden" nocase
$s5 = "-windowstyle hidden" nocase
$s11 = "-w hidden" nocase
/*$s6 = "-noni" fullword ascii*/
/*$s7 = "-noninteractive" fullword ascii*/
$s8 = "-enc" nocase
$s9 = "-encodedcommand" nocase
condition:
$s1 and (($s2 or $s3 or $s10) and ($s4 or $s5 or $s11) and ($s8 or $s9))
}
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