Assigned "Network activity" as default category for url in $typeDefiitions as defined in $defaultCategories

pull/3119/head
Nils Kuhnert 2018-03-28 15:09:35 +02:00
parent 64b987c8f2
commit 27e0150692
No known key found for this signature in database
GPG Key ID: 3591DD5B3103ED50
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ class Attribute extends AppModel {
'email-attachment' => array('desc' => "File name of the email attachment.", 'default_category' => 'Payload delivery', 'to_ids' => 1),
'email-body' => array('desc' => 'Email body', 'default_category' => 'Payload delivery', 'to_ids' => 0),
'float' => array('desc' => "A floating point value.", 'default_category' => 'Other', 'to_ids' => 0),
'url' => array('desc' => 'url', 'default_category' => 'External analysis', 'to_ids' => 1),
'url' => array('desc' => 'url', 'default_category' => 'Network activity', 'to_ids' => 1),
'http-method' => array('desc' => "HTTP method used by the malware (e.g. POST, GET, ...).", 'default_category' => 'Network activity', 'to_ids' => 0),
'user-agent' => array('desc' => "The user-agent used by the malware in the HTTP request.", 'default_category' => 'Network activity', 'to_ids' => 0),
'regkey' => array('desc' => "Registry key or value", 'default_category' => 'Persistence mechanism', 'to_ids' => 1),