├── doc_v2 ├── Identity │ └── Active Directory (on-premises).yaml ├── Others │ ├── Trend Micro Deep Discovery Director Network Analytic SaaS.yaml │ ├── Trend Cloud One - AWS CloudTrail Integration.yaml │ ├── TXOne StellarOne.yaml │ └── TXOne EdgeOne.yaml ├── Network │ ├── Palo Alto Firewall.yaml │ ├── Trend Micro Web Security.yaml │ ├── TippingPoint Security Management System.yaml │ ├── Trend Cloud One - Network Security.yaml │ └── Mobile Network Security.yaml ├── Endpoint │ ├── Trend Micro Apex One On-Premises.yaml │ └── Data Detection and Response.yaml ├── Email │ └── Collaboration sensor.yaml └── Cloud │ ├── XDR for Cloud - AWS VPC Flow Logs.yaml │ ├── File Security Storage.yaml │ └── File Security.yaml ├── .gitignore ├── pages ├── Identity │ └── Active Directory (on-premises).md ├── Others │ └── Trend Micro Deep Discovery Director Network Analytic SaaS.md ├── Network │ └── Palo Alto Firewall.md ├── Endpoint │ └── Trend Micro Apex One On-Premises.md └── index.md ├── doc ├── Cloud Activity Data.yaml └── Container Activity Data.yaml ├── README.md └── LICENSE /doc_v2/Identity/Active Directory (on-premises).yaml: -------------------------------------------------------------------------------- 1 | - Name: netBiosDomainName 2 | ProductCode: 3 | - opa 4 | Description_EN: The NetBIOS domain name 5 | Sample: 6 | - TREND 7 | DL_Type: string 8 | DL_CommonKey: 9 | - DomainName 10 | DL_Searchable: true 11 | DL_Aggregable: false 12 | -------------------------------------------------------------------------------- /doc_v2/Others/Trend Micro Deep Discovery Director Network Analytic SaaS.yaml: -------------------------------------------------------------------------------- 1 | - Name: flowId 2 | ProductCode: 3 | - sna 4 | Description_EN: The connection ID 5 | Sample: 6 | - '6717474604962545666' 7 | - '6915244861077872618' 8 | - '6915244908215815814' 9 | DL_Type: string 10 | DL_CommonKey: 11 | DL_Searchable: true 12 | DL_Aggregable: false 13 | -------------------------------------------------------------------------------- /doc_v2/Network/Palo Alto Firewall.yaml: -------------------------------------------------------------------------------- 1 | - Name: fileHashMd5 2 | ProductCode: 3 | - qpf 4 | Description_EN: The MD5 of the file 5 | Sample: 6 | - d5120786925038601a77c2e1eB9a3a0a 7 | DL_Type: string 8 | DL_CommonKey: 9 | - FileMD5 10 | DL_Searchable: true 11 | DL_Aggregable: false 12 | - Name: requestMethod 13 | ProductCode: 14 | - qpf 15 | Description_EN: The network protocol request method 16 | Sample: 17 | - POST 18 | DL_Type: string 19 | DL_CommonKey: 20 | DL_Searchable: true 21 | DL_Aggregable: true 22 | - Name: sUser1 23 | ProductCode: 24 | - qpf 25 | Description_EN: The latest sign-in user of the source 26 | Sample: 27 | - 000c29edef58 28 | - sample.com\ser-desktopcentral 29 | DL_Type: string 30 | DL_CommonKey: 31 | - UserAccount 32 | DL_Searchable: true 33 | DL_Aggregable: false 34 | - Name: dUser1 35 | ProductCode: 36 | - qpf 37 | Description_EN: The latest logon user of the destination 38 | Sample: 39 | - dhr\m42svc 40 | - altsvc 41 | DL_Type: string 42 | DL_CommonKey: 43 | - UserAccount 44 | DL_Searchable: true 45 | DL_Aggregable: false 46 | - Name: shost 47 | ProductCode: 48 | - qpf 49 | Description_EN: The source hostname 50 | Sample: 51 | - sw_us-east-1a_10-124-17-69 52 | - sw_us-east-1c_10-124-21-139 53 | DL_Type: string 54 | DL_CommonKey: 55 | - DomainName 56 | DL_Searchable: true 57 | DL_Aggregable: false 58 | - Name: dhost 59 | ProductCode: 60 | - qpf 61 | Description_EN: The destination hostname 62 | Sample: 63 | - sw_us-east-1c_10-124-21-139 64 | - 10.10.10.10 65 | DL_Type: string 66 | DL_CommonKey: 67 | - DomainName 68 | DL_Searchable: true 69 | DL_Aggregable: false 70 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 2 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 3 | 4 | # User-specific stuff 5 | .idea/**/workspace.xml 6 | .idea/**/tasks.xml 7 | .idea/**/usage.statistics.xml 8 | .idea/**/dictionaries 9 | .idea/**/shelf 10 | 11 | # AWS User-specific 12 | .idea/**/aws.xml 13 | 14 | # Generated files 15 | .idea/**/contentModel.xml 16 | 17 | # Sensitive or high-churn files 18 | .idea/**/dataSources/ 19 | .idea/**/dataSources.ids 20 | .idea/**/dataSources.local.xml 21 | .idea/**/sqlDataSources.xml 22 | .idea/**/dynamic.xml 23 | .idea/**/uiDesigner.xml 24 | .idea/**/dbnavigator.xml 25 | 26 | # Gradle 27 | .idea/**/gradle.xml 28 | .idea/**/libraries 29 | 30 | # Gradle and Maven with auto-import 31 | # When using Gradle or Maven with auto-import, you should exclude module files, 32 | # since they will be recreated, and may cause churn. Uncomment if using 33 | # auto-import. 34 | # .idea/artifacts 35 | # .idea/compiler.xml 36 | # .idea/jarRepositories.xml 37 | # .idea/modules.xml 38 | # .idea/*.iml 39 | # .idea/modules 40 | # *.iml 41 | # *.ipr 42 | 43 | # CMake 44 | cmake-build-*/ 45 | 46 | # Mongo Explorer plugin 47 | .idea/**/mongoSettings.xml 48 | 49 | # File-based project format 50 | *.iws 51 | 52 | # IntelliJ 53 | out/ 54 | 55 | # mpeltonen/sbt-idea plugin 56 | .idea_modules/ 57 | 58 | # JIRA plugin 59 | atlassian-ide-plugin.xml 60 | 61 | # Cursive Clojure plugin 62 | .idea/replstate.xml 63 | 64 | # SonarLint plugin 65 | .idea/sonarlint/ 66 | 67 | # Crashlytics plugin (for Android Studio and IntelliJ) 68 | com_crashlytics_export_strings.xml 69 | crashlytics.properties 70 | crashlytics-build.properties 71 | fabric.properties 72 | 73 | # Editor-based Rest Client 74 | .idea/httpRequests 75 | 76 | # Android studio 3.1+ serialized cache file 77 | .idea/caches/build_file_checksums.ser 78 | -------------------------------------------------------------------------------- /doc_v2/Endpoint/Trend Micro Apex One On-Premises.yaml: -------------------------------------------------------------------------------- 1 | - Name: parentSignerFlagsAdhoc 2 | ProductCode: 3 | - xes 4 | - sao 5 | - pao 6 | Description_EN: The list of parent process signature adhoc flags 7 | Sample: [] 8 | DL_Type: dynamic 9 | DL_CommonKey: 10 | DL_Searchable: true 11 | DL_Aggregable: false 12 | - Name: parentSignerFlagsRuntime 13 | ProductCode: 14 | - xes 15 | - sao 16 | - pao 17 | Description_EN: The list of parent process signature runtime flags 18 | Sample: [] 19 | DL_Type: dynamic 20 | DL_CommonKey: 21 | DL_Searchable: true 22 | DL_Aggregable: false 23 | - Name: parentSignerFlagsLibValid 24 | ProductCode: 25 | - xes 26 | - sao 27 | - pao 28 | Description_EN: The list of parent process signature library validation flags 29 | Sample: [] 30 | DL_Type: dynamic 31 | DL_CommonKey: 32 | DL_Searchable: true 33 | DL_Aggregable: false 34 | - Name: objectSignerFlagsAdhoc 35 | ProductCode: 36 | - xes 37 | - sao 38 | - pao 39 | Description_EN: The list of object process signature adhoc flags 40 | Sample: [] 41 | DL_Type: dynamic 42 | DL_CommonKey: 43 | DL_Searchable: true 44 | DL_Aggregable: false 45 | - Name: objectSignerFlagsRuntime 46 | ProductCode: 47 | - xes 48 | - sao 49 | - pao 50 | Description_EN: The list of object process signature runtime flags 51 | Sample: [] 52 | DL_Type: dynamic 53 | DL_CommonKey: 54 | DL_Searchable: true 55 | DL_Aggregable: false 56 | - Name: objectSignerFlagsLibValid 57 | ProductCode: 58 | - xes 59 | - sao 60 | - pao 61 | Description_EN: The list of object process signature library validation flags 62 | Sample: [] 63 | DL_Type: dynamic 64 | DL_CommonKey: 65 | DL_Searchable: true 66 | DL_Aggregable: false 67 | - Name: processSignerFlagsAdhoc 68 | ProductCode: 69 | - xes 70 | - sao 71 | - pao 72 | Description_EN: The list of process signature adhoc flags 73 | Sample: [] 74 | DL_Type: dynamic 75 | DL_CommonKey: 76 | DL_Searchable: true 77 | DL_Aggregable: false 78 | - Name: processSignerFlagsRuntime 79 | ProductCode: 80 | - xes 81 | - sao 82 | - pao 83 | Description_EN: The list of process signature runtime flags 84 | Sample: [] 85 | DL_Type: dynamic 86 | DL_CommonKey: 87 | DL_Searchable: true 88 | DL_Aggregable: false 89 | - Name: processSignerFlagsLibValid 90 | ProductCode: 91 | - xes 92 | - sao 93 | - pao 94 | Description_EN: The list of process signature library validation flags 95 | Sample: [] 96 | DL_Type: dynamic 97 | DL_CommonKey: 98 | DL_Searchable: true 99 | DL_Aggregable: false 100 | - Name: quarantineFilePath 101 | ProductCode: 102 | - sao 103 | - pao 104 | - sds 105 | - pds 106 | Description_EN: The file path of the quarantined object 107 | Sample: 108 | - C:\ProgramData\Trend Micro\AMSP\quarantine\ASLUMVS0.4FC 109 | DL_Type: string 110 | DL_CommonKey: 111 | - FileFullPath 112 | DL_Searchable: true 113 | DL_Aggregable: false 114 | - Name: quarantineFileId 115 | ProductCode: 116 | - sao 117 | - pao 118 | - sds 119 | - pds 120 | Description_EN: The unique identifier of the quarantined object 121 | Sample: 122 | - ASLUMVS0.4FC 123 | DL_Type: string 124 | DL_CommonKey: 125 | DL_Searchable: true 126 | DL_Aggregable: false 127 | - Name: quarantineFileSha256 128 | ProductCode: 129 | - sao 130 | - pao 131 | - sds 132 | - pds 133 | Description_EN: The SHA-256 of the quarantined object 134 | Sample: 135 | - 84B2FA19B05EA88D6E785B4ADB528120485AA3F72F3E5E114DE6D3696B0D151F 136 | DL_Type: string 137 | DL_CommonKey: 138 | - FileSHA2 139 | DL_Searchable: true 140 | DL_Aggregable: false 141 | - Name: detectionNames 142 | ProductCode: 143 | - sao 144 | - pao 145 | - sds 146 | - pds 147 | Description_EN: The rules that triggered the event 148 | Sample: 149 | - [HS_EMOTET.SMAA, HM_AVEDOWN.SMZTIG-A, HE_DOCQRPHISH.SM] 150 | DL_Type: dynamic 151 | DL_Searchable: true 152 | DL_Aggregable: false 153 | - Name: detectionMeta 154 | ProductCode: 155 | - sao 156 | - pao 157 | - sds 158 | - pds 159 | Description_EN: The descriptions of the detected techniques 160 | Sample: 161 | - [T1204 some description about this technique, T1573.001_AES another 162 | description about this technique] 163 | DL_Type: dynamic 164 | DL_Searchable: true 165 | DL_Aggregable: false 166 | -------------------------------------------------------------------------------- /pages/Identity/Active Directory (on-premises).md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Active Directory (on-premises) - Identity 4 | --- 5 | 6 | # Active Directory (on-premises) 7 | **Layer:** Identity 8 | 9 | This documentation provides detailed information about all fields available for Active Directory (on-premises). 10 | 11 | 188 | 189 |
| Field Name | 195 |Type | 196 |Searchable | 197 |General Field | 198 |Description | 199 |Example | 200 |Products | 201 |
|---|---|---|---|---|---|---|
| netBiosDomainName | 206 |string | 207 |true | 208 |DomainName | 209 |The NetBIOS domain name | 210 |TREND | 211 |Active Directory (on-premises) | 212 |
| Field Name | 195 |Type | 196 |Searchable | 197 |General Field | 198 |Description | 199 |Example | 200 |Products | 201 |
|---|---|---|---|---|---|---|
| flowId | 206 |string | 207 |true | 208 |- | 209 |The connection ID | 210 |
211 |
|
217 | Trend Micro Deep Discovery Director Network Analytic SaaS | 218 |
| Field Name | 195 |Type | 196 |Searchable | 197 |General Field | 198 |Description | 199 |Example | 200 |Products | 201 |
|---|---|---|---|---|---|---|
| dhost | 206 |string | 207 |true | 208 |DomainName | 209 |The destination hostname | 210 |
211 |
|
216 | Palo Alto Firewall | 217 |
| dUser1 | 220 |string | 221 |true | 222 |UserAccount | 223 |The latest logon user of the destination | 224 |
225 |
|
230 | Palo Alto Firewall | 231 |
| fileHashMd5 | 234 |string | 235 |true | 236 |FileMD5 | 237 |The MD5 of the file | 238 |d5120786925038601a77c2e1eB9a3a0a | 239 |Palo Alto Firewall | 240 |
| requestMethod | 243 |string | 244 |true | 245 |- | 246 |The network protocol request method | 247 |POST | 248 |Palo Alto Firewall | 249 |
| shost | 252 |string | 253 |true | 254 |DomainName | 255 |The source hostname | 256 |
257 |
|
262 | Palo Alto Firewall | 263 |
| sUser1 | 266 |string | 267 |true | 268 |UserAccount | 269 |The latest sign-in user of the source | 270 |
271 |
|
276 | Palo Alto Firewall | 277 |
| Field Name | 195 |Type | 196 |Searchable | 197 |General Field | 198 |Description | 199 |Example | 200 |Products | 201 |
|---|---|---|---|---|---|---|
| detectionMeta | 206 |dynamic | 207 |true | 208 |- | 209 |The descriptions of the detected techniques | 210 |['T1204 some description about this technique', 'T1573.001_AES another description about this technique'] | 211 |
212 |
|
219 |
| detectionNames | 222 |dynamic | 223 |true | 224 |- | 225 |The rules that triggered the event | 226 |['HS_EMOTET.SMAA', 'HM_AVEDOWN.SMZTIG-A', 'HE_DOCQRPHISH.SM'] | 227 |
228 |
|
235 |
| objectSignerFlagsAdhoc | 238 |dynamic | 239 |true | 240 |- | 241 |The list of object process signature adhoc flags | 242 |- | 243 |
244 |
|
250 |
| objectSignerFlagsLibValid | 253 |dynamic | 254 |true | 255 |- | 256 |The list of object process signature library validation flags | 257 |- | 258 |
259 |
|
265 |
| objectSignerFlagsRuntime | 268 |dynamic | 269 |true | 270 |- | 271 |The list of object process signature runtime flags | 272 |- | 273 |
274 |
|
280 |
| parentSignerFlagsAdhoc | 283 |dynamic | 284 |true | 285 |- | 286 |The list of parent process signature adhoc flags | 287 |- | 288 |
289 |
|
295 |
| parentSignerFlagsLibValid | 298 |dynamic | 299 |true | 300 |- | 301 |The list of parent process signature library validation flags | 302 |- | 303 |
304 |
|
310 |
| parentSignerFlagsRuntime | 313 |dynamic | 314 |true | 315 |- | 316 |The list of parent process signature runtime flags | 317 |- | 318 |
319 |
|
325 |
| processSignerFlagsAdhoc | 328 |dynamic | 329 |true | 330 |- | 331 |The list of process signature adhoc flags | 332 |- | 333 |
334 |
|
340 |
| processSignerFlagsLibValid | 343 |dynamic | 344 |true | 345 |- | 346 |The list of process signature library validation flags | 347 |- | 348 |
349 |
|
355 |
| processSignerFlagsRuntime | 358 |dynamic | 359 |true | 360 |- | 361 |The list of process signature runtime flags | 362 |- | 363 |
364 |
|
370 |
| quarantineFileId | 373 |string | 374 |true | 375 |- | 376 |The unique identifier of the quarantined object | 377 |ASLUMVS0.4FC | 378 |
379 |
|
386 |
| quarantineFilePath | 389 |string | 390 |true | 391 |FileFullPath | 392 |The file path of the quarantined object | 393 |C:\ProgramData\Trend Micro\AMSP\quarantine\ASLUMVS0.4FC | 394 |
395 |
|
402 |
| quarantineFileSha256 | 405 |string | 406 |true | 407 |FileSHA2 | 408 |The SHA-256 of the quarantined object | 409 |84B2FA19B05EA88D6E785B4ADB528120485AA3F72F3E5E114DE6D3696B0D151F | 410 |
411 |
|
418 |