- Overview
- Rules for keys
- Sections
- Data types
- Fields List and data types
- Type/Taxonomy Mapping
- Minimum required fields
All messages (reports and events) are Python/JSON dictionaries. The key names and according types are defined by the so called harmonization.
The purpose of this document is to list and clearly define known fields in Abusehelper as well as IntelMQ or similar systems. A field is a key=value
pair. For a clear and unique definition of a field, we must define the key (field-name) as well as the possible values. A field belongs to an event. An event is basically a structured log record in the form key=value, key=value, key=value, …
. In the List of known fields, each field is grouped by a section. We describe these sections briefly below.
Every event MUST contain a timestamp field.
IOC (Indicator of compromise) is a single observation like a log line.
The keys can be grouped together in sub-fields, e.g. source.ip
or source.geolocation.latitude
. Thus, keys must match [a-z_.]
.
As stated above, every field is organized under some section. The following is a description of the sections and what they imply.
Fields listed under this grouping list details about the source feed where information came from.
The time section lists all fields related to time information. This document requires that all the timestamps MUST be normalized to UTC. If the source reports only a date, do not attempt to invent timestamps.
This section lists all fields related to identification of the source. XXX FIXME: not clear!! XXX The abuse type of an event defines the way these events needs to be interpreted. For example, for a botnet drone they refer to the compromised machine, whereas for a command and control server they refer the server itself.
We recognize that ip geolocation is not an exact science and analysis of the abuse data has shown that different sources attribution sources have different opinions of the geolocation of an ip. This is why we recommend to enrich the data with as many sources as you have available and make the decision which value to use for the cc IOC based on those answers.
Some sources report an internal (NATed) IP address.
The abuse type of an event defines the way these IOCs needs to be interpreted. For a botnet drone they refer to the compromised machine, whereas for a command and control server they refer the server itself.
We recognize that ip geolocation is not an exact science and analysis of the abuse data has shown that different sources attribution sources have different opinions of the geolocation of an ip. This is why we recommend to enrich the data with as many sources as you have available and make the decision which value to use for the cc IOC based on those answers.
Some sources report an internal (NATed) IP address.
A list of allowed fields and data types can be found in Harmonization-fields.md
IntelMQ classifies events using three labels: taxonomy, type and identifier. This tuple of three values can be used for deduplication of events and describes what happened. TODO: examples from chat
The taxonomy can be automatically added by the taxonomy expert bot based on the given type. The following taxonomy-type mapping is based on eCSIRT II Taxonomy:
Type | Taxonomy | Description |
---|---|---|
spam | Abusive Content | This IOC refers to resources, which make up a SPAM infrastructure, be it a harvester, dictionary attacker, URL etc. |
malware | Malicious Code | A URL is the most common resource with reference to malware binary distribution. |
botnet drone | Malicious Code | This is a compromised machine, which has been observed to make a connection to a command and control server. |
ransomware | Malicious Code | This IOC refers to a specific type of compromised machine, where the computer has been hijacked for ransom by the criminals. |
dga domain | Malicious Code | DGA Domains are seen various families of malware that are used to periodically generate a large number of domain names that can be used as rendezvous points with their command and control servers. |
malware configuration | Malicious Code | This is a resource which updates botnet drones with a new configuration. |
c&c | Malicious Code | This is a command and control server in charge of a given number of botnet drones. |
scanner | Information Gathering | This IOC refers to port scanning activity specifically. |
exploit | Intrusion Attempts | An exploit is often executed through a malicious URL. |
brute-force | Intrusion Attempts | This IOC refers to a resource, which has been observed to perform brute-force attacks over a given application protocol. Please see the IOC protocol below. |
ids alert | Intrusion Attempts | IOCs based on a sensor network. This is a generic IOC denomination, should it be difficult to reliably denote the exact type of activity involved for example due to an anecdotal nature of the rule that triggered the alert. |
defacement | Intrusions | This IOC refers to hacktivism related activity. |
compromised | Intrusions | This IOC refers to compromised system. |
backdoor | Intrusions | This refers to hosts, which have been compromised and backdoored with a remote administration software or Trojan in the traditional sense. |
ddos | Availability | This IOC refers to various parts of the DDOS infrastructure. |
dropzone | Information Content Security | This IOC refers to place where the compromised machines store the stolen user data. |
phishing | Fraud | This IOC most often refers to a URL, which is phishing for user credentials. |
proxy | Other | This refers to the use of proxies from inside your network. |
vulnerable service | Vulnerable | This attribute refers to a badly configured or vulnerable network service, which may be abused by a third party. For example, these services relate to open proxies, open dns resolvers, network time servers (NTP) or character generation services (chargen), simple network management services (SNMP). In addition, to specify the network service and its potential abuse, one should use the protocol, destination port and description attributes for that purpose respectively. |
blacklist | Other | Some sources provide blacklists, which clearly refer to abusive behavior, such as spamming, but fail to denote the exact reason why a given identity has been blacklisted. The reason may be that the justification is anecdotal or missing entirely. This type should only be used if the typing fits the definition of a blacklist, but an event specific denomination is not possible for one reason or another. |
unknown | Other | unknown events |
test | Test | This is a value for testing purposes. |
Meaning of source, destination and local values for each classification type and possible identifiers. The identifier is often a normalized malware name, grouping many variants.
Type | Source | Destination | Local | Possible identifiers |
---|---|---|---|---|
spam | infected device | targeted server | internal at source | |
malware | infected device | internal at source | zeus, palevo, feodo | |
botnet drone | infected device | |||
ransomware | infected device | |||
dga domain | infected device | |||
malware configuration | infected device | |||
c&c | (sinkholed) c&c server | zeus, palevo, feodo | ||
scanner | scanning device | scanned device | ||
exploit | hosting server | |||
brute-force | attacker | target | ||
ids alert | triggering device | |||
defacement | defaced website | |||
compromised | server | |||
backdoor | backdoored device | |||
ddos | attacker | target | ||
dropzone | server hosting stolen data | |||
phishing | phishing website | |||
proxy | server allowing policy and security bypass | |||
vulnerable service | vulnerable device | heartbleed, openresolver, snmp | ||
blacklist | blacklisted device | |||
unknown |
Field in italics is the interesting one for CERTs.
Example:
If you know of an IP address that connects to a zeus c&c server, it's about the infected device, thus type malware and identifier zeus. If you want to complain about the c&c server, it's type c&c and identifier zeus. The malware.name
can have the full name, eg. 'zeus_p2p'.
Below, we have enumerated the minimum requirements for an actionable abuse event. These keys need to be present for the abuse report to make sense for the end recipient. Please note that if you choose to anonymize your sources, you can substitute feed with feed code and that only one of the identity keys ip, domain name, url, email address must be present. All the rest of the keys are optional.
Category | Key | Terminology |
---|---|---|
Feed | feed | Must |
Classification | classification.type | Must |
Classification | classification.taxonomy | Must |
Time | time.source | Must |
Time | time.observation | Must |
Identity | source.ip | Must* |
Identity | source.fqdn | Must* |
Identity | source.url | Must* |
Identity | source.account | Must* |
This list of required fields is not enforced by IntelMQ.
NOTE: This document was copied from AbuseHelper repository and improved.