Skip to content

Commit

Permalink
update module descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 17, 2024
1 parent 4160af0 commit 5e50412
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
6 changes: 5 additions & 1 deletion bbot/modules/internal/cloudcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@

class CloudCheck(BaseInterceptModule):
watched_events = ["*"]
meta = {"description": "Tag events by cloud provider, identify cloud resources like storage buckets"}
meta = {
"description": "Tag events by cloud provider, identify cloud resources like storage buckets",
"created_date": "2024-07-07",
"author": "@TheTechromancer",
}
scope_distance_modifier = 1
_priority = 3

Expand Down
2 changes: 2 additions & 0 deletions bbot/modules/internal/dnsresolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

class DNSResolve(BaseInterceptModule):
watched_events = ["*"]
produced_events = ["DNS_NAME", "IP_ADDRESS", "RAW_DNS_RECORD"]
meta = {"description": "Perform DNS resolution", "created_date": "2022-04-08", "author": "@TheTechromancer"}
_priority = 1
scope_distance_modifier = None

Expand Down
6 changes: 5 additions & 1 deletion bbot/modules/output/sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@

class SQLite(SQLTemplate):
watched_events = ["*"]
meta = {"description": "Output scan data to a SQLite database"}
meta = {
"description": "Output scan data to a SQLite database",
"created_date": "2024-11-07",
"author": "@TheTechromancer",
}
options = {
"database": "",
}
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/output/txt.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class TXT(BaseOutputModule):
watched_events = ["*"]
meta = {"description": "Output to text"}
meta = {"description": "Output to text", "created_date": "2024-04-03", "author": "@TheTechromancer"}
options = {"output_file": ""}
options_desc = {"output_file": "Output to file"}

Expand Down

0 comments on commit 5e50412

Please sign in to comment.