Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,31 @@ Dependencies can be installed manually with:
pip install -r requirements.txt
```

### Debug mode
### Command-line mode

Launch with the `--debug` flag to enable verbose output:
Run `python h4xtools.py --help` to list all direct-run options. If no tool flag is provided, H4X-Tools opens the interactive menu.

Examples:

```sh
python h4xtools.py --igscrape some_username --verbose
python h4xtools.py --username some_handle --debug
python h4xtools.py --ip example.com --whois example.com
python h4xtools.py --port-scanner 192.168.1.10 --port-range 1000
```

Tool flags can usually be passed without a value to prompt only for the missing target:

```sh
python h4xtools.py --igscrape --verbose
```

### Debug and verbose mode

Launch with `-v` / `--verbose` for verbose output or `--debug` for debug output:

```sh
python h4xtools.py --verbose
python h4xtools.py --debug
```

Expand Down
Loading