Skip to content

Commit b2ab67f

Browse files
authored
Update index.html
1 parent eaea2da commit b2ab67f

1 file changed

Lines changed: 49 additions & 75 deletions

File tree

index.html

Lines changed: 49 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -3,90 +3,64 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>pobfus // v1.12.01-1</title>
7-
<style>
8-
:root { --bg: #0d1117; --panel: #161b22; --brd: #30363d; --main: #c9d1d9; --acc: #238636; --gh: #f0f6fc; }
9-
* { box-sizing: border-box; font-family: -apple-system, "Fira Code", monospace; text-transform: lowercase; }
10-
body { background: var(--bg); color: var(--main); margin: 0; display: flex; height: 100vh; overflow: hidden; }
11-
12-
.sidebar { width: 380px; background: var(--panel); border-right: 1px solid var(--brd); padding: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 10; }
13-
.version-tag { font-size: 10px; color: #8b949e; border: 1px solid var(--brd); width: fit-content; padding: 2px 8px; border-radius: 6px; }
14-
.nav-btn { background: var(--acc); color: #fff; border: 1px solid rgba(240,246,252,0.1); padding: 12px; cursor: pointer; border-radius: 6px; font-weight: 600; font-size: 13px; }
15-
.sec-btn { background: #21262d; color: #c9d1d9; border: 1px solid var(--brd); padding: 10px; cursor: pointer; border-radius: 6px; font-size: 12px; margin-top: 5px; width: 100%; }
16-
17-
.main { flex: 1; display: flex; background: #010409; position: relative; }
18-
.editor-container { flex: 1; display: flex; flex-direction: column; position: relative; border-right: 1px solid var(--brd); }
19-
textarea { width: 100%; height: 100%; padding: 40px; background: transparent; border: none; outline: none; font-size: 13px; line-height: 1.8; color: #c9d1d9; z-index: 5; resize: none; }
20-
#out { background: #0d1117; color: #7ee787; }
6+
<title>pobfus | tenringsofdoom1x.github.io</title>
7+
<link rel="stylesheet" href="style.css">
8+
</head>
9+
<body>
2110

22-
/* FIXED LOADER OVERLAY */
23-
#output-loader {
24-
display: none;
25-
position: absolute;
26-
inset: 0;
27-
background: rgba(13, 17, 23, 0.98);
28-
z-index: 1000;
29-
flex-direction: column;
30-
align-items: center;
31-
justify-content: center;
32-
}
11+
<div id="sidebar">
12+
<div class="brand">
13+
<h2>pobfus</h2>
14+
<div class="verified">✓ Developer Edition</div>
15+
</div>
3316

34-
#gh-spinner {
35-
width: 60px;
36-
fill: var(--gh);
37-
margin-bottom: 30px;
38-
will-change: transform;
39-
}
40-
.spinning { animation: ghSpin 1s linear infinite; }
17+
<nav id="sidebar-scroll">
18+
<div class="nav-item active-nav">Obfuscator</div>
19+
20+
<div class="shame-section">
21+
<h4>💀 Wall of Shame</h4>
22+
<div class="shame-entry">
23+
<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>
25+
</div>
26+
</div>
4127

42-
#status-log {
43-
height: 80px;
44-
display: flex;
45-
flex-direction: column;
46-
align-items: center;
47-
justify-content: center;
48-
gap: 8px;
49-
}
50-
.status-entry {
51-
font-size: 12px;
52-
color: #58a6ff;
53-
font-weight: 500;
54-
animation: slideIn 0.3s ease forwards;
55-
}
56-
57-
.p-bar { width: 240px; height: 2px; background: #21262d; border-radius: 10px; margin-top: 30px; overflow: hidden; }
58-
.p-fill { width: 0%; height: 100%; background: var(--acc); transition: width 0.4s ease; }
28+
<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>
32+
</div>
33+
</nav>
5934

60-
@keyframes ghSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
61-
@keyframes slideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
62-
</style>
63-
</head>
64-
<body>
65-
<div class="sidebar">
66-
<div class="version-tag">v1.12.01-1 stable</div>
67-
<div style="font-size: 24px; font-weight: 600;">pobfus</div>
68-
<button class="nav-btn" id="go">protect script</button>
69-
<button class="sec-btn" id="clear">clear code</button>
70-
<button class="sec-btn" id="dl" disabled style="opacity:0.5">download .lua</button>
71-
72-
<div style="margin-top:20px; font-size:11px; color:#444; border-top:1px solid #30363d; padding-top:15px;">
73-
premium tamper enabled:  
35+
<div class="status-box">
36+
<div class="status-label">LOGGING PIPELINE</div>
37+
<div class="status-val">PRIVATE & ENCRYPTED</div>
7438
</div>
7539
</div>
7640

77-
<div class="main">
78-
<div class="editor-container">
79-
<textarea id="in" spellcheck="false" placeholder="-- paste source here"></textarea>
80-
</div>
81-
<div class="editor-container">
82-
<div id="output-loader">
83-
<svg id="gh-spinner" viewBox="0 0 16 16"><path d="M8 0c4.42 0 8 3.58 8 8a8.013 8.013 0 0 1-5.45 7.59c-.4.08-.55-.17-.55-.38 0-.27.01-1.13.01-2.2 0-.75-.25-1.23-.54-1.48 1.78-.2 3.65-.88 3.65-3.95 0-.88-.31-1.59-.82-2.15.08-.2.36-1.02-.08-2.12 0 0-.67-.22-2.2.82-.64-.18-1.32-.27-2-.27-.68 0-1.36.09-2 .27-1.53-1.03-2.2-.82-2.2-.82-.44 1.1-.16 1.92-.08 2.12-.51.56-.82 1.28-.82 2.15 0 3.06 1.86 3.75 3.64 3.95-.23.2-.44.55-.51 1.07-.46.21-1.61.55-2.33-.66-.15-.24-.6-.83-1.23-.82-.67.01-.27.38.01.53.34.19.73.9.82 1.13.16.45.68 1.31 2.69.94 0 .67.01 1.3.01 1.49 0 .21-.15.45-.55.38A7.995 7.995 0 0 1 0 8c0-4.42 3.58-8 8-8Z"></path></svg>
84-
<div id="status-log"></div>
85-
<div class="p-bar"><div class="p-fill" id="lbar"></div></div>
41+
<main id="content">
42+
<header>
43+
<h1>Protection Workspace</h1>
44+
<p>Advanced Lua virtualization with centralized leaker tracking and automated server hooks.</p>
45+
</header>
46+
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>
8656
</div>
87-
<textarea id="out" spellcheck="false" readonly placeholder="-- protected output"></textarea>
57+
58+
<textarea id="output" readonly placeholder="pobfus-protected code will appear here..."></textarea>
8859
</div>
89-
</div>
60+
61+
<div id="history">Build Instance: Ready</div>
62+
</main>
63+
9064
<script src="script.js"></script>
9165
</body>
9266
</html>

0 commit comments

Comments
 (0)