@@ -479,10 +479,12 @@ const (
479479 RegistryKeyName Field = "registry.key.name"
480480 // RegistryKeyHandle represents the registry KCB address
481481 RegistryKeyHandle Field = "registry.key.handle"
482- // RegistryValue represents the registry value
482+ // RegistryValue represents the registry value name field
483483 RegistryValue Field = "registry.value"
484- // RegistryValueType represents the registry value type
484+ // RegistryValueType represents the registry value type field
485485 RegistryValueType Field = "registry.value.type"
486+ // RegistryData represents the captured registry data field
487+ RegistryData Field = "registry.data"
486488 // RegistryStatus represent the registry operation status
487489 RegistryStatus Field = "registry.status"
488490
@@ -1000,8 +1002,9 @@ var fields = map[Field]FieldInfo{
10001002 RegistryPath : {RegistryPath , "fully qualified registry path" , params .UnicodeString , []string {"registry.path = 'HKEY_LOCAL_MACHINE\\ SYSTEM'" }, nil , nil },
10011003 RegistryKeyName : {RegistryKeyName , "registry key name" , params .UnicodeString , []string {"registry.key.name = 'CurrentControlSet'" }, nil , nil },
10021004 RegistryKeyHandle : {RegistryKeyHandle , "registry key object address" , params .Address , []string {"registry.key.handle = 'FFFFB905D60C2268'" }, nil , nil },
1003- RegistryValue : {RegistryValue , "registry value content " , params .UnicodeString , []string {"registry.value = '%SystemRoot% \\ system32 '" }, nil , nil },
1005+ RegistryValue : {RegistryValue , "registry value name " , params .UnicodeString , []string {"registry.value = 'Epoch '" }, nil , nil },
10041006 RegistryValueType : {RegistryValueType , "type of registry value" , params .UnicodeString , []string {"registry.value.type = 'REG_SZ'" }, nil , nil },
1007+ RegistryData : {RegistryData , "registry value captured data" , params .Object , []string {"registry.data = '%SystemRoot%'" }, nil , nil },
10051008 RegistryStatus : {RegistryStatus , "status of registry operation" , params .UnicodeString , []string {"registry.status != 'success'" }, nil , nil },
10061009
10071010 NetDIP : {NetDIP , "destination IP address" , params .IP , []string {"net.dip = 172.17.0.3" }, nil , nil },
0 commit comments