Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bbot/core/flags.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"cloud-enum": "Enumerates cloud resources",
"code-enum": "Find public code repositories and search them for secrets etc.",
"deadly": "Highly aggressive",
"download": "Modules that downloa files, apps, or repositories",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

small typo

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice catch, fixed

"email-enum": "Enumerates email addresses",
"iis-shortnames": "Scans for IIS Shortname vulnerability",
"passive": "Never connects to target systems",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/apkpure.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class apkpure(BaseModule):
watched_events = ["MOBILE_APP"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "safe", "code-enum"]
flags = ["passive", "safe", "code-enum", "download"]
meta = {
"description": "Download android applications from apkpure.com",
"created_date": "2024-10-11",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/docker_pull.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class docker_pull(BaseModule):
watched_events = ["CODE_REPOSITORY"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "safe", "slow", "code-enum"]
flags = ["passive", "safe", "slow", "code-enum", "download"]
meta = {
"description": "Download images from a docker repository",
"created_date": "2024-03-24",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/filedownload.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class filedownload(BaseModule):

watched_events = ["URL_UNVERIFIED", "HTTP_RESPONSE"]
produced_events = ["FILESYSTEM"]
flags = ["active", "safe", "web-basic"]
flags = ["active", "safe", "web-basic", "download"]
meta = {
"description": "Download common filetypes such as PDF, DOCX, PPTX, etc.",
"created_date": "2023-10-11",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/git_clone.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class git_clone(github):
watched_events = ["CODE_REPOSITORY"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "safe", "slow", "code-enum"]
flags = ["passive", "safe", "slow", "code-enum", "download"]
meta = {
"description": "Clone code github repositories",
"created_date": "2024-03-08",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/gitdumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class gitdumper(BaseModule):
watched_events = ["CODE_REPOSITORY"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "safe", "slow", "code-enum"]
flags = ["passive", "safe", "slow", "code-enum", "download"]
meta = {
"description": "Download a leaked .git folder recursively or by fuzzing common names",
"created_date": "2025-02-11",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class github_workflows(github):
watched_events = ["CODE_REPOSITORY"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "safe", "code-enum"]
flags = ["passive", "safe", "code-enum", "download"]
meta = {
"description": "Download a github repositories workflow logs and workflow artifacts",
"created_date": "2024-04-29",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/postman_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class postman_download(postman):
watched_events = ["CODE_REPOSITORY"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "subdomain-enum", "safe", "code-enum"]
flags = ["passive", "subdomain-enum", "safe", "code-enum", "download"]
meta = {
"description": "Download workspaces, collections, requests from Postman",
"created_date": "2024-09-07",
Expand Down
Loading