-
Notifications
You must be signed in to change notification settings - Fork 0
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
95b0531
commit 0357cc4
Showing
3 changed files
with
40 additions
and
3 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,35 @@ | ||
# Introduction | ||
|
||
This section describes each command available via **htb-cli**. In addition, this page explains the functionality of the **global flags** for each command. | ||
|
||
## Batch (--batch) | ||
|
||
This flag allows you to answer **"yes"** to any question that may be asked by htb-cli. | ||
|
||
```bash | ||
htb-cli info -c OOPArtDB --batch | ||
``` | ||
|
||
![Batch](/assets/commands/globals/batch.png) | ||
|
||
## No Check (--no-check) | ||
|
||
By default, with each command, a request is sent to **Github** to check if the tool is **up to date** or if a **new version is available**. | ||
|
||
The `--no-check` flag allows you not to check if a new update is available. | ||
|
||
## Proxy (--proxy) | ||
|
||
The `--proxy` flag is used to route all htb-cli **traffic to a proxy** (e.g. BurpSuite). | ||
|
||
```bash | ||
htb-cli info --proxy http://127.0.0.1:8080 | ||
``` | ||
|
||
## Verbose (-v) | ||
|
||
The **verbose flag** displays more information during program execution. | ||
It has 2 levels: | ||
|
||
* Level 1 displays **additional information**. | ||
* Level 2 displays **debug information**. |
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