67 lines
2.9 KiB
PHP
67 lines
2.9 KiB
PHP
<?php
|
|
$projectName = $_SERVER['PROJECT_NAME'] ?? 'Luartex';
|
|
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Enterprise Luau Obfuscation & Custom VM Protection';
|
|
?>
|
|
<!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">Hyperion V10.0 (DIP)</div>
|
|
</nav>
|
|
|
|
<main class="container-main">
|
|
<header style="margin-bottom: 3rem;">
|
|
<h1 style="font-size: 3rem; margin-bottom: 0.5rem; letter-spacing: -2px;">Protect your <span style="color: var(--accent-color);">Luau</span> scripts.</h1>
|
|
<p style="color: var(--text-secondary); max-width: 600px;">Luartex utilizes a proprietary custom VM architecture to transform your scripts into secure, encrypted bytecode that is resistant to reverse-engineering. Optimized for Roblox Executors.</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;">Obfuscate with Hyperion V10.0</button>
|
|
</div>
|
|
|
|
<div id="terminal" class="terminal-log">
|
|
<div class="log-entry log-info">[SYSTEM] Hyperion V10.0 Engine Initialized. Dynamic Instruction Polymorphism (DIP) & Seed Evolution Active.</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|