92 lines
3.7 KiB
PHP
92 lines
3.7 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">VM v1.0.4-stable</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.</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">
|
|
<div class="form-group">
|
|
<label>VM Preset</label>
|
|
<select id="vm-preset">
|
|
<option value="standard">Standard VM</option>
|
|
<option value="agile">Agile (Lightweight)</option>
|
|
<option value="iron">Ironclad (High Perf)</option>
|
|
<option value="obsidian">Obsidian (Extreme Protection)</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Junk Code</label>
|
|
<select id="junk-code">
|
|
<option value="none">None</option>
|
|
<option value="light">Light</option>
|
|
<option value="heavy">Heavy</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Encrypt Strings</label>
|
|
<select id="encrypt-strings">
|
|
<option value="true">Yes</option>
|
|
<option value="false">No</option>
|
|
</select>
|
|
</div>
|
|
<div style="flex-grow: 1;"></div>
|
|
<button id="protect-btn" class="btn-primary">Protect Script</button>
|
|
</div>
|
|
|
|
<div id="terminal" class="terminal-log">
|
|
<div class="log-entry log-info">[SYSTEM] Luartex VM initialized. Ready for processing.</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|