-
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.
support filesystem, mobile app targets
- Loading branch information
github-actions
committed
Dec 18, 2024
1 parent
48c0859
commit 9fedf1d
Showing
6 changed files
with
90 additions
and
9 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 |
---|---|---|
|
@@ -317,6 +317,11 @@ Targets can be any of the following: | |
- `IP_RANGE` (`1.2.3.0/24`) | ||
- `OPEN_TCP_PORT` (`192.168.0.1:80`) | ||
- `URL` (`https://www.evilcorp.com`) | ||
- `EMAIL_ADDRESS` (`[email protected]`) | ||
- `ORG_STUB` (`ORG:evilcorp`) | ||
- `USER_STUB` (`USER:bobsmith`) | ||
- `FILESYSTEM` (`FILESYSTEM:/tmp/asdf`) | ||
- `MOBILE_APP` (`MOBILE_APP:https://play.google.com/store/apps/details?id=com.evilcorp.app`) | ||
|
||
For more information, see [Targets](https://www.blacklanternsecurity.com/bbot/Stable/scanning/#targets-t). To learn how BBOT handles scope, see [Scope](https://www.blacklanternsecurity.com/bbot/Stable/scanning/#scope). | ||
|
||
|
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
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 |
---|---|---|
|
@@ -22,6 +22,11 @@ Targets declare what's in-scope, and seed a scan with initial data. BBOT accepts | |
- `IP_RANGE` (`1.2.3.0/24`) | ||
- `OPEN_TCP_PORT` (`192.168.0.1:80`) | ||
- `URL` (`https://www.evilcorp.com`) | ||
- `EMAIL_ADDRESS` (`[email protected]`) | ||
- `ORG_STUB` (`ORG:evilcorp`) | ||
- `USER_STUB` (`USER:bobsmith`) | ||
- `FILESYSTEM` (`FILESYSTEM:/tmp/asdf`) | ||
- `MOBILE_APP` (`MOBILE_APP:https://play.google.com/store/apps/details?id=com.evilcorp.app`) | ||
|
||
Note that BBOT only discriminates down to the host level. This means, for example, if you specify a URL `https://www.evilcorp.com` as the target, the scan will be *seeded* with that URL, but the scope of the scan will be the entire host, `www.evilcorp.com`. Other ports/URLs on that same host may also be scanned. | ||
|
||
|