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

      Designing For TV: Principles, Patterns And Practical Guidance (Part 2)

      September 5, 2025

      Neo4j introduces new graph architecture that allows operational and analytics workloads to be run together

      September 5, 2025

      Beyond the benchmarks: Understanding the coding personalities of different LLMs

      September 5, 2025

      Top 10 Use Cases of Vibe Coding in Large-Scale Node.js Applications

      September 3, 2025

      Building smarter interactions with MCP elicitation: From clunky tool calls to seamless user experiences

      September 4, 2025

      From Zero to MCP: Simplifying AI Integrations with xmcp

      September 4, 2025

      Distribution Release: Linux Mint 22.2

      September 4, 2025

      Coded Smorgasbord: Basically, a Smorgasbord

      September 4, 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

      Drupal 11’s AI Features: What They Actually Mean for Your Team

      September 5, 2025
      Recent

      Drupal 11’s AI Features: What They Actually Mean for Your Team

      September 5, 2025

      Why Data Governance Matters More Than Ever in 2025?

      September 5, 2025

      Perficient Included in the IDC Market Glance for Digital Business Professional Services, 3Q25

      September 5, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      How DevOps Teams Are Redefining Reliability with NixOS and OSTree-Powered Linux

      September 5, 2025
      Recent

      How DevOps Teams Are Redefining Reliability with NixOS and OSTree-Powered Linux

      September 5, 2025

      Distribution Release: Linux Mint 22.2

      September 4, 2025

      ‘Cronos: The New Dawn’ was by far my favorite experience at Gamescom 2025 — Bloober might have cooked an Xbox / PC horror masterpiece

      September 4, 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

    Learning Resources

    How DevOps Teams Are Redefining Reliability with NixOS and OSTree-Powered Linux

    September 5, 2025
    Learning Resources

    What I learned from Inspired

    September 5, 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

    Can My PC Run Windows 11? Easy Steps to Test and Confirm

    Operating Systems

    CVE-2025-49091 – KDE Konsole Remote Code Execution Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    CVE-2025-5286 – WordPress Bold Page Builder Stored Cross-Site Scripting Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    I played Marvel Cosmic Invasion — pure, simple co-op fun that shouldn’t be missed

    News & Updates

    Highlights

    CVE-2025-23176 – Apache Web Server SQL Injection Vulnerability

    April 22, 2025

    CVE ID : CVE-2025-23176

    Published : April 22, 2025, 3:16 p.m. | 2 hours, 29 minutes ago

    Description : CWE-89: Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’)

    Severity: 8.8 | HIGH

    Visit the link for more details, such as CVSS details, affected products, timeline, and more…

    Open Talent platforms emerging to match skilled workers to needs, study finds

    June 13, 2025

    March 2025 Baseline monthly digest

    May 2, 2025

    Windows warning: Don’t delete that weird ‘inetpub’ folder. Already did? Here’s your fix

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

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