├── .gitignore ├── LICENSE ├── README.md ├── demo.gif ├── go.mod └── sysmon ├── fullQuery.sql ├── generate_filter.go └── sysmon.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defensivedepth/osquery-filters/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defensivedepth/osquery-filters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defensivedepth/osquery-filters/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defensivedepth/osquery-filters/HEAD/demo.gif -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module sysmon 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /sysmon/fullQuery.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defensivedepth/osquery-filters/HEAD/sysmon/fullQuery.sql -------------------------------------------------------------------------------- /sysmon/generate_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defensivedepth/osquery-filters/HEAD/sysmon/generate_filter.go -------------------------------------------------------------------------------- /sysmon/sysmon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defensivedepth/osquery-filters/HEAD/sysmon/sysmon.xml --------------------------------------------------------------------------------