Created
June 23, 2022 16:25
-
-
Save Raz-js/1a5641d2872b68bcdb54cc7823da0804 to your computer and use it in GitHub Desktop.
Discord Webhook Spammer Written in HTML (Configurable)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Webhook Spammer (DSC)</title> | |
</head> | |
<body> | |
<br class="webpropss">Webhook Spammer By Raz</br> | |
<input id="kk" value="Webhook URL"></input> | |
<br> | |
<input id="Username" value="Username"></input> | |
<br> | |
<input id="AV" value="https://86c63a7c-1ad0-46b4-a245-b2c34ad7a78f.id.repl.co/Input_Avatar_Url.png"></input> | |
<br> | |
<input id="Content" value="Content"></input> | |
<br> | |
<br> | |
<button onclick="sendMessage()">Spam</button> | |
<button id="spammer" onclick="toggle()" value="OFF">Auto-Spam</button> | |
<br> | |
<br> | |
<br> | |
<div class="alert"> | |
<span class="closebtn" onclick="this.parentElement.style.display='none';">×</span> | |
<strong>Danger!</strong> This will get you rate-limited if you don't use a vpn. | |
</div> | |
</body> | |
<style> | |
.alert { | |
padding: 20px; | |
background-color: #f44336; | |
color: white; | |
} | |
.closebtn { | |
margin-left: 15px; | |
color: white; | |
font-weight: bold; | |
float: right; | |
font-size: 22px; | |
line-height: 20px; | |
cursor: pointer; | |
transition: 0.3s; | |
} | |
.closebtn:hover { | |
color: black; | |
} | |
body { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
flex-direction: column; | |
color: white; | |
text-shadow: 0px 0px 5px #123456; | |
height: 100vh; | |
background: | |
linear-gradient(-135deg, rgb(34, 76, 152) 10%, transparent), | |
repeating-linear-gradient(45deg, rgba(34, 76, 152, 1) 0%, rgba(31, 48, 94, 0.6) 5%, transparent 5%, transparent 10%), | |
repeating-linear-gradient(-45deg, rgba(34, 76, 152, 0.4) 0%, rgba(31, 48, 94, 0.5) 5%, transparent 5%, transparent 10%); | |
background-color: rgba(34, 76, 152, 0.25); | |
font-family: "Sofia", sans-serif; | |
} | |
input, select { | |
width: 100%; | |
padding: 12px 20px; | |
margin: 8px 0; | |
display: inline-block; | |
border: 1px solid #ccc; | |
border-radius: 4px; | |
box-sizing: border-box; | |
background: #F0F8FF | |
} | |
button { | |
width: 100%; | |
background-color: #4CAF50; | |
color: white; | |
padding: 14px 20px; | |
margin: 8px 0; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
} | |
button:hover { | |
background-color: #45a049; | |
} | |
</style> | |
<script> | |
function sendMessage() { | |
var webh = document.getElementById('kk').value | |
var Username = document.getElementById('Username').value | |
var AV = document.getElementById('AV').value | |
var Content = document.getElementById('Content').value | |
const request = new XMLHttpRequest(); | |
request.open("POST", webh); | |
request.setRequestHeader('Content-type', 'application/json'); | |
const params = { | |
username: Username, | |
avatar_url: AV, | |
content: Content | |
} | |
request.send(JSON.stringify(params)); | |
} | |
function toggle() | |
{ | |
const int = setInterval(sendMessage, 5) | |
function spam() { | |
int | |
} | |
if(document.getElementById("spammer").value=="OFF"){ | |
document.getElementById("spammer").value="ON"; | |
spam();} | |
else if(document.getElementById("spammer").value=="ON"){ | |
document.getElementById("spammer").value="OFF"; | |
location.reload(); | |
} | |
} | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment