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
b118a11e
Commit
b118a11e
authored
8 years ago
by
mmorenog
Committed by
GitHub
8 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create PittyTiger.yar
parent
7c3cf72d
master
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
PittyTiger.yar
malware/PittyTiger.yar
+21
-0
No files found.
malware/PittyTiger.yar
0 → 100644
View file @
b118a11e
rule PittyTiger {
meta:
author = " (@chort0)"
description = "Detect PittyTiger Trojan via common strings"
strings:
$ptUserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.; SV1)" // missing minor digit
$ptFC001 = "FC001" fullword
$ptPittyTiger = "PittyTiger" fullword
$trjHTMLerr = "trj:HTML Err." nocase fullword
$trjworkFunc = "trj:workFunc start." nocase fullword
$trjcmdtout = "trj:cmd time out." nocase fullword
$trjThrtout = "trj:Thread time out." nocase fullword
$trjCrPTdone = "trj:Create PT done." nocase fullword
$trjCrPTerr = "trj:Create PT error: mutex already exists." nocase fullword
$oddPippeFailed = "Create Pippe Failed!" fullword // extra 'p'
$oddXferingFile = "Transfering File" fullword // missing 'r'
$oddParasError = "put Paras Error:" fullword // abbreviated 'parameters'?
$oddCmdTOutkilled = "Cmd Time Out..Cmd has been killed." fullword
condition:
(any of ($pt*)) and (any of ($trj*)) and (any of ($odd*))
}
This diff is collapsed.
Click to expand it.
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