• Stars
    star
    152
  • Rank 236,576 (Top 5 %)
  • Language
    Python
  • Created over 4 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple DDoS botnet with basic authentication system written in Python

PYbot Botnet

PYbot is a basic open source denial of service botnet system written in Python 3, consists of a connect and control server and a bot malware script.

C&C Commands

Command Description
help, ? Shows list of commands
methods Shows list of attack methods
clear, cls Clears the console window screen
exit, logout Disconnects from the C&C server
.syn <host> <port> <duration> Starts a TCP SYN flood attack
.tcp <host> <port> <duration> <size> Starts a TCP junk flood attack
.udp <host> <port> <duration> <size> Starts a UDP junk flood attack
.vse <host> <port> <duration> Starts a VSE query flood attack
.http <host> <duration> Starts a HTTP GET request flood attack

Layer 4 Attack Vectors

  • TCP Flood
    • Floods target with trashed TCP data packets.
  • TCP SYN Flood
    • Floods target with SYNchronize TCP packets.
    • Read more about the attack method here.
  • UDP Flood
    • Floods target with trashed UDP data packets.
    • Read more about the attack method here.

Layer 7 Attack Vectors

  • VSE Flood
    • Floods target with VSE server queries.
    • Designed to take down Source based game servers by sending legitimate traffic to the target server.
  • HTTP GET Request Flood
    • Floods target with HTTP GET requests.
    • Read more about the attack method here.

Installation

  1. Install Git and Python 3 on your server.
  2. Clone the PYbot Github repository to your server via Git: $ git clone https://github.com/WodxTV/PYbot.git.
  3. Change the host address and C&C port in the configuration section in bot.py to your server address and C&C port.
  4. Start the CnC server by executing the command: $ python cnc.py <cnc port>.
  5. Add accounts in logins.txt using the format: username:password.
  6. Connect to the server through PuTTY on a raw socket connection.

Compiling the malware and installing it on vulnerable devices won't be told as it's highly illegal to get remote access to devices without permission. Use of this project for illegal activities is at own risk! I'm not responsible for any of your taken actions!

Author