Skip to content

Commit

Permalink
docs: update configuration docs
Browse files Browse the repository at this point in the history
  • Loading branch information
cestef committed Jun 27, 2024
1 parent e3e2fd3 commit 4be90e7
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/pages/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,38 @@ default_config = false
capture = false
```

## Configuration in [Interactive mode](interactive.mdx)

The interactive mode allows you to configure the tool interactively. You can set the configuration options by selecting them from the list.

```bash copy
rwalk --interactive
```

```ansi copy
set url "https://google.com"
set wordlists ["common.txt"]
list
```

```ansi
// ...
url ·················· = "https://google.com"
// ...
wordlists ············ = ["common.txt"]
// ...
```

You can then save the configuration to the file:

```ansi copy
save
```

```ansi
Configuration saved to /Users/cstef/.config/rwalk/config.toml
```

## Examples

Let's say you want to use the same wordlist every time you run `rwalk`. You can add the following to your configuration file:
Expand Down

0 comments on commit 4be90e7

Please sign in to comment.