-
Notifications
You must be signed in to change notification settings - Fork 561
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #788 from blacklanternsecurity/fix-console-hang
Fix Console Hang
- Loading branch information
Showing
8 changed files
with
105 additions
and
22 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
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 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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