255 lines
7.9 KiB
HTML
255 lines
7.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>DarrkonKill3r</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
background-color: #050505;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-family: 'Courier New', monospace;
|
|
color: #e60000;
|
|
text-shadow: 0 0 10px #e60000, 0 0 20px #ff1a1a;
|
|
overflow-x: hidden; /* Loading prox13! */
|
|
}
|
|
|
|
h1 {
|
|
color: #ff1a1a;
|
|
font-size: 3rem;
|
|
margin-bottom: 20px;
|
|
animation: glitch 1s infinite;
|
|
text-align: center;
|
|
}
|
|
|
|
@keyframes glitch {
|
|
0% { text-shadow: 2px 2px #ff1a1a, -2px -2px #00ffff; }
|
|
25% { text-shadow: -2px 2px #ff1a1a, 2px -2px #00ffff; }
|
|
50% { text-shadow: 2px -2px #ff1a1a, -2px 2px #00ffff; }
|
|
75% { text-shadow: -2px -2px #ff1a1a, 2px 2px #00ffff; }
|
|
100% { text-shadow: 2px 2px #ff1a1a, -2px -2px #00ffff; }
|
|
}
|
|
|
|
button {
|
|
background-color: #111;
|
|
color: #ff1a1a;
|
|
border: 2px solid #ff1a1a;
|
|
padding: 15px 35px;
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 0 15px #ff1a1a, 0 0 30px #ff3333;
|
|
margin-bottom: 20px; /* Space below the main button... */
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #ff1a1a;
|
|
color: #050505;
|
|
border-color: #111;
|
|
transform: scale(1.1);
|
|
box-shadow: 0 0 25px #ff1a1a, 0 0 50px #ff3333;
|
|
}
|
|
|
|
button:active {
|
|
transform: scale(0.95);
|
|
box-shadow: 0 0 10px #ff1a1a;
|
|
}
|
|
|
|
/* Slider container */
|
|
.slider-container {
|
|
width: 80%;
|
|
max-width: 500px;
|
|
margin: 20px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Style the slider!!!!!!!!*/
|
|
.slider {
|
|
-webkit-appearance: none;
|
|
width: 100%;
|
|
height: 15px;
|
|
border-radius: 5px;
|
|
background: linear-gradient(to right, #112240, #ff1a1a);
|
|
outline: none;
|
|
opacity: 0.9;
|
|
-webkit-transition: .2s;
|
|
transition: opacity .2s;
|
|
box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
|
|
}
|
|
|
|
.slider:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Microsoft Edge sux */
|
|
.slider::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
width: 25px;
|
|
height: 25px;
|
|
border-radius: 50%;
|
|
background: #00ffff;
|
|
cursor: pointer;
|
|
box-shadow: 0 0 10px #00ffff, 0 0 20px #66ffff;
|
|
border: 2px solid #111;
|
|
}
|
|
|
|
.slider::-moz-range-thumb {
|
|
width: 25px;
|
|
height: 25px;
|
|
border-radius: 50%;
|
|
background: #00ffff;
|
|
cursor: pointer;
|
|
box-shadow: 0 0 10px #00ffff, 0 0 20px #66ffff;
|
|
border: 2px solid #111;
|
|
}
|
|
|
|
/* Labels for the slider */
|
|
.slider-labels {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 10px;
|
|
font-size: 0.9rem;
|
|
color: #ff6b6b;
|
|
}
|
|
|
|
h2 {
|
|
color: #ff3333;
|
|
text-align: center;
|
|
margin-top: 30px;
|
|
padding: 15px;
|
|
background-color: rgba(30, 0, 0, 0.6);
|
|
border-radius: 8px;
|
|
font-size: 1rem;
|
|
max-width: 80%;
|
|
box-shadow: inset 0 0 15px #ff1a1a;
|
|
}
|
|
|
|
h2 span {
|
|
display: block;
|
|
margin-top: 10px;
|
|
font-weight: bold;
|
|
color: #00ffff;
|
|
text-shadow: 0 0 10px #00ffff, 0 0 20px #66ffff;
|
|
}
|
|
|
|
#popup-warning {
|
|
margin-top: 20px;
|
|
padding: 20px;
|
|
background-color: rgba(255, 0, 0, 0.15);
|
|
border: 2px solid #ff1a1a;
|
|
border-radius: 10px;
|
|
color: #ff1a1a;
|
|
display: none;
|
|
text-align: center;
|
|
max-width: 80%;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
box-shadow: 0 0 15px #ff1a1a, 0 0 40px #ff0000;
|
|
opacity: 0;
|
|
animation: fadeIn 1.5s forwards;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
to { opacity: 1; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>INSECURLY 2.5</h1>
|
|
<button onclick="openTabs()">LAUNCH DARKONKILL3R</button>
|
|
|
|
<!-- Slider Container -->
|
|
<div class="slider-container">
|
|
<input type="range" min="1" max="100" value="50" class="slider" id="chaosSlider">
|
|
<div class="slider-labels">
|
|
<span>Kill securly once.</span>
|
|
<span>Destroy forever</span>
|
|
</div>
|
|
</div>
|
|
<!-- End Slider Container -->
|
|
|
|
<h2>
|
|
WELCOME TO THE VOID! Enable pop-ups for Darrkon pr0xy to L@unch!
|
|
<span>(Coded By Exploit-Master122)</span>
|
|
</h2>
|
|
|
|
|
|
<script>
|
|
let clickCount = 0;
|
|
|
|
function openTabs() {
|
|
clickCount++;
|
|
|
|
if (clickCount <= 2) {
|
|
// First 2 clicks, Load the unblocker!
|
|
const newTab = window.open("about:blank", "_blank");
|
|
if (newTab) {
|
|
newTab.document.write(`
|
|
<html>
|
|
<head>
|
|
<title>Classes</title>
|
|
<style>
|
|
html, body {
|
|
margin: 0; padding: 0;
|
|
width: 100%; height: 100%;
|
|
background: black;
|
|
overflow: hidden;
|
|
}
|
|
iframe {
|
|
border: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<iframe src="https://darrkon.vercel.app"></iframe>
|
|
<script>
|
|
window.onbeforeunload = function() {
|
|
return "Leave site? Changes you made may not be saved.";
|
|
};
|
|
<\/script>
|
|
</body>
|
|
</html>
|
|
`);
|
|
newTab.document.close();
|
|
}
|
|
} else {
|
|
// Third click onwards. LOAD CHAOS based on slider.
|
|
// Get the slider value (1-100) and map it to a tab range (e.g., 5 to 200)
|
|
const slider = document.getElementById("chaosSlider");
|
|
const sliderValue = slider.value;
|
|
// Map slider value (1-100) to tabs (5-200)
|
|
const minTabs = 50;
|
|
const maxTabs = 10000;
|
|
const times = Math.round(minTabs + (sliderValue - 1) * (maxTabs - minTabs) / 99);
|
|
|
|
let opened = false;
|
|
|
|
for (let i = 0; i < times; i++) {
|
|
const spamTab = window.open("https://www.youtube.com/shorts/V4txf7Tr63E", "_blank");
|
|
if (spamTab) {
|
|
opened = true;
|
|
}
|
|
}
|
|
|
|
if (!opened) {
|
|
const warning = document.getElementById("popup-warning");
|
|
warning.style.display = "block";
|
|
}
|
|
// Reset click count so the cycle can repeat!
|
|
clickCount = 0;
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|