<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" c initial-scale=1.0">
<title>Link Bypass</title>
<link rel="shortcut icon" type="x-icon" href="icon.png">
>
<style>
body {
font-family: 'Press Start 2P', cursive;
background: #000;
color: #FFF;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.bypass-container {
background: #555;
border: 4px solid #FFF;
padding: 1rem;
border-radius: 0;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
text-align: center;
width: 320px;
}
.bypass-container h1 {
font-size: 16px;
color: #FFA500;
}
.bypass-input, .bypass-button, .copy-button {
font-family: 'Press Start 2P', cursive;
background: #000;
border: 2px solid #FFF;
color: #FFF;
margin-bottom: 1rem;
padding: .5rem;
width: 90%;
box-sizing: border-box;
}
.bypass-button:hover, .copy-button:hover {
background: #333;
}
.result-box {
display: none;
background: #000;
color: #FFF;
border: 2px solid #FFF;
padding: .5rem;
margin-top: 1rem;
text-align: left;
font-size: 12px;
overflow: auto;
}
.notification {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #32CD32;
color: #FFF;
padding: .5rem;
border: 2px solid #FFF;
border-radius: 0;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
font-size: 12px;
}
</style>
</head>
<body>
Link Bypass
<input type="text" id="linkInput" class="bypass-input" placeholder="Enter link here...">
Copy Successful
[removed]
function bypassLink() {
var link = document.getElementById('linkInput').value;
var apiEndpoint = 'https://et.goatbypassers.xyz/api/adlinks/bypass?url=';
var resultElement = document.getElementById('resultBox');
fetch(apiEndpoint + encodeURIComponent(link))
.then(response => response.json())
.then(data => {
resultElement.style.display = 'block';
if (data.bypassed) {
if (link.includes('token=')) {
resultElement.textContent = 'Authentication has been Whitelist';
} else {
resultElement[removed] = '' + data.bypassed + '';
document.getElementById('copyButton').style.display = 'block';
}
} else {
resultElement.textContent = 'Bypass failed for link: ' + link;
document.getElementById('copyButton').style.display = 'none';
}
})
.catch(error => {
console.error('Error:', error);
resultElement.textContent = 'Error bypassing link.';
document.getElementById('copyButton').style.display = 'none';
});
}
document.getElementById('copyButton').addEventListener('click', function() {
var bypassResult = document.getElementById('resultBox').querySelector('a').href;
navigator.clipboard.writeText(bypassResult).then(function() {
var notification = document.getElementById('notification');
notification.style.display = 'block';
setTimeout(function() {
notification.style.display = 'none';
}, 3000);
console.log('Copying to clipboard was successful!');
}, function(err) {
console.error('Could not copy text: ', err);
});
});
[removed]
</body>
</html>