Skip to content

Commit c92e9ae

Browse files
authored
Update index.html
1 parent c70e59d commit c92e9ae

1 file changed

Lines changed: 42 additions & 64 deletions

File tree

index.html

Lines changed: 42 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -3,85 +3,63 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>pobfus // repository</title>
6+
<title>pobfus // v1.12.01-1</title>
77
<style>
8-
:root { --bg: #050505; --panel: #0a0a0a; --brd: #151515; --txt: #777; --main: #fff; --acc: #00ff88; --scroll: #222; }
9-
* { box-sizing: border-box; font-family: "fira code", monospace; text-transform: lowercase; }
8+
:root { --bg: #020202; --panel: #0a0a0a; --brd: #1a1a1a; --main: #ffffff; --acc: #00ff88; }
9+
* { box-sizing: border-box; font-family: "fira code", monospace; }
1010
body { background: var(--bg); color: var(--main); margin: 0; display: flex; height: 100vh; overflow: hidden; }
11-
12-
.sidebar { width: 420px; min-width: 420px; background: var(--panel); border-right: 1px solid var(--brd); padding: 30px; display: flex; flex-direction: column; gap: 18px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--scroll) transparent; }
13-
.sidebar::-webkit-scrollbar { width: 4px; }
14-
.sidebar::-webkit-scrollbar-thumb { background: var(--scroll); }
15-
16-
.brand-row { display: flex; align-items: center; gap: 15px; margin-bottom: 5px; }
17-
.lua-logo { width: 40px; height: 40px; border-radius: 50%; transition: 0.3s; }
18-
.pulse { animation: heartbeat 1s infinite ease-in-out; filter: drop-shadow(0 0 12px var(--acc)); }
19-
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
2011

21-
.v-badge { background: #111; color: var(--acc); font-size: 10px; padding: 6px 16px; border-radius: 4px; border: 1px solid #222; width: fit-content; font-weight: 800; }
22-
23-
.section-title { font-size: 11px; color: var(--acc); font-weight: 800; margin-top: 25px; letter-spacing: 1.5px; border-bottom: 1px solid #111; padding-bottom: 8px; text-transform: uppercase; }
24-
.log-box { font-size: 10px; color: var(--txt); line-height: 1.7; padding: 12px 0; }
25-
.log-item { margin-bottom: 12px; border-left: 2px solid #1a1a1a; padding-left: 10px; transition: 0.2s; }
26-
.log-item:hover { border-left-color: var(--acc); color: #aaa; }
27-
.log-item b { color: #eee; font-weight: 700; }
12+
/* Sidebar */
13+
.sidebar { width: 380px; background: var(--panel); border-right: 1px solid var(--brd); padding: 40px; display: flex; flex-direction: column; gap: 20px; }
14+
.version-tag { font-size: 9px; color: var(--acc); letter-spacing: 2px; font-weight: bold; border: 1px solid var(--acc); width: fit-content; padding: 2px 8px; border-radius: 20px; text-transform: uppercase; }
15+
.btn { background: var(--acc); color: #000; border: none; padding: 16px; cursor: pointer; border-radius: 4px; font-weight: 900; font-size: 11px; text-transform: uppercase; transition: 0.3s; }
16+
.btn:hover { filter: brightness(1.2); transform: translateY(-1px); }
2817

29-
.btn { background: transparent; border: 1px solid var(--brd); color: var(--txt); padding: 15px; cursor: pointer; border-radius: 4px; text-align: left; width: 100%; transition: 0.2s; font-size: 12px; font-weight: 600; }
30-
.btn-run { background: var(--main); color: #000; border: none; font-weight: 900; margin-top: 10px; }
31-
.btn:hover { border-color: var(--acc); color: var(--main); background: #0c0c0c; }
18+
/* Editor */
19+
.main { flex: 1; display: flex; background: #050505; }
20+
.editor-container { flex: 1; display: flex; flex-direction: column; position: relative; border-right: 1px solid var(--brd); }
21+
textarea { width: 100%; height: 100%; padding: 40px; background: transparent; border: none; outline: none; font-size: 13px; line-height: 1.8; position: absolute; white-space: pre; overflow: auto; color: #888; z-index: 2; resize: none; }
22+
#out { background: #010101; color: var(--acc); z-index: 3; }
3223

33-
.main { flex: 1; display: flex; background: var(--brd); }
34-
.editor-container { flex: 1; display: flex; flex-direction: column; background: var(--bg); position: relative; }
35-
textarea { flex: 1; background: transparent; border: none; color: var(--main); padding: 45px; resize: none; outline: none; font-size: 13px; line-height: 1.8; }
24+
/* Status Overlay */
25+
#output-loader { display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #020202; z-index: 100; flex-direction: column; align-items: center; justify-content: center; }
26+
.lua-logo { width: 80px; margin-bottom: 30px; transition: 0.5s; filter: drop-shadow(0 0 10px rgba(0,255,136,0.2)); }
27+
.lua-logo.fade { opacity: 0.1; transform: scale(0.9) rotate(5deg); }
3628

37-
#overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.98); z-index: 1000; flex-direction: column; align-items: center; justify-content: center; }
38-
.bar-bg { width: 350px; height: 1px; background: #111; margin-top: 25px; }
39-
.bar-fill { width: 0%; height: 100%; background: var(--acc); transition: width 5s linear; }
29+
#status-log { height: 80px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; overflow: hidden; }
30+
.status-entry { font-size: 10px; color: var(--acc); margin-top: 6px; animation: popUp 0.3s forwards; text-transform: uppercase; letter-spacing: 1px; }
31+
.status-entry.dim { color: #222; }
32+
33+
.progress-bg { width: 250px; height: 1px; background: #111; margin-top: 30px; }
34+
.progress-fill { width: 0%; height: 100%; background: var(--acc); transition: 0.3s; }
35+
36+
@keyframes popUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
4037
</style>
4138
</head>
4239
<body>
43-
<div id="overlay">
44-
<div id="stxt" style="font-size: 11px; letter-spacing: 3px; color: var(--acc); font-weight: 900;">CALIBRATING GHOST CORE...</div>
45-
<div class="bar-bg"><div class="bar-fill" id="lbar"></div></div>
46-
</div>
47-
4840
<div class="sidebar">
49-
<div class="brand-row">
50-
<img src="https://i.ibb.co/HThqqB3k/icons8-lua-logo.jpg" class="lua-logo" id="logo" alt="lua">
51-
<div style="font-size: 26px; font-weight: 900; letter-spacing: -1px;">pobfus</div>
52-
</div>
53-
<div class="v-badge">v1.11.06 ghost-core</div>
54-
55-
<button class="btn btn-run" id="go">execute process</button>
56-
<button class="btn" id="dl">download build</button>
57-
<button class="btn" id="cl">purge buffer</button>
58-
59-
<div class="section-title">Timeline // Rapid-Patches</div>
60-
<div class="log-box">
61-
<div class="log-item"><b>1.12.00:</b> [nebula] bytecode virtualization. (upcoming)</div>
62-
<div class="log-item"><b>1.11.06:</b> current build; synapse z / delta optimized.</div>
63-
<div class="log-item"><b>1.11.05:</b> introduced <b>protected metatables</b> to block registry dumps.</div>
64-
<div class="log-item"><b>1.11.03-2:</b> hotfix for logic-leakage and table index collision.</div>
65-
<div class="log-item"><b>1.11.01:</b> prototype <b>registry-shuffling</b>; abandoned linear masking.</div>
66-
<div class="log-item"><b>1.0.6 beta:</b> fixed failing js engine and syntax output.</div>
67-
<div class="log-item"><b>0.7.00:</b> genesis era; automated xor masking.</div>
68-
</div>
69-
70-
<div class="section-title">Maintenance Record</div>
71-
<div class="log-box">
72-
the 1.11 series was defined by rapid evolution. <b>v1.11.01</b> proved that fragmented registries were the future. <b>v1.11.03-2</b> was a critical hotfix that stopped "ghost-collisions" where code fragments would overwrite each other. <b>v1.11.05</b> finaly sealed the engine with the protected metatable layer.
73-
</div>
74-
75-
<div style="margin-top:auto; padding-top:25px; font-size:10px; color:#222; text-align: center;">
76-
authorized: <b>tenringsofdoom1x.github.io</b>
41+
<div class="version-tag">STABLE v1.12.01-1</div>
42+
<div style="font-size: 32px; font-weight: 900; letter-spacing: -2px; color: var(--main);">pobfus</div>
43+
<button class="btn" id="go">Protect Script</button>
44+
<div style="font-size: 11px; color: #444; line-height: 1.6; text-transform: lowercase;">
45+
industrial grade lua obfuscation. <br>
46+
premium tamper response: <b>active</b>.
7747
</div>
7848
</div>
7949

8050
<div class="main">
81-
<div class="editor-container" style="border-right: 1px solid var(--brd);"><textarea id="in" spellcheck="false" placeholder="-- source_input"></textarea></div>
82-
<div class="editor-container"><textarea id="out" spellcheck="false" readonly placeholder="-- ghost_output"></textarea></div>
51+
<div class="editor-container">
52+
<textarea id="in" spellcheck="false" placeholder="-- input source code"></textarea>
53+
</div>
54+
<div class="editor-container">
55+
<div id="output-loader">
56+
<img src="https://www.lua.org/images/lua-logo.gif" class="lua-logo" id="luaImg">
57+
<div id="status-log"></div>
58+
<div class="progress-bg"><div class="progress-fill" id="lbar"></div></div>
59+
</div>
60+
<textarea id="out" spellcheck="false" readonly placeholder="-- protected output"></textarea>
61+
</div>
8362
</div>
84-
8563
<script src="script.js"></script>
8664
</body>
8765
</html>

0 commit comments

Comments
 (0)