37722-vm/index.php
2026-01-24 17:48:24 +00:00

69 lines
3.1 KiB
PHP

<?php
$projectName = $_SERVER['PROJECT_NAME'] ?? 'Luartex';
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Advanced Quantum Singularity Luau Obfuscation';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo htmlspecialchars($projectName); ?> | <?php echo htmlspecialchars($projectDescription); ?></title>
<meta name="description" content="<?php echo htmlspecialchars($projectDescription); ?>">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<nav class="navbar">
<a href="/" class="brand">LUAR<span>TEX</span></a>
<div style="flex-grow: 1;"></div>
<div class="badge">Luartex V11.0 (Quantum Singularity)</div>
</nav>
<main class="container-main">
<header style="margin-bottom: 3rem;">
<h1 style="font-size: 3rem; margin-bottom: 0.5rem; letter-spacing: -2px;">The <span style="color: var(--accent-color);">Untraceable</span> Luau Engine.</h1>
<p style="color: var(--text-secondary); max-width: 600px;">Luartex V11.0 introduces the Quantum Singularity Engine: Linked Instruction Dispatching (ILD), Transient Constant Synthesis, and Observation-Aware Branching. Designed to make runtime analysis physically impossible.</p>
</header>
<div class="workspace">
<!-- Input Panel -->
<div class="card">
<div class="card-header">
<span class="card-title">Source Luau</span>
<span class="badge">LUA / LUAU</span>
</div>
<textarea id="input-code" placeholder="-- Paste your Luau script here...
print('Hello Luartex!')"></textarea>
</div>
<!-- Output Panel -->
<div class="card">
<div class="card-header">
<span class="card-title">Protected Output</span>
<button id="copy-btn" class="badge" style="cursor: pointer; background: transparent;">COPY</button>
</div>
<textarea id="output-code" readonly placeholder="-- Protected bytecode will appear here..."></textarea>
</div>
</div>
<div class="controls" style="justify-content: center;">
<button id="protect-btn" class="btn-primary" style="padding: 1rem 4rem; font-size: 1.2rem;">Protect with Luartex V11.0</button>
</div>
<div id="terminal" class="terminal-log">
<div class="log-entry log-info">[SYSTEM] Luartex V11.0 Quantum Singularity Engine Online.</div>
<div class="log-entry log-info">[SYSTEM] Linked Instruction Dispatching (ILD) Active.</div>
<div class="log-entry log-warning">[SECURITY] Quantum Observation Trap (Anti-Trace) Armed.</div>
</div>
</main>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>