Skip to content

Commit 168b5f4

Browse files
authored
Update index.html
1 parent 4d07e47 commit 168b5f4

1 file changed

Lines changed: 32 additions & 105 deletions

File tree

index.html

Lines changed: 32 additions & 105 deletions
Original file line numberDiff line numberDiff line change
@@ -1,113 +1,40 @@
11
<!DOCTYPE html>
2-
<html lang="ja">
2+
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Index of /</title>
7-
<style>
8-
/* --- CORE STYLES --- */
9-
body {
10-
font-family: "Courier New", Courier, monospace;
11-
background-color: #ffffff;
12-
color: #1a1a1a;
13-
padding: 30px;
14-
line-height: 1.5;
15-
}
16-
pre {
17-
white-space: pre-wrap;
18-
word-wrap: break-word;
19-
}
20-
a {
21-
color: #0000EE;
22-
text-decoration: none;
23-
}
24-
a:hover {
25-
text-decoration: underline;
26-
background-color: #f0f0f0;
27-
}
28-
29-
/* --- GLITCH ANIMATION --- */
30-
.glitch-container {
31-
font-family: monospace;
32-
font-size: 0.9em;
33-
color: #666;
34-
margin: 50px 0;
35-
}
36-
37-
.glitch-data {
38-
position: relative;
39-
display: inline-block;
40-
color: #ff0055; /* Glitch color */
41-
font-weight: bold;
42-
animation: glitch-skew 0.5s infinite linear alternate-reverse;
43-
}
44-
45-
.glitch-data::before, .glitch-data::after {
46-
content: attr(data-text);
47-
position: absolute;
48-
top: 0;
49-
left: 0;
50-
width: 100%;
51-
height: 100%;
52-
background: white;
53-
clip: rect(0, 0, 0, 0);
54-
}
55-
56-
.glitch-data::before {
57-
left: 2px;
58-
text-shadow: -2px 0 #ff00c1;
59-
animation: glitch-anim 3s infinite linear alternate-reverse;
60-
}
61-
62-
.glitch-data::after {
63-
left: -2px;
64-
text-shadow: -2px 0 #00fff9;
65-
animation: glitch-anim2 2s infinite linear alternate-reverse;
66-
}
67-
68-
@keyframes glitch-anim {
69-
0% { clip: rect(10px, 9999px, 20px, 0); }
70-
20% { clip: rect(30px, 9999px, 40px, 0); }
71-
100% { clip: rect(5px, 9999px, 15px, 0); }
72-
}
73-
74-
@keyframes glitch-anim2 {
75-
0% { clip: rect(40px, 9999px, 60px, 0); }
76-
100% { clip: rect(10px, 9999px, 25px, 0); }
77-
}
78-
79-
@keyframes glitch-skew {
80-
0% { transform: skew(3deg); }
81-
50% { transform: skew(-3deg); }
82-
100% { transform: skew(0deg); }
83-
}
84-
</style>
6+
<title>Pobfus 0.7 | Beta</title>
7+
<link rel="stylesheet" href="style.css">
858
</head>
869
<body>
87-
88-
<div style="border-bottom: 1px solid #ccc; padding-bottom: 10px; margin-bottom: 20px;">
89-
<strong>TENRINGSOFDOOM1X / REPOSITORY</strong>
90-
</div>
91-
92-
<pre>
93-
# Index of /tenringsofdoom1x.github.io
94-
------------------------------------------------------------
95-
[DIR] <a href="./">..</a>
96-
[TXT] <a href="プロジェクトステイアライブ.txt">プロジェクトステイアライブ.txt</a>
97-
[MD] <a href="README.md">README.md</a>
98-
------------------------------------------------------------
99-
</pre>
100-
101-
<div class="glitch-container">
102-
Serving your
103-
<span class="glitch-data" data-text="U2FsdGVkX19SrxXyqbZ9tVt/vyLU2tRh+cHl15TXhkE=">
104-
U2FsdGVkX19SrxXyqbZ9tVt/vyLU2tRh+cHl15TXhkE=
105-
</span>
106-
</div>
107-
108-
<div style="font-size: 0.7em; color: #aaa; margin-top: 20px;">
109-
[SYSTEM STATUS: ONLINE]
110-
</div>
111-
10+
<div class="glass-panel">
11+
<header>
12+
<h1 class="glow-text">POBFUS <span>0.7</span></h1>
13+
<p class="status">SYSTEM STATUS: <span class="online">OPERATIONAL</span></p>
14+
</header>
15+
16+
<div class="editor-section">
17+
<div class="box">
18+
<label>INPUT LUA</label>
19+
<textarea id="inputCode" placeholder="-- Paste your raw script here..."></textarea>
20+
</div>
21+
22+
<div class="box">
23+
<label>PROTECTED OUTPUT</label>
24+
<textarea id="outputCode" readonly placeholder="-- Obfuscated code will appear here..."></textarea>
25+
</div>
26+
</div>
27+
28+
<div class="actions">
29+
<button onclick="pobfusStart()" class="btn-primary">OBFUSCATE & VIRTUALIZE</button>
30+
<button onclick="copyToClipboard()" class="btn-secondary">COPY RESULT</button>
31+
</div>
32+
33+
<footer>
34+
<p>Pobfus Security 2026 | Non-Root Optimized</p>
35+
</footer>
36+
</div>
37+
38+
<script src="script.js"></script>
11239
</body>
11340
</html>

0 commit comments

Comments
 (0)