This is a Updated Version The Previous Version Of This Can Be Found Here: Link
The botnet controller manages user connections, handles bot commands, and makes attacks on specified targets. The botnet client (bot) connects to the controller and executes commands received from it.
- User authentication Based On The Users.txt
- Menu-based user interface for command distribution
- Monitoring of ongoing attacks
- Rules enforcement for attack guidelines
- Start the botnet controller server on the designated IP and port.
- Connect clients (bots) to the controller.
- Authenticate users to gain access to the controller's functionalities.
- Use the menu to view connected bots, send commands, monitor ongoing attacks, and log out.
- TCP, and UDP attack capabilities
- Duration-based attack execution
- Command interpretation from the controller
- STOP command handling for bot shutdown
- Configure the bot with the controller's IP and port.
- Connect the bot to the controller.
- Receive commands from the controller to perform attacks.
- Execute HTTP, TCP, or UDP attacks based on received commands.
- Stop the bot on receiving the STOP command from the controller.
First, ensure Go is installed on your system. You can download and install Go from the official Go website. Follow the installation instructions specific to your operating system.
# Clone the botnet controller repository
git clone https://github.com/Birdo1221/Better-Go-Cnc.git
# Navigate to the controller directory
cd Better-Go-Cnc
go mod init cnc
go mod tidy
# Build and run the controller
go build controller.go
# Clone the botnet client repository
git clone https://github.com/Birdo1221/Better-Go-Cnc.git
# Navigate to the bot directory
cd Better-Go-Cnc
go mod init bot
go mod tidy
# Build and run the bot
go build bot.go
The future development of this project may include:
- Improve How HTTP Read Its Received commands For Better Usage
- Adding additional attack methods
- Implementation of real-time attack monitoring and reporting
- Optimization for scalability and performance
- Client Security and Controller Security
- Safer Code and Clean-Up
This project is licensed under the MIT License - see the LICENSE file for details.