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

      CodeSOD: A Unique Way to Primary Key

      July 22, 2025

      BrowserStack launches Figma plugin for detecting accessibility issues in design phase

      July 22, 2025

      Parasoft brings agentic AI to service virtualization in latest release

      July 22, 2025

      Node.js vs. Python for Backend: 7 Reasons C-Level Leaders Choose Node.js Talent

      July 21, 2025

      The best CRM software with email marketing in 2025: Expert tested and reviewed

      July 22, 2025

      This multi-port car charger can power 4 gadgets at once – and it’s surprisingly cheap

      July 22, 2025

      I’m a wearables editor and here are the 7 Pixel Watch 4 rumors I’m most curious about

      July 22, 2025

      8 ways I quickly leveled up my Linux skills – and you can too

      July 22, 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

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025
      Recent

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025

      Zero Trust & Cybersecurity Mesh: Your Org’s Survival Guide

      July 22, 2025

      Execute Ping Commands and Get Back Structured Data in PHP

      July 22, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025
      Recent

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025

      “I don’t think I changed his mind” — NVIDIA CEO comments on H20 AI GPU sales resuming in China following a meeting with President Trump

      July 22, 2025

      Galaxy Z Fold 7 review: Six years later — Samsung finally cracks the foldable code

      July 22, 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

    A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

    July 22, 2025
    News & Updates

    “I don’t think I changed his mind” — NVIDIA CEO comments on H20 AI GPU sales resuming in China following a meeting with President Trump

    July 22, 2025
    Leave A Reply Cancel Reply

    For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

    Continue Reading

    Integrate Coveo Atomic CLI-Based Hosted Search Page into Adobe Experience Manager (AEM)

    Development

    Agents bring the role of AI in development from reactive to proactive

    Tech & Work

    CVE-2025-5459 – Puppet Enterprise Root Command Execution Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    CuteCom – graphical serial terminal

    Linux

    Highlights

    How to Use Microsoft Teams Step-by-Step for Beginners

    July 16, 2025

    Find out how to use Microsoft Teams, from start to finish. You’ll learn how to…

    CVE-2025-52922 – Innoshop Directory Traversal Remote File Inclusion

    June 23, 2025

    CVE-2025-47582 – QuantumCloud WPBot Pro WordPress Chatbot Object Injection Vulnerability

    May 19, 2025

    Silent Hill 1 remake in development at Konami and Bloober Team, but will it come to Xbox?

    June 12, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

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