<!DOCTYPE html>
<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>
<div class="bypass-container">
<input type="text" id="linkInput" class="bypass-input" placeholder="Enter link here...">
<div id="resultBox" class="result-box"></div>
<button id="copyButton" class="copy-button" none;">Copy
</button>
<div id="notification" class="notification" none;">Copy Successful
</div>
[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] = '
<a href="' + data.bypassed + '" target="_blank">' + data.bypassed + '
</a>';
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>
{"html5":"htmlmixed","css":"css","javascript":"javascript","php":"php","python":"python","ruby":"ruby","lua":"text\/x-lua","bash":"text\/x-sh","go":"go","c":"text\/x-csrc","cpp":"text\/x-c++src","diff":"diff","latex":"stex","sql":"sql","xml":"xml","apl":"apl","asterisk":"asterisk","c_loadrunner":"text\/x-csrc","c_mac":"text\/x-csrc","coffeescript":"text\/x-coffeescript","csharp":"text\/x-csharp","d":"d","ecmascript":"javascript","erlang":"erlang","groovy":"text\/x-groovy","haskell":"text\/x-haskell","haxe":"text\/x-haxe","html4strict":"htmlmixed","java":"text\/x-java","java5":"text\/x-java","jquery":"javascript","mirc":"mirc","mysql":"sql","ocaml":"text\/x-ocaml","pascal":"text\/x-pascal","perl":"perl","perl6":"perl","plsql":"sql","properties":"text\/x-properties","q":"text\/x-q","scala":"scala","scheme":"text\/x-scheme","tcl":"text\/x-tcl","vb":"text\/x-vb","verilog":"text\/x-verilog","yaml":"text\/x-yaml","z80":"text\/x-z80"}