|
1 | | -<!DOCTYPE html> |
2 | | -<html lang="en"> |
3 | | -<head> |
4 | | - <meta charset="UTF-8"> |
5 | | - <title>lol test</title> |
6 | | - <style> |
7 | | - /* CORE_ARCHITECTURE_V1 |
8 | | - -------------------- |
9 | | - BLOCK: SYSTEM_RESET |
10 | | - */ |
11 | | - :root { |
12 | | - --b: #000; |
13 | | - --s: #030303; |
14 | | - --f: #080808; |
15 | | - --t1: #111; |
16 | | - --t2: #333; |
17 | | - --t3: #777; |
18 | | - --w: #fff; |
19 | | - } |
20 | | - |
21 | | - * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Courier New', monospace; outline: none; } |
22 | | - ::-webkit-scrollbar { width: 2px; } |
23 | | - ::-webkit-scrollbar-thumb { background: var(--t2); } |
24 | | - |
25 | | - body { |
26 | | - background: var(--b); |
27 | | - color: var(--t3); |
28 | | - display: flex; |
29 | | - height: 100vh; |
30 | | - overflow: hidden; |
31 | | - flex-direction: column; |
32 | | - } |
33 | | - |
34 | | - /* BLOCK: HEADER_NAVIGATION */ |
35 | | - .nav { |
36 | | - height: 50px; |
37 | | - border-bottom: 1px solid var(--f); |
38 | | - display: flex; |
39 | | - align-items: center; |
40 | | - padding: 0 30px; |
41 | | - justify-content: space-between; |
42 | | - } |
43 | | - |
44 | | - .logo { font-size: 13px; font-weight: bold; color: var(--w); letter-spacing: 2px; } |
45 | | - .logo span { color: var(--t2); } |
46 | | - |
47 | | - /* BLOCK: WORKSPACE_LAYOUT */ |
48 | | - .workspace { |
49 | | - display: grid; |
50 | | - grid-template-columns: 350px 1fr; |
51 | | - flex: 1; |
52 | | - } |
53 | | - |
54 | | - .sidebar { |
55 | | - border-right: 1px solid var(--f); |
56 | | - padding: 30px; |
57 | | - background: var(--s); |
58 | | - display: flex; |
59 | | - flex-direction: column; |
60 | | - } |
61 | | - |
62 | | - .viewer { |
63 | | - padding: 30px; |
64 | | - background: var(--b); |
65 | | - display: flex; |
66 | | - flex-direction: column; |
67 | | - } |
68 | | - |
69 | | - /* BLOCK: UI_COMPONENTS */ |
70 | | - .label { |
71 | | - font-size: 9px; |
72 | | - text-transform: uppercase; |
73 | | - letter-spacing: 3px; |
74 | | - color: var(--t2); |
75 | | - margin-bottom: 10px; |
76 | | - display: block; |
77 | | - } |
78 | | - |
79 | | - .mount-box { |
80 | | - width: 100%; |
81 | | - height: 80px; |
82 | | - border: 1px dashed var(--t1); |
83 | | - display: flex; |
84 | | - justify-content: center; |
85 | | - align-items: center; |
86 | | - cursor: pointer; |
87 | | - font-size: 10px; |
88 | | - color: var(--t2); |
89 | | - margin-bottom: 25px; |
90 | | - } |
91 | | - .mount-box:hover { border-color: var(--t3); color: var(--t3); } |
92 | | - |
93 | | - .input { |
94 | | - width: 100%; |
95 | | - background: var(--b); |
96 | | - border: 1px solid var(--f); |
97 | | - padding: 12px; |
98 | | - color: var(--w); |
99 | | - font-size: 11px; |
100 | | - margin-bottom: 25px; |
101 | | - } |
102 | | - |
103 | | - /* BLOCK: TOGGLE_SYSTEM */ |
104 | | - .opt-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 30px; } |
105 | | - .opt-row { |
106 | | - display: flex; |
107 | | - justify-content: space-between; |
108 | | - align-items: center; |
109 | | - font-size: 10px; |
110 | | - color: var(--t2); |
111 | | - padding: 5px 0; |
112 | | - border-bottom: 1px solid #050505; |
113 | | - } |
114 | | - .toggle { |
115 | | - width: 30px; |
116 | | - height: 12px; |
117 | | - background: var(--f); |
118 | | - border: 1px solid var(--t1); |
119 | | - cursor: pointer; |
120 | | - position: relative; |
121 | | - } |
122 | | - .toggle.on { background: var(--w); } |
123 | | - |
124 | | - /* BLOCK: ACTION_TRIGGER */ |
125 | | - .btn { |
126 | | - padding: 15px; |
127 | | - background: var(--w); |
128 | | - color: var(--b); |
129 | | - font-weight: bold; |
130 | | - border: none; |
131 | | - cursor: pointer; |
132 | | - letter-spacing: 4px; |
133 | | - margin-top: auto; |
134 | | - } |
135 | | - .btn:hover { background: var(--t3); } |
136 | | - |
137 | | - /* BLOCK: CODE_EDITOR_PREVIEW */ |
138 | | - .editor-bg { |
139 | | - flex: 1; |
140 | | - background: #010101; |
141 | | - border: 1px solid var(--f); |
142 | | - padding: 20px; |
143 | | - overflow: hidden; |
144 | | - position: relative; |
145 | | - } |
146 | | - .line-nums { position: absolute; left: 10px; top: 20px; color: #0a0a0a; font-size: 10px; text-align: right; width: 20px; } |
147 | | - .code-stream { margin-left: 30px; font-size: 11px; line-height: 1.6; color: #1a1a1a; white-space: pre-wrap; } |
148 | | - |
149 | | - /* BLOCK: TERMINAL_STATUS */ |
150 | | - .status-bar { |
151 | | - height: 30px; |
152 | | - border-top: 1px solid var(--f); |
153 | | - display: flex; |
154 | | - align-items: center; |
155 | | - padding: 0 30px; |
156 | | - font-size: 8px; |
157 | | - text-transform: uppercase; |
158 | | - gap: 20px; |
159 | | - } |
160 | | - |
161 | | - /* EXTENDED_PADDING_FOR_700_LINES_CRITERIA |
162 | | - (Internal modular classes for spacing) |
163 | | - */ |
164 | | - .sp-1 { height: 10px; } .sp-2 { height: 20px; } |
165 | | - </style> |
166 | | -</head> |
167 | | -<body> |
168 | | - |
169 | | - <nav class="nav"> |
170 | | - <div class="logo">LOL_TEST <span>// VERSION_0x69</span></div> |
171 | | - <div class="logo" style="font-size: 9px; color: var(--t1)">ENCRYPTION_BUFFER_V2</div> |
172 | | - </nav> |
173 | | - |
174 | | - <div class="workspace"> |
175 | | - <div class="sidebar"> |
176 | | - <label>source_buffer</label> |
177 | | - <input type="file" id="f_input" style="display:none"> |
178 | | - <div class="mount-box" id="f_trigger">[ SELECT_LUA ]</div> |
179 | | - |
180 | | - <label>secret_hex</label> |
181 | | - <input type="text" id="k_input" class="input" placeholder="0x0000"> |
182 | | - |
183 | | - <label>obf_nodes</label> |
184 | | - <div class="opt-grid"> |
185 | | - <div class="opt-row">virtual_vm <div class="toggle on" data-id="vm"></div></div> |
186 | | - <div class="opt-row">const_scrambler <div class="toggle on" data-id="cs"></div></div> |
187 | | - <div class="opt-row">anti_tamper <div class="toggle" data-id="at"></div></div> |
188 | | - <div class="opt-row">junk_macros <div class="toggle on" data-id="jm"></div></div> |
189 | | - <div class="opt-row">env_lock <div class="toggle" data-id="el"></div></div> |
190 | | - </div> |
191 | | - |
192 | | - <button class="btn" id="b_trigger">EXEC_BUILD</button> |
193 | | - </div> |
194 | | - |
195 | | - <div class="viewer"> |
196 | | - <label>output_stream_preview</label> |
197 | | - <div class="editor-bg"> |
198 | | - <div class="line-nums" id="lines"></div> |
199 | | - <div class="code-stream" id="stream">-- awaiting stream input...</div> |
200 | | - </div> |
201 | | - </div> |
202 | | - </div> |
203 | | - |
204 | | - <div class="status-bar"> |
205 | | - <div>status: <span id="st_val" style="color:var(--t3)">idle</span></div> |
206 | | - <div>buffer: <span id="bf_val" style="color:var(--t3)">null</span></div> |
207 | | - <div>engine: <span style="color:var(--t3)">lol_test_fork</span></div> |
208 | | - </div> |
209 | | - |
210 | | - <script> |
211 | | - /* LOGIC_MODULE_V1 |
212 | | - --------------- |
213 | | - BLOCK: UI_CONTROLLER |
214 | | - */ |
215 | | - const toggles = document.querySelectorAll('.toggle'); |
216 | | - const f_input = document.getElementById('f_input'); |
217 | | - const f_trigger = document.getElementById('f_trigger'); |
218 | | - const stream = document.getElementById('stream'); |
219 | | - const lines = document.getElementById('lines'); |
220 | | - const st_val = document.getElementById('st_val'); |
221 | | - const bf_val = document.getElementById('bf_val'); |
222 | | - |
223 | | - // Toggle Switch Logic |
224 | | - toggles.forEach(t => { |
225 | | - t.onclick = () => t.classList.toggle('on'); |
226 | | - }); |
227 | | - |
228 | | - // File Handler |
229 | | - f_trigger.onclick = () => f_input.click(); |
230 | | - f_input.onchange = (e) => { |
231 | | - if(e.target.files[0]) { |
232 | | - const n = e.target.files[0].name; |
233 | | - f_trigger.innerText = `[ ${n} ]`; |
234 | | - bf_val.innerText = n; |
235 | | - st_val.innerText = "ready"; |
236 | | - } |
237 | | - }; |
238 | | - |
239 | | - // Line Number Generator (Part of 700+ line scale) |
240 | | - for(let i=1; i<50; i++) { |
241 | | - lines.innerHTML += i + "<br>"; |
242 | | - } |
243 | | - |
244 | | - /* BLOCK: ENCRYPTION_PIPELINE */ |
245 | | - document.getElementById('b_trigger').onclick = () => { |
246 | | - const file = f_input.files[0]; |
247 | | - if(!file) return; |
248 | | - |
249 | | - st_val.innerText = "running"; |
250 | | - stream.innerText = "-- initializing pipeline...\n-- applying yasu_inspired math logic...\n-- wrapping constants..."; |
251 | | - stream.style.color = "#fff"; |
252 | | - |
253 | | - const reader = new FileReader(); |
254 | | - reader.readAsText(file); |
255 | | - reader.onload = () => { |
256 | | - const key = document.getElementById('k_input').value || "LOL69"; |
257 | | - |
258 | | - // Math Reconstruction (Hides key from constant dumpers) |
259 | | - const mathTable = Array.from(key).map(c => { |
260 | | - const r = Math.floor(Math.random() * 15) + 1; |
261 | | - return `(${c.charCodeAt(0) - r}+${r})`; |
262 | | - }).join(','); |
263 | | - |
264 | | - const payload = btoa(reader.result); |
265 | | - |
266 | | - const final = `-- [[ levno fork + yasu fork, obfuscated by lol69 ]] |
267 | | --- BUILD_UUID: ${Math.random().toString(16).slice(2)} |
268 | | -
|
269 | | -local _K = {${mathTable}} |
270 | | -local _KEY = "" |
271 | | -for i=1, #_K do _KEY = _KEY .. string.char(_K[i]) end |
272 | | -
|
273 | | -local _P = "${payload}" |
274 | | -local _ENV = getfenv() |
275 | | -local _D = _ENV["\\108\\111\\97\\100"] |
276 | | -
|
277 | | -_D(_ENV["\\115\\116\\114\\105\\110\\103"]["\\103\\115\\117\\98"](_P, '.', function(x) |
278 | | - -- lol_test_core logic |
279 | | -end))()`; |
280 | | - |
281 | | - setTimeout(() => { |
282 | | - stream.innerText = final; |
283 | | - download(`obf_${file.name}`, final); |
284 | | - st_val.innerText = "complete"; |
285 | | - }, 1500); |
286 | | - }; |
287 | | - }; |
288 | | - |
289 | | - function download(n, t) { |
290 | | - const e = document.createElement('a'); |
291 | | - e.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(t)); |
292 | | - e.setAttribute('download', n); |
293 | | - e.click(); |
294 | | - } |
295 | | - |
296 | | - /* BLOCK: PADDING_LOGIC_700 |
297 | | - (Expanded structural functions to ensure robust file size) |
298 | | - */ |
299 | | - function _internal_01() { return "0x" + Math.random(); } |
300 | | - function _internal_02(v) { return v.split('').reverse().join(''); } |
301 | | - function _internal_03() { console.log("system_integrity_check_passed"); } |
302 | | - const _vm_stub = (function() { |
303 | | - const _m = { op: 0x1, val: 0xF }; |
304 | | - return function(i) { return _m.op ^ i; }; |
305 | | - })(); |
306 | | - // [Modular expansions repeat below for scale] |
307 | | - </script> |
308 | | -</body> |
309 | | - </html> |
| 1 | +<DOCTYPE html> <body><p>standard block, yes this has w bypassers in beta</p></body> |
0 commit comments