|
8 | 8 | </head> |
9 | 9 | <body> |
10 | 10 |
|
| 11 | + <div id="loader"> |
| 12 | + <div class="loader-content"> |
| 13 | + <svg height="48" viewBox="0 0 16 16" width="48" fill="white"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg> |
| 14 | + <div class="loading-bar"><div class="progress"></div></div> |
| 15 | + <p id="loader-text">Initialising pobfus v1.12.01-1...</p> |
| 16 | + </div> |
| 17 | + </div> |
| 18 | + |
11 | 19 | <div id="sidebar"> |
12 | 20 | <div class="brand"> |
13 | 21 | <h2>pobfus</h2> |
14 | 22 | <div class="verified">✓ Developer Edition</div> |
15 | 23 | </div> |
16 | 24 |
|
17 | 25 | <nav id="sidebar-scroll"> |
18 | | - <div class="nav-item active-nav">Obfuscator</div> |
| 26 | + <div class="nav-item active-nav">Master Engine</div> |
19 | 27 |
|
20 | 28 | <div class="shame-section"> |
21 | 29 | <h4>💀 Wall of Shame</h4> |
22 | 30 | <div class="shame-entry"> |
23 | 31 | <b>Grok AI (xAI)</b><br> |
24 | | - <span>Failed to resolve XOR-fold virtualization on v1.11.x. Logic remained sealed. Status: <font color="#ff3e3e">DEFEATED</font></span> |
| 32 | + <span>Attempted v1.11 bypass. Deep-Fold logic remained unreadable. Status: <font color="#ff3e3e">DEFEATED</font></span> |
25 | 33 | </div> |
26 | 34 | </div> |
27 | 35 |
|
28 | 36 | <div class="logs-container"> |
29 | | - <h4>System History</h4> |
30 | | - <div class="log-entry"><b>v1.12.01-1</b><br>Full-Spectrum Obfuscation. Warn logic is now encrypted via hex-XOR.</div> |
31 | | - <div class="log-entry"><b>v1.11.05</b><br>Delta Executor optimization. Fixed bit32 overflow for mobile.</div> |
| 37 | + <h4>Repository History</h4> |
| 38 | + <div class="log-entry"><b>v1.12.01-1</b><br>Deep-Fold Integration. All system strings (Domain, Name, Hooks) are now virtualized.</div> |
| 39 | + <div class="log-entry"><b>v1.11.05</b><br>Delta/Mobile bit32 fix.</div> |
32 | 40 | </div> |
33 | 41 | </nav> |
34 | 42 |
|
35 | 43 | <div class="status-box"> |
36 | | - <div class="status-label">LOGGING PIPELINE</div> |
37 | | - <div class="status-val">PRIVATE & ENCRYPTED</div> |
| 44 | + <div class="status-label">REMOTE PIPELINE</div> |
| 45 | + <div class="status-val">ESTABLISHED</div> |
38 | 46 | </div> |
39 | 47 | </div> |
40 | 48 |
|
41 | 49 | <main id="content"> |
42 | 50 | <header> |
43 | | - <h1>Protection Workspace</h1> |
44 | | - <p>Advanced Lua virtualization with centralized leaker tracking and automated server hooks.</p> |
| 51 | + <input type="text" id="scriptName" placeholder="Untitled Project" class="script-title-input"> |
| 52 | + <div class="header-controls"> |
| 53 | + <button id="goBtn">Protect & Sync</button> |
| 54 | + <button id="copyBtn" class="secondary">Copy Output</button> |
| 55 | + <button id="dlBtn" class="secondary" disabled>Download</button> |
| 56 | + </div> |
45 | 57 | </header> |
46 | 58 |
|
47 | | - <div class="io-wrapper"> |
48 | | - <input type="text" id="scriptName" placeholder="Project Name (e.g., Sky Hub V2)" style="width: 100%; padding: 12px; background: #050505; border: 1px solid var(--border); color: white; border-radius: 8px; margin-bottom: 15px; outline: none; font-family: sans-serif;"> |
49 | | - |
50 | | - <textarea id="input" placeholder="-- Paste your raw Lua code here..."></textarea> |
51 | | - |
52 | | - <div class="controls"> |
53 | | - <button id="goBtn">Protect Script</button> |
54 | | - <button id="copyBtn" class="secondary">Copy to Clipboard</button> |
55 | | - <button id="dlBtn" class="secondary" disabled>Download .lua</button> |
| 59 | + <div class="dual-pane"> |
| 60 | + <div class="pane"> |
| 61 | + <label>DEOBFUSCATED (RAW)</label> |
| 62 | + <textarea id="input" placeholder="-- Paste source here..."></textarea> |
| 63 | + </div> |
| 64 | + <div class="pane"> |
| 65 | + <label>OBFUSCATED (POBFUS)</label> |
| 66 | + <textarea id="output" readonly placeholder="-- Encrypted output..."></textarea> |
56 | 67 | </div> |
57 | | - |
58 | | - <textarea id="output" readonly placeholder="pobfus-protected code will appear here..."></textarea> |
59 | 68 | </div> |
60 | | - |
61 | | - <div id="history">Build Instance: Ready</div> |
62 | 69 | </main> |
63 | 70 |
|
64 | 71 | <script src="script.js"></script> |
65 | 72 | </body> |
66 | | -</html> |
| 73 | + </html> |
0 commit comments