Skip to content

Commit

Permalink
feat: microsoft azure sentinel plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
MatisseB committed Jul 2, 2024
1 parent c32b566 commit cc66870
Show file tree
Hide file tree
Showing 7 changed files with 849 additions and 27 deletions.
209 changes: 184 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ panic = "abort"
strip = "debuginfo"

[workspace]
members = [
members = [
"sentinel",
"splunk"
]

[workspace.dependencies]
wit-bindgen = "0.26"
wit-bindgen = "0.27"
serde = "1.0"
serde_json = "1.0"
waki = "0.3"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ With LogCraft CLI, you can easily deploy your security detections into your SIEM
## Plugins

- [Splunk](./splunk)
- [Microsoft Azure Sentinel](./sentinel)
23 changes: 23 additions & 0 deletions sentinel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
name = "sentinel"
description = "LogCraft CLI Sentinel plugin"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version.workspace = true
readme.workspace = true
categories.workspace = true
keywords.workspace = true

[dependencies]
wit-bindgen.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
url.workspace = true
waki = { workspace = true, features = ["json"] }

[lib]
crate-type = ["cdylib"]
Loading

0 comments on commit cc66870

Please sign in to comment.