forked from Daniel.Sy/loic-go
No description
|
||
---|---|---|
cmd | ||
pkg | ||
.gitignore | ||
go.mod | ||
main.go | ||
README.md |
LOIC
A DDOS tool that can be used to attack Kubernetes services and arbitrary URLs.
Installation
Instructions on how to build and start LOIC.
# Install dependencies
go mod tidy
# Build LOIC
go build -o loic
# Start LOIC
./loic start
Usage
Instructions on how to LOIC.
# Start an attack
./loic start --target http://example.com -c 10 -d 1m -r 30s
# Get the status of LOIC
./loic status
# Start the Web UI
./loic web
# Stop LOIC
./loic stop
Contributing
Guidelines for contributing to the project.
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Make your changes.
- Commit your changes (
git commit -m 'Add some feature'
). - Push to the branch (
git push origin feature-branch
). - Open a pull request.