Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      June 6, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      June 6, 2025

      How To Prevent WordPress SQL Injection Attacks

      June 6, 2025

      In MCP era API discoverability is now more important than ever

      June 5, 2025

      Black Myth: Wukong is coming to Xbox exactly one year after launching on PlayStation

      June 6, 2025

      Reddit wants to sue Anthropic for stealing its data, but the Claude AI manufacturers vow to “defend ourselves vigorously”

      June 6, 2025

      Satya Nadella says Microsoft makes money every time you use ChatGPT: “Every day that ChatGPT succeeds is a fantastic day”

      June 6, 2025

      Multiple reports suggest a Persona 4 Remake from Atlus will be announced during the Xbox Games Showcase

      June 6, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      TC39 advances numerous proposals at latest meeting

      June 6, 2025
      Recent

      TC39 advances numerous proposals at latest meeting

      June 6, 2025

      TypeBridge – zero ceremony, compile time rpc for client and server com

      June 6, 2025

      Simplify Cloud-Native Development with Quarkus Extensions

      June 6, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Black Myth: Wukong is coming to Xbox exactly one year after launching on PlayStation

      June 6, 2025
      Recent

      Black Myth: Wukong is coming to Xbox exactly one year after launching on PlayStation

      June 6, 2025

      Reddit wants to sue Anthropic for stealing its data, but the Claude AI manufacturers vow to “defend ourselves vigorously”

      June 6, 2025

      Satya Nadella says Microsoft makes money every time you use ChatGPT: “Every day that ChatGPT succeeds is a fantastic day”

      June 6, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Learning Resources»How to Make Own Botnet Army

    How to Make Own Botnet Army

    June 3, 2025

    Every time it involves performing a DDOS attack or making a Ransomware, one other query raises with it. How to create own botnet army for DDOS? Here in this detailed article we are going to discuss that how we can create own botnet army and use them for Cryptojacking, DDOS attack etc. But Before that,

    Warning:- Using bots or botnet or DDOS on other’s device/network without permission is illegal. This article is written for educational and awareness purpose only. Learn the things and stay safe, learning things are not illegal but using the knowledge against law is illegal. We have demonstrate things on the devices/networks that we own.

    What is Botnet?

    A botnet is a group of internet-connected gadgets that an attacker has compromised. Botnets act as a drive multiplier for particular person attackers, cyber-criminal teams and nation-states trying to disrupt or break into their targets methods. Generally utilized in distributed denial of service (DDoS) attacks, botnets can even make the most of their collective computing energy to ship giant volumes of spam, steal credentials at scale, or spy on individuals and organizations.

    Making a steady Botnet shouldn’t be straightforward. Many so called specialists promote botnet on the Darkweb. Most of them don’t work, they just fake it. In the event you purchase Botnet from others your cash or crypto could waste.

    We never recommend you infect other’s units, however we’re going to show how we will create our personal Botnet using a python based tool called BYOB. This demonstration will assist us to stop yourself from most of these assaults.

    How to Create Botnet on Kali Linux

    Installing and Initial Setup

    First of all we need to download BYOB on our system. We open our terminal and use following command to clone BYOB from GitHub.

    git clone https://github.com/malwaredllc/byob

    After applying the above command BYOB will be downloaded on our working directory. It is little bit bigger (38 MB for current version), so the download time will depend on our internet connection speed.

    byob clonning

    This tool has classic terminal based botnet generator along with modern web-based GUI for creating botnet. Web based interface will be easier for everyone so need to navigate to byob/web-gui directory (for terminal based interface we need to go inside the byob/byob directory), We use following command to do so:

    cd byob/web-gui

    The following screenshot shows the files under the directory:

    byob files for web-gui

    Now we need to install the requirements to run BYOB by using following command:

    sudo pip install -r requirements.txt

    For web-based interface installing requirements might take long, we can take a Coffee Break 🍵.

    requirements for botnet

    After the requirements process is complete we will run the startup.sh script for first time installation to setting up everything.

    sudo ./startup.sh

    This will download and setup some dependencies and it also may consume our time depending on our system performance and internet speed. We need to finish it. Collecting requirements and stating up these are required for first time installation only. Once we did everything perfect we don’t need to repeat previous steps every time we are going to run this tool.

    Running the Botnet

    Then we need to give permission to run.py file and make it executable by using following command:

    sudo chmod +x run.py

    Then we can run the web interface by using following command:

    python run.py

    After running the above command we can see that our Flask based web server is running on our localhost (http://0.0.0.0:5000), as we can see in the following screenshot.

    byob web interface starting

    Now we can open the localhost link on our browser and see that our BYOB web based interface.

    byob web based interface

    We can see here already have a beautiful “Getting Started” guide, but we will do the things. First of all we need to create an admin account to use this tool. We need to navigate to the “Register” option on top right corner.

    admin register page

    Here we need to choose a Username and Password (8 character) for our this localhost web server. We can choose anything we want then we click on “Sign Up” button.

    After we register we got the login page. We need to provide our registered username and password hare to login.

    byob login

    After that we can see the botnet control panel in front of us, as we can see in the following screenshot.

    byob control panel

    This is our control panel, we can control our payloads directly from here. On the top menu bar we can see the “Payload” options, from there we can create our botnets let’s go there.

    Here we got some options to choose. It can produce two types of payloads (botnets):

    • Python – Obfuscated Python script. The file size is quite small, however, it requires Python be installed on the target system to run.
    • Executable – Compile a binary executable for a target operating system (exe for Windows sh for Linux) and architecture. This will run on systems which do not have Python installed, however, the file size is larger.

    Here for an example we choose our Windows machine as a target, and suppose we don’t have Python installed on our target machine. So we need to create an executable payload for Windows system. We choose Format: Executable, Operating System: Windows, Architecture: x32 then click on “Generate” button.

    generating botnet

    Then the process will be started (This can take a few minutes, please be patient).

     

    Source: Read More

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleHow to Crack Any WordPress Admin Account
    Next Article XSSTRON — Find XSS Vulnerabilities by Just Browsing

    Related Posts

    News & Updates

    Black Myth: Wukong is coming to Xbox exactly one year after launching on PlayStation

    June 6, 2025
    News & Updates

    Reddit wants to sue Anthropic for stealing its data, but the Claude AI manufacturers vow to “defend ourselves vigorously”

    June 6, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    The Human AI and the Gen-AI Chronicles: A Tale of Collaboration and Courage

    Artificial Intelligence

    Android’s new Collections feature brings together relevant content from installed apps into one spot

    Development

    Nvidia’s 70+ projects at ICLR show how raw chip power is central to AI’s acceleration

    News & Updates

    Introducing N|Sentinel: Your AI-Powered Agent for Node.js Performance Optimization

    Development

    Highlights

    Private and Personalized Frequency Estimation in a Federated Setting

    December 7, 2024

    Motivated by the problem of next word prediction on user devices we introduce and study…

    Disponibile CachyOS Kernel Builder: Un Nuovo Strumento per Compilare il Kernel Linux

    February 18, 2025

    CVE-2025-3488 – WordPress WPML Stored Cross-Site Scripting Vulnerability

    May 2, 2025

    Novels That Offer Peace After Long Days

    April 2, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.