Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/6ixBit/FoxDos
Denial of service script leveraging concurrent go routines
https://github.com/6ixBit/FoxDos
ddos dos flood-attack http
Last synced: 8 days ago
JSON representation
Denial of service script leveraging concurrent go routines
- Host: GitHub
- URL: https://github.com/6ixBit/FoxDos
- Owner: 6ixBit
- Created: 2020-05-24T12:55:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-06T08:56:08.000Z (over 4 years ago)
- Last Synced: 2024-08-01T21:56:20.590Z (4 months ago)
- Topics: ddos, dos, flood-attack, http
- Language: Go
- Homepage:
- Size: 3.46 MB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FoxDos
HTTP(s) attacks using tcp. [Research purposes only]## Run
Usage: go run main.go [threads] [target] [port]
Examples:
- go run main.go 400 www.mysite.com 80
- go run main.go 400 www.example.com 443[Warning]: Executing too many threads will crash your computer if it fails to handle the load. On a server/good pc you can feel free to increase the thread count to the thousands as it will increase the amount of requests per second.
## Build
You could also build the executable to binary for cross platform execution by running the commands below.
- [Windows]: GOOS=windows go build
- [Linux]: GOARCH=386 go build
Once the executable has been generated in the root of the application you can run it as an .exe on Windows or run the binary directly by using ./FoxDos on Linux.