-
Notifications
You must be signed in to change notification settings - Fork 567
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
1 parent
0bad648
commit 4ee94ed
Showing
5 changed files
with
65 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Command Helpers | ||
|
||
These are helpers related to executing shell commands. They are used throughout BBOT and its modules for executing various binaries such as `nmap`, `nuclei`, etc. | ||
|
||
Note that these helpers can be invoked directly from `self.helpers`, e.g.: | ||
|
||
```python | ||
self.helpers.run("ls", "-l") | ||
``` | ||
|
||
::: bbot.core.helpers.command | ||
options: | ||
show_root_heading: false |
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,19 @@ | ||
# DNS | ||
|
||
These are helpers related to DNS resolution. They are used throughout BBOT and its modules for performing DNS lookups and detecting DNS wildcards, etc. | ||
|
||
Note that these helpers can be invoked directly from `self.helpers`, e.g.: | ||
|
||
```python | ||
self.helpers.resolve("evilcorp.com") | ||
``` | ||
|
||
::: bbot.core.helpers.dns.DNSHelper | ||
handler: python | ||
options: | ||
members: | ||
- resolve | ||
- resolve_batch | ||
- resolve_raw | ||
- is_wildcard | ||
- is_wildcard_domain |
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,5 @@ | ||
# Interact.sh | ||
|
||
::: bbot.core.helpers.interactsh.Interactsh | ||
options: | ||
show_root_heading: false |
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,15 @@ | ||
# Web | ||
|
||
These are helpers for making various web requests. | ||
|
||
Note that these helpers can be invoked directly from `self.helpers`, e.g.: | ||
|
||
```python | ||
self.helpers.request("https://www.evilcorp.com") | ||
``` | ||
|
||
::: bbot.core.helpers.web | ||
options: | ||
show_root_heading: false | ||
members: | ||
- WebHelper |
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,13 @@ | ||
# Word Cloud | ||
|
||
These are helpers related to BBOT's Word Cloud, a mechanism for storing target-specific keywords that are useful for custom wordlists, etc. | ||
|
||
Note that these helpers can be invoked directly from `self.helpers`, e.g.: | ||
|
||
```python | ||
self.helpers.word_cloud | ||
``` | ||
|
||
::: bbot.core.helpers.wordcloud | ||
options: | ||
show_root_heading: false |