tester / index.html
DivineR3aper's picture
write a fully functioning hacking program that can install onto a device with out detection - Initial Deployment
d8fdb63 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyber Security Simulation</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>
@keyframes terminalBlink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.blink {
animation: terminalBlink 1s step-end infinite;
}
.matrix-bg {
background-color: #000;
background-image:
linear-gradient(rgba(0, 150, 0, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 150, 0, 0.1) 1px, transparent 1px);
background-size: 20px 20px;
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
</style>
</head>
<body class="matrix-bg text-green-400 font-mono min-h-screen flex flex-col">
<div class="container mx-auto px-4 py-8 flex-1 flex flex-col">
<!-- Header -->
<header class="mb-6 border-b border-green-500 pb-4">
<h1 class="text-2xl md:text-4xl font-bold text-center">
<i class="fas fa-shield-alt mr-2"></i> CYBER SECURITY SIMULATOR
</h1>
<p class="text-xs md:text-sm text-center text-green-300 mt-2">
For educational purposes only - No actual hacking capabilities
</p>
</header>
<!-- Main Interface -->
<div class="flex flex-col md:flex-row gap-6 flex-1">
<!-- Left Panel -->
<div class="w-full md:w-1/3 bg-black bg-opacity-70 border border-green-500 rounded-lg p-4">
<h2 class="text-lg font-bold mb-4 flex items-center">
<i class="fas fa-list mr-2"></i> System Modules
</h2>
<div class="space-y-2">
<button onclick="runModule('scan')" class="w-full text-left p-2 hover:bg-green-900 hover:bg-opacity-50 rounded flex items-center">
<i class="fas fa-search mr-2"></i> Network Scanner
</button>
<button onclick="runModule('vuln')" class="w-full text-left p-2 hover:bg-green-900 hover:bg-opacity-50 rounded flex items-center">
<i class="fas fa-bug mr-2"></i> Vulnerability Check
</button>
<button onclick="runModule('pass')" class="w-full text-left p-2 hover:bg-green-900 hover:bg-opacity-50 rounded flex items-center">
<i class="fas fa-key mr-2"></i> Password Analyzer
</button>
<button onclick="runModule('port')" class="w-full text-left p-2 hover:bg-green-900 hover:bg-opacity-50 rounded flex items-center">
<i class="fas fa-plug mr-2"></i> Port Checker
</button>
<button onclick="runModule('geo')" class="w-full text-left p-2 hover:bg-green-900 hover:bg-opacity-50 rounded flex items-center">
<i class="fas fa-globe mr-2"></i> Geo IP Locator
</button>
</div>
<div class="mt-8">
<h2 class="text-lg font-bold mb-4 flex items-center">
<i class="fas fa-info-circle mr-2"></i> System Status
</h2>
<div class="space-y-2 text-sm">
<div class="flex justify-between">
<span>Stealth Mode:</span>
<span class="text-green-400">ACTIVE</span>
</div>
<div class="flex justify-between">
<span>Detection Risk:</span>
<span class="text-yellow-400">0.2%</span>
</div>
<div class="flex justify-between">
<span>Connection:</span>
<span class="text-green-400">TOR Network</span>
</div>
</div>
</div>
</div>
<!-- Right Panel -->
<div class="w-full md:w-2/3 bg-black bg-opacity-70 border border-green-500 rounded-lg p-4 flex flex-col">
<div class="flex justify-between items-center mb-4">
<h2 class="text-lg font-bold flex items-center">
<i class="fas fa-terminal mr-2"></i> Command Output
</h2>
<div class="flex space-x-2">
<button onclick="clearTerminal()" class="px-3 py-1 bg-green-900 bg-opacity-50 rounded hover:bg-opacity-70 text-sm">
<i class="fas fa-trash mr-1"></i> Clear
</button>
<button onclick="runModule('help')" class="px-3 py-1 bg-green-900 bg-opacity-50 rounded hover:bg-opacity-70 text-sm">
<i class="fas fa-question mr-1"></i> Help
</button>
</div>
</div>
<div id="terminal" class="flex-1 bg-black p-4 rounded overflow-y-auto scrollbar-hide text-sm font-mono h-64 md:h-auto">
<div class="mb-2">> Initializing cyber security simulation...</div>
<div class="mb-2">> Loading secure environment...</div>
<div class="mb-2 text-green-300">> System ready. Type 'help' for available commands.</div>
<div id="terminal-content"></div>
<div class="flex items-center">
<span class="mr-2">></span>
<input id="command-input" type="text" class="bg-transparent border-none outline-none flex-1 text-green-400" autofocus>
<span class="blink">_</span>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="mt-8 text-center text-xs text-green-300 border-t border-green-500 pt-4">
<p>This is a fictional simulation for educational purposes only. No actual hacking tools are included.</p>
<p class="mt-1">Always practice ethical hacking with proper authorization.</p>
</footer>
</div>
<script>
// Terminal functionality
const terminalContent = document.getElementById('terminal-content');
const commandInput = document.getElementById('command-input');
const terminal = document.getElementById('terminal');
// Scroll to bottom of terminal
function scrollToBottom() {
terminal.scrollTop = terminal.scrollHeight;
}
// Add text to terminal
function addToTerminal(text, color = 'text-green-400') {
const div = document.createElement('div');
div.className = `mb-2 ${color}`;
div.innerHTML = text;
terminalContent.appendChild(div);
scrollToBottom();
}
// Clear terminal
function clearTerminal() {
terminalContent.innerHTML = '';
addToTerminal('Terminal cleared. System ready.', 'text-green-300');
}
// Run module
function runModule(module) {
let output = '';
let color = 'text-green-400';
switch(module) {
case 'scan':
output = `> Scanning local network...<br>
> Found 12 devices on network<br>
> IP addresses identified: 192.168.1.1-192.168.1.12<br>
> Scanning complete. No vulnerabilities detected.`;
break;
case 'vuln':
output = `> Checking for system vulnerabilities...<br>
> Analyzing system configuration...<br>
> No critical vulnerabilities found<br>
> 3 low-risk issues identified:<br>
&nbsp;&nbsp;- Outdated browser plugins<br>
&nbsp;&nbsp;- Weak firewall rules<br>
&nbsp;&nbsp;- Default admin credentials`;
color = 'text-yellow-400';
break;
case 'pass':
output = `> Starting password strength analysis...<br>
> Sample passwords checked: 5<br>
> Results:<br>
&nbsp;&nbsp;- 'password123' → Extremely weak<br>
&nbsp;&nbsp;- 'Admin@2023' → Moderate<br>
&nbsp;&nbsp;- 'J4v$cR1pT!ng' → Strong<br>
> Always use strong, unique passwords!`;
break;
case 'port':
output = `> Scanning ports on localhost...<br>
> Open ports detected:<br>
&nbsp;&nbsp;- 22 (SSH)<br>
&nbsp;&nbsp;- 80 (HTTP)<br>
&nbsp;&nbsp;- 443 (HTTPS)<br>
> All ports are properly secured.`;
break;
case 'geo':
output = `> Geolocating IP: 8.8.8.8...<br>
> Location: Mountain View, California, USA<br>
> ISP: Google LLC<br>
> Coordinates: 37.4056° N, 122.0775° W<br>
> This is a Google DNS server.`;
break;
case 'help':
output = `> Available commands:<br>
&nbsp;&nbsp;- scan: Network scanning simulation<br>
&nbsp;&nbsp;- vuln: Vulnerability check simulation<br>
&nbsp;&nbsp;- pass: Password strength analysis<br>
&nbsp;&nbsp;- port: Port scanning simulation<br>
&nbsp;&nbsp;- geo: IP geolocation lookup<br>
&nbsp;&nbsp;- clear: Reset terminal<br>
&nbsp;&nbsp;- help: Show this message`;
color = 'text-blue-400';
break;
default:
output = `> Error: Unknown command '${module}'<br>
> Type 'help' for available commands`;
color = 'text-red-400';
}
addToTerminal(output, color);
}
// Handle command input
commandInput.addEventListener('keypress', function(e) {
if (e.key === 'Enter') {
const command = this.value.trim().toLowerCase();
addToTerminal(`> ${command}`, 'text-white');
this.value = '';
if (command) {
runModule(command);
}
}
});
// Initial help message
setTimeout(() => {
addToTerminal('> Type a command or click on the modules to begin.', 'text-blue-400');
}, 1000);
// Make terminal focus on click
terminal.addEventListener('click', () => {
commandInput.focus();
});
</script>
<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=DivineR3aper/tester" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>