-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
849 additions
and
14 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
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,91 @@ | ||
--- | ||
title: blackstork/hackerone | ||
weight: 20 | ||
type: docs | ||
--- | ||
|
||
# `blackstork/hackerone` plugin | ||
|
||
## Installation | ||
|
||
To install the plugin, add it to `plugin_versions` map in the Fabric global configuration block (see [Global configuration]({{< ref "configs.md#global-configuration" >}}) for more details), with a version constraint restricting which available versions of the plugin the codebase is compatible with: | ||
|
||
```hcl | ||
fabric { | ||
plugin_versions = { | ||
"blackstork/hackerone" = "=> v0.0.0-dev" | ||
} | ||
} | ||
``` | ||
|
||
## Data sources | ||
|
||
The plugin has the following data sources available: | ||
|
||
### `hackerone_reports` | ||
|
||
#### Configuration | ||
|
||
The data source supports the following configuration parameters: | ||
|
||
```hcl | ||
config data hackerone_reports { | ||
api_token = <string> # required | ||
api_username = <string> # required | ||
} | ||
``` | ||
|
||
#### Usage | ||
|
||
The data source supports the following parameters in the data blocks: | ||
|
||
```hcl | ||
data hackerone_reports { | ||
assignee = <list of string> # optional | ||
bounty_awarded_at__gt = <string> # optional | ||
bounty_awarded_at__lt = <string> # optional | ||
bounty_awarded_at__null = <bool> # optional | ||
closed_at__gt = <string> # optional | ||
closed_at__lt = <string> # optional | ||
closed_at__null = <bool> # optional | ||
created_at__gt = <string> # optional | ||
created_at__lt = <string> # optional | ||
custom_fields = <map of string> # optional | ||
disclosed_at__gt = <string> # optional | ||
disclosed_at__lt = <string> # optional | ||
disclosed_at__null = <bool> # optional | ||
first_program_activity_at__gt = <string> # optional | ||
first_program_activity_at__lt = <string> # optional | ||
first_program_activity_at__null = <bool> # optional | ||
hacker_published = <bool> # optional | ||
id = <list of number> # optional | ||
inbox_ids = <list of number> # optional | ||
keyword = <string> # optional | ||
last_activity_at__gt = <string> # optional | ||
last_activity_at__lt = <string> # optional | ||
last_program_activity_at__gt = <string> # optional | ||
last_program_activity_at__lt = <string> # optional | ||
last_program_activity_at__null = <bool> # optional | ||
last_public_activity_at__gt = <string> # optional | ||
last_public_activity_at__lt = <string> # optional | ||
last_report_activity_at__gt = <string> # optional | ||
last_report_activity_at__lt = <string> # optional | ||
page_number = <number> # optional | ||
program = <list of string> # optional | ||
reporter = <list of string> # optional | ||
reporter_agreed_on_going_public = <bool> # optional | ||
severity = <list of string> # optional | ||
size = <number> # optional | ||
sort = <string> # optional | ||
state = <list of string> # optional | ||
submitted_at__gt = <string> # optional | ||
submitted_at__lt = <string> # optional | ||
swag_awarded_at__gt = <string> # optional | ||
swag_awarded_at__lt = <string> # optional | ||
swag_awarded_at__null = <bool> # optional | ||
triaged_at__gt = <string> # optional | ||
triaged_at__lt = <string> # optional | ||
triaged_at__null = <bool> # optional | ||
weakness_id = <list of number> # optional | ||
} | ||
``` |
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,52 @@ | ||
--- | ||
title: blackstork/splunk | ||
weight: 20 | ||
type: docs | ||
--- | ||
|
||
# `blackstork/splunk` plugin | ||
|
||
## Installation | ||
|
||
To install the plugin, add it to `plugin_versions` map in the Fabric global configuration block (see [Global configuration]({{< ref "configs.md#global-configuration" >}}) for more details), with a version constraint restricting which available versions of the plugin the codebase is compatible with: | ||
|
||
```hcl | ||
fabric { | ||
plugin_versions = { | ||
"blackstork/splunk" = "=> v0.0.0-dev" | ||
} | ||
} | ||
``` | ||
|
||
## Data sources | ||
|
||
The plugin has the following data sources available: | ||
|
||
### `splunk_search` | ||
|
||
#### Configuration | ||
|
||
The data source supports the following configuration parameters: | ||
|
||
```hcl | ||
config data splunk_search { | ||
auth_token = <string> # required | ||
deployment_name = <string> # optional | ||
host = <string> # optional | ||
} | ||
``` | ||
|
||
#### Usage | ||
|
||
The data source supports the following parameters in the data blocks: | ||
|
||
```hcl | ||
data splunk_search { | ||
earliest_time = <string> # optional | ||
latest_time = <string> # optional | ||
max_count = <number> # optional | ||
rf = <list of string> # optional | ||
search_query = <string> # required | ||
status_buckets = <number> # optional | ||
} | ||
``` |
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,50 @@ | ||
--- | ||
title: blackstork/stixview | ||
weight: 20 | ||
type: docs | ||
--- | ||
|
||
# `blackstork/stixview` plugin | ||
|
||
## Installation | ||
|
||
To install the plugin, add it to `plugin_versions` map in the Fabric global configuration block (see [Global configuration]({{< ref "configs.md#global-configuration" >}}) for more details), with a version constraint restricting which available versions of the plugin the codebase is compatible with: | ||
|
||
```hcl | ||
fabric { | ||
plugin_versions = { | ||
"blackstork/stixview" = "=> v0.0.0-dev" | ||
} | ||
} | ||
``` | ||
|
||
|
||
|
||
## Content providers | ||
The plugin has the following content providers available: | ||
|
||
### `stixview` | ||
|
||
#### Configuration | ||
|
||
The content provider doesn't support configuration. | ||
|
||
#### Usage | ||
|
||
The content source supports the following parameters in the content blocks: | ||
|
||
```hcl | ||
content stixview { | ||
caption = <string> # optional | ||
gist_id = <string> # optional | ||
height = <number> # optional | ||
show_footer = <bool> # optional | ||
show_idrefs = <bool> # optional | ||
show_labels = <bool> # optional | ||
show_marking_nodes = <bool> # optional | ||
show_sidebar = <bool> # optional | ||
show_tlp_as_tags = <bool> # optional | ||
stix_url = <string> # optional | ||
width = <number> # optional | ||
} | ||
``` |
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,48 @@ | ||
--- | ||
title: blackstork/virustotal | ||
weight: 20 | ||
type: docs | ||
--- | ||
|
||
# `blackstork/virustotal` plugin | ||
|
||
## Installation | ||
|
||
To install the plugin, add it to `plugin_versions` map in the Fabric global configuration block (see [Global configuration]({{< ref "configs.md#global-configuration" >}}) for more details), with a version constraint restricting which available versions of the plugin the codebase is compatible with: | ||
|
||
```hcl | ||
fabric { | ||
plugin_versions = { | ||
"blackstork/virustotal" = "=> v0.0.0-dev" | ||
} | ||
} | ||
``` | ||
|
||
## Data sources | ||
|
||
The plugin has the following data sources available: | ||
|
||
### `virustotal_api_usage` | ||
|
||
#### Configuration | ||
|
||
The data source supports the following configuration parameters: | ||
|
||
```hcl | ||
config data virustotal_api_usage { | ||
api_key = <string> # required | ||
} | ||
``` | ||
|
||
#### Usage | ||
|
||
The data source supports the following parameters in the data blocks: | ||
|
||
```hcl | ||
data virustotal_api_usage { | ||
end_date = <string> # optional | ||
group_id = <string> # optional | ||
start_date = <string> # optional | ||
user_id = <string> # optional | ||
} | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
id,active,name,age,height | ||
b8fa4bb0-6dd4-45ba-96e0-9a182b2b932e,true,Stacey,26,1.98 | ||
b0086c49-bcd8-4aae-9f88-4f46b128e709,false,Myriam,33,1.81 | ||
a12d2a8c-eebc-42b3-be52-1ab0a2969a81,true,Oralee,31,2.23 |
Oops, something went wrong.