-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a blog post describing Sigma in Velociraptor (#4)
- Loading branch information
Showing
22 changed files
with
627 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Spellcheck Action | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
name: Spellcheck | ||
runs-on: ubuntu-latest | ||
steps: | ||
# The checkout step | ||
- uses: actions/checkout@master | ||
- uses: rojopolis/spellcheck-github-actions@0.27.0 | ||
name: Spellcheck | ||
with: | ||
config_path: .pyspelling.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
matrix: | ||
- name: Markdown | ||
aspell: | ||
lang: en | ||
d: en_US | ||
dictionary: | ||
wordlists: | ||
- .wordlist.txt | ||
output: .wordlist.dict | ||
sources: | ||
- 'docs/content/**/*.md' | ||
pipeline: | ||
- pyspelling.filters.context: | ||
context_visible_first: true | ||
escapes: '\\[\\`]' | ||
delimiters: | ||
# Ignore multiline content between fences (fences can have 3 or more back ticks) | ||
# ``` | ||
# content | ||
# ``` | ||
- open: '(?s)^(?P<open> *`{3,})' | ||
close: '^(?P=open)$' | ||
# Insides of URL links | ||
- open: '\]\(' | ||
close: '\)' | ||
# Bolded words are usually terms | ||
- open: '[*]+' | ||
close: '[*]+' | ||
# Inside HTML tags | ||
- open: '(?s)(?P<open>[<])' | ||
close: '[>]' | ||
# Ignore text between inline back ticks | ||
- open: '(?P<open>`+)' | ||
close: '(?P=open)' | ||
|
||
# Inside yaml headers | ||
- open: '(?s)^(?P<open>---)$' | ||
close: '^(?P=open)$' | ||
|
||
- pyspelling.filters.markdown: | ||
- pyspelling.filters.url: |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<url-free> docs/content/_index.md | ||
-------------------------------------------------------------------------------- | ||
Velociraptor | ||
-------------------------------------------------------------------------------- | ||
|
||
Misspelled words: | ||
<url-free> docs/content/docs/sigma_in_velociraptor/_index.md | ||
-------------------------------------------------------------------------------- | ||
Capuano | ||
ECS | ||
ETW | ||
EVTX | ||
Gb | ||
Hayabusa | ||
MSDN | ||
SIEM | ||
SIEMs | ||
Splunk | ||
Sysmon | ||
VQL | ||
Velociraptor | ||
Velociraptor's | ||
backend | ||
backend's | ||
backends | ||
br | ||
config | ||
detections | ||
executables | ||
li | ||
mb | ||
ol | ||
responders | ||
ruleset | ||
scalable | ||
schemas | ||
taskscheduler | ||
ul | ||
natively |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.