-
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.
Added updating edge release to actions
- Loading branch information
Showing
2 changed files
with
73 additions
and
7 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 |
---|---|---|
@@ -1,4 +1,25 @@ | ||
# dnese | ||
An amigo to help you easily serve dns queries with your answers & see what questions are being asked. | ||
|
||
Originally built for dns poisoning for testing native/desktop apps. | ||
Originally built for dns spoofing for testing native/desktop apps. | ||
|
||
|
||
## Usage | ||
|
||
```sh | ||
dnese --help | ||
dnese --always 127.0.0.1 --port 5300 | ||
``` | ||
|
||
You can also set the configuration options in `$HOME/.dnese.yaml` which is automatically loaded. You can also use `--config` to specify the path of your config. | ||
|
||
**Example Config** | ||
```yaml | ||
--- | ||
# always: 127.0.0.1 | ||
port: 5300 | ||
resolver: 8.8.8.8:53 | ||
rules: | ||
- pattern: .*\.hey\.com\.?$ | ||
address: 127.0.0.1 | ||
``` |