cyberstorm/book/observe/event.instance.tera

23 lines
522 B
Plaintext
Raw Normal View History

2021-03-02 04:17:16 +00:00
{% import "macros.tera" as macros %}
2021-03-04 00:54:34 +00:00
# {{ macros::doc_title(doc=document) }}
2021-03-02 04:17:16 +00:00
2021-03-04 00:54:34 +00:00
{{ macros::doc_details(doc=document) }}
{%- if document.WindowsEvent %}
2021-03-03 02:38:15 +00:00
{{ macros::doc_details_next(title="Type", value="Windows event") }}
2021-03-02 04:17:16 +00:00
{% endif -%}
2021-03-04 00:54:34 +00:00
{{ macros::doc_details_next(title="Description", value=document.description) }}
2021-03-02 04:17:16 +00:00
## Description
2021-03-04 00:54:34 +00:00
{{ macros::content(content=document.content) }}
2021-03-02 04:17:16 +00:00
2021-03-04 00:54:34 +00:00
{% if document.WindowsEvent %}
2021-03-02 04:17:16 +00:00
## Samples
2021-03-04 00:54:34 +00:00
{% for sample in document.WindowsEvent.sample %}
2021-03-02 04:17:16 +00:00
```xml
{{ sample.xml }}
```
{% endfor %}
{% endif %}