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

      In-House vs. Outsource Node.js Development Teams: 9 Key Differences for the C-Suite (2025)

      July 19, 2025

      Why Non-Native Content Designers Improve Global UX

      July 18, 2025

      DevOps won’t scale without platform engineering and here’s why your teams are still stuck

      July 18, 2025

      This week in AI dev tools: Slack’s enterprise search, Claude Code’s analytics dashboard, and more (July 18, 2025)

      July 18, 2025

      DistroWatch Weekly, Issue 1131

      July 20, 2025

      I ditched my Bluetooth speakers for this slick turntable – and it’s more practical than I thought

      July 19, 2025

      This split keyboard offers deep customization – if you’re willing to go all in

      July 19, 2025

      I spoke with an AI version of myself, thanks to Hume’s free tool – how to try it

      July 19, 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 details of TC39’s last meeting

      July 20, 2025
      Recent

      The details of TC39’s last meeting

      July 20, 2025

      Simple wrapper for Chrome’s built-in local LLM (Gemini Nano)

      July 19, 2025

      Online Examination System using PHP and MySQL

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

      Windows 11 tests “shared audio” to play music via multiple devices, new taskbar animations

      July 20, 2025
      Recent

      Windows 11 tests “shared audio” to play music via multiple devices, new taskbar animations

      July 20, 2025

      WhatsApp for Windows 11 is switching back to Chromium web wrapper from UWP/native

      July 20, 2025

      DistroWatch Weekly, Issue 1131

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

    What I learned from Inspired

    July 20, 2025
    Learning Resources

    macOS Apprentice [SUBSCRIBER]

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

    CVE-2025-48888 – Deno Deny-Read Allow-Read Permission Confusion

    Common Vulnerabilities and Exposures (CVEs)

    CVE-2025-3931 – Yggdrasil DBus Unauthenticated Command Injection Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    Crypto Developers Targeted by Python Malware Disguised as Coding Challenges

    Development

    Critical Vulnerabilities in Quick Agent Software Expose Ricoh MFPs to Remote Attacks

    Security

    Highlights

    CVE-2025-46333 – Z2D Stride Compositor Out-of-Bounds Write

    April 25, 2025

    CVE ID : CVE-2025-46333

    Published : April 25, 2025, 9:15 p.m. | 1 hour, 46 minutes ago

    Description : z2d is a pure Zig 2D graphics library. In version 0.6.0, when writing from one surface to another using `z2d.compositor.StrideCompositor.run`, the source surface can be completely out-of-bounds on the x-axis (but not on the y-axis) by way of a negative offset. This results in an overflow of the value controlling the length of the stride. In non-safe optimization modes (consumers compiling with `ReleaseFast` or `ReleaseSmall`), this could potentially lead to invalid memory accesses or corruption. This issue is patched in version 0.6.1.

    Severity: 0.0 | NA

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

    Farmonics Onion Powder – Affordable, Premium-Quality Onion Powder Price Online in India

    June 5, 2025

    Samsung Galaxy Z Flip 7 vs. Z Flip 6: I used both models, and there’s a clear winner

    July 10, 2025

    15+ Best Light Leak Photo Effect Photoshop Action Sets in 2025

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

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