Project

General

Profile

ThreatPattern Definitions » History » Version 6

Luke Murphey, 04/03/2010 03:25 AM

1 1 Luke Murphey
h1. ThreatPattern Definitions
2 1 Luke Murphey
3 6 Luke Murphey
{{>toc}}
4 1 Luke Murphey
5 6 Luke Murphey
ThreatPattern's similar in concept to the signatures used by the Snort IDS system.
6 1 Luke Murphey
7 1 Luke Murphey
h2. Definition Verb
8 1 Luke Murphey
9 1 Luke Murphey
The rules start with a action that indicates what the system should do with the rule. The action verbs are as follows:
10 1 Luke Murphey
11 1 Luke Murphey
|*Verb*|*Operation*                                                |*Notes*|
12 1 Luke Murphey
|Eval  |Causes the rule to be evaluated but no action taken.       |Only valid when an Set option is used. Used to set a flag that may be used in another signature (allows the rules to maintain state).|
13 1 Luke Murphey
|Alert |Causes the rule to indicate that a match has been found.   |Used only to determine if the site may be compromised.|
14 1 Luke Murphey
|Block |Causes the resource to be blocked (end user cannot access) |Useful when using a proxy to control access to the servers; this is not currently used yet.|
15 1 Luke Murphey
16 1 Luke Murphey
{{include(Definition_Naming_Convention)}}
17 1 Luke Murphey
18 1 Luke Murphey
h2. Definition Body
19 1 Luke Murphey
20 1 Luke Murphey
The definition is composed of options that are used to make conclusions about the data provided. Below is a list of the various options:
21 1 Luke Murphey
22 3 Luke Murphey
h3. Meta-Data Options
23 3 Luke Murphey
24 3 Luke Murphey
The following options are used to provide information about the definition:
25 3 Luke Murphey
26 1 Luke Murphey
|*Option*       |*Required*|*Value*   |*Example*   |*Description*|
27 2 Luke Murphey
| ID            | Yes     | <integer> | ID=10012441   |             |
28 2 Luke Murphey
| Message       | Yes     | <string>  | Message="Malicious Website Discovered" | |
29 2 Luke Murphey
| Version       |         | <integer> | Version=3 | |
30 3 Luke Murphey
| Reference     |         | <string>  | url,threatfactor.com | Types of references are: url ,bugtraq, cve, nessus, arachnids, mcafee |
31 3 Luke Murphey
| Severity      |         | <string>  | Severity="Medium" | Must be either low, medium or high and is required if the definition verb is alert or block |
32 3 Luke Murphey
33 3 Luke Murphey
34 3 Luke Murphey
h3. Data Analysis Options (Evaluators)
35 3 Luke Murphey
36 4 Luke Murphey
The following options are used to analyze the data:
37 4 Luke Murphey
38 3 Luke Murphey
|*Option*       |*Required*|*Value*   |*Example*   |*Description*|
39 1 Luke Murphey
| String        |         | <string>  | String=haxored | Looks for the given String value |
40 1 Luke Murphey
| Regex         |         | PCRE      | Regex=/apple/i | Looks for the given Regex (in PCRE format) |
41 1 Luke Murphey
| Byte          |         | Bytes     | Byte=90 90 90 | Looks for the given bytes |
42 3 Luke Murphey
| ContentType   |         | PCRE or <string>  | ContentType=/text.*//i | Matches a given content type. The content type is inferred by the scanning engine based upon the file contents, HTTP headers and file extension. |
43 3 Luke Murphey
| URI           |         | <string>  | URI="http://google.com" |  |
44 3 Luke Murphey
| IgnoreCase    |         |           | | Synonymous with "NoCase" |
45 3 Luke Murphey
| BasicEncoding |         | <string>  | | Causes the evaluator to skip character set encoding and treat the data as if it is raw bytes (or ASCII encoded) |
46 3 Luke Murphey
| IsDataAt      |         | <integer> | | Determines if data is at the given position (i.e. equates to false if the data stream ends before the value provided) |
47 1 Luke Murphey
| Offset        |         | <integer> | Offset=128 | Sets how much data should be skipped from the previous operator |
48 1 Luke Murphey
| Depth         |         | <integer> | Depth=1024 | Sets a maximum depth into the data that the definition will examine (relative to the beginning of the data stream)|
49 1 Luke Murphey
| Within        |         | <integer> | Within=512 | Sets how many characters or bytes to analyze for the previous option before giving up. This is oftentimes used to increase the performance of definitions by limiting the amount of data they have to analyze. |
50 1 Luke Murphey
| ByteTest      |         | operation | 4 digits >= 128 (hexadecimal) | Can accept options such as big-endian, little-endian, hexadecimal, absolute-value and can operate on both digits (character representations of a number) or bytes (integer values) |
51 1 Luke Murphey
| ByteJump      |         | operation | 4 bytes (big-endian, align-8) | Can accept options such as big-endian, little-endian, hexadecimal, absolute-value, octal, align-4 and align-8 and can operate on both digits (character representations of a number) or bytes (integer values)|
52 3 Luke Murphey
53 3 Luke Murphey
h3. Variable Options
54 3 Luke Murphey
55 4 Luke Murphey
The following options are used to set and read variables. Variables are values that are set by one definition and can be read by other definitions. For example, one definition could set a variable named "ActiveXFound" if an ActiveX control is found on a page and other definitions that look for specific ActiveX controls can check to determine if the variable "ActiveXFound" exist before bothering to analyze the data for a specific ActiveX control.
56 4 Luke Murphey
57 4 Luke Murphey
Below are the relevant variables:
58 4 Luke Murphey
59 3 Luke Murphey
|*Option*       |*Required*|*Value*   |*Example*   |*Description*|
60 3 Luke Murphey
| Set           |         | <string>  | Set="IframeFound"| Sets the given variable (allows rules to maintain state) |
61 1 Luke Murphey
| UnSet         |         | <string>  | UnSet="IframeFound"| Unsets the given variable (allows rules to maintain state) |
62 1 Luke Murphey
| IfSet         |         | <string>  | IfSet="ActiveX"| Makes the action dependent upon whether the variable exists |
63 1 Luke Murphey
| IfNotSet      |         | <string>  | IfNotSet="ActiveX"| Opposite of above |
64 1 Luke Murphey
| Toggle        |         | <string>  | Toggle="JavaScriptFound" |  |
65 1 Luke Murphey
66 1 Luke Murphey
h2. How Definitions Analyze Data
67 1 Luke Murphey
68 1 Luke Murphey
A definition is considered a match when all of the evaluators match the data.
69 1 Luke Murphey
70 1 Luke Murphey
71 1 Luke Murphey
h2. Relative Evaluators
72 1 Luke Murphey
73 1 Luke Murphey
Options can be made relative by adding the 
74 1 Luke Murphey
75 1 Luke Murphey
76 1 Luke Murphey
h2. Mixed Mode Options
77 6 Luke Murphey
78 6 Luke Murphey
79 6 Luke Murphey
80 6 Luke Murphey
81 6 Luke Murphey
 Below is a sample rule:
82 6 Luke Murphey
83 6 Luke Murphey
<pre>
84 6 Luke Murphey
Alert("Abuse.DataHiding.Rar_File_In_Jpeg"){
85 6 Luke Murphey
        Message="A JPEG file with a RAR file appended was observed";
86 6 Luke Murphey
        Severity="Low";
87 6 Luke Murphey
        ID=1000194;
88 6 Luke Murphey
        Version=1;
89 6 Luke Murphey
        BasicEncoding;
90 6 Luke Murphey
        Byte="FF D9";
91 6 Luke Murphey
        String="Rar!"; Offset=0;
92 6 Luke Murphey
        ContentType="image/jpeg";
93 6 Luke Murphey
        Reference=url,lifehacker.com/software/encryption/hide-files-in-jpeg-images-207905.php;
94 6 Luke Murphey
        Reference=url,schmidt.devlib.org/file-formats/rar-archive-file-format.html;
95 6 Luke Murphey
}
96 6 Luke Murphey
</pre>