- Notifications
You must be signed in to change notification settings - Fork7
Simple Go program that makes HTTP request constantly in order to generate random HTTP/DNS traffic noise
License
dnlzrgz/whisperer
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Whisperer is a simple Go program that makes HTTP request constantly in order to generate random HTTP/DNS traffic noise.
Whisperer is a project inspired byNoisy.
whisperer -v -d 3s
go get github.com/danielkvist/whisperer
# First, clone the repositorygit clone https://github.com/danielkvist/whisperer# Then navigate into the whisperer directorycd whisperer# Rungo run main.go
To use whisperer as a Docker container you can pull the image with the following command:
docker image pull danielkvist/whisperer
Note that the image
danielkvist/whisperer
uses the urls file from this repository. So it is not a valid option if you want to customize the URLs that whisperer is going to visit.
# First, clone the repositorygit clone https://github.com/danielkvist/whisperer# Then navigate into the whisperer directorycd whisperer# Modify the urls.txt file if you wantvim urls.txt# Build the Docker Image from the Dockerfile inside the repositorydocker image build -t whisperer.# Rundocker container run whisperer
Whisperer can accept a number of command line arguments:
$ whisperer --helpwhisperer makes HTTP request constantly in order to generate random HTTP/DNS traffic noise.Usage: whisperer [flags]Flags: -a, --agent string user agent (default "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:67.0) Gecko/20100101 Firefox/67.0") --debug prints error messages -d, --delay duration delay between requests (default 1s) -g, --goroutines int number of goroutines (default 1) -h, --help help for whisperer -p, --proxy string proxy URL -r, --random random delay between requests -t, --timeout duration max time to wait for a response before canceling the request (default 3s) --urls string simple .txt file with URL's to visit (default "./urls.txt") -v, --verbose enables verbose mode
This file is from which Whisperer will extract the different URLs that will be visiting.
You can see an example of how this file should behere.
If you know about anything else I can improve or add please, don't hesitate to let me know!
About
Simple Go program that makes HTTP request constantly in order to generate random HTTP/DNS traffic noise