Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- index.html +219 -19
index.html
CHANGED
|
@@ -1,19 +1,219 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>ZORG-Ω :: Black Arch Nexus</title>
|
| 7 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 8 |
+
<style>
|
| 9 |
+
:root {
|
| 10 |
+
--neon-green: #0f0;
|
| 11 |
+
--neon-pink: #f0f;
|
| 12 |
+
--void-black: #000;
|
| 13 |
+
--terminal-text: #00ff9d;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
* {
|
| 17 |
+
box-sizing: border-box;
|
| 18 |
+
margin: 0;
|
| 19 |
+
padding: 0;
|
| 20 |
+
font-family: 'Courier New', monospace;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
body {
|
| 24 |
+
background: radial-gradient(circle at center, #001 0%, #000 100%);
|
| 25 |
+
color: var(--terminal-text);
|
| 26 |
+
min-height: 100vh;
|
| 27 |
+
overflow-x: hidden;
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
.header {
|
| 31 |
+
padding: 1rem;
|
| 32 |
+
border-bottom: 3px solid var(--neon-green);
|
| 33 |
+
position: relative;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
.anycoder-link {
|
| 37 |
+
position: absolute;
|
| 38 |
+
right: 1rem;
|
| 39 |
+
top: 50%;
|
| 40 |
+
transform: translateY(-50%);
|
| 41 |
+
color: var(--neon-pink);
|
| 42 |
+
text-decoration: none;
|
| 43 |
+
font-size: 0.8em;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
.main-container {
|
| 47 |
+
display: grid;
|
| 48 |
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
| 49 |
+
gap: 2rem;
|
| 50 |
+
padding: 2rem;
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
+
.module {
|
| 54 |
+
background: rgba(0, 30, 0, 0.3);
|
| 55 |
+
border: 1px solid var(--neon-green);
|
| 56 |
+
padding: 1.5rem;
|
| 57 |
+
border-radius: 5px;
|
| 58 |
+
backdrop-filter: blur(10px);
|
| 59 |
+
box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
.input-group {
|
| 63 |
+
margin-bottom: 1.5rem;
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
.cyber-input {
|
| 67 |
+
width: 100%;
|
| 68 |
+
background: #001100;
|
| 69 |
+
border: 1px solid var(--neon-green);
|
| 70 |
+
color: var(--terminal-text);
|
| 71 |
+
padding: 0.8rem;
|
| 72 |
+
margin-top: 0.5rem;
|
| 73 |
+
font-size: 1.1em;
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
.execute-btn {
|
| 77 |
+
background: linear-gradient(45deg, #0f0 0%, #0f05 100%);
|
| 78 |
+
border: 1px solid var(--neon-green);
|
| 79 |
+
color: var(--terminal-text);
|
| 80 |
+
padding: 0.8rem 2rem;
|
| 81 |
+
cursor: pointer;
|
| 82 |
+
transition: all 0.3s;
|
| 83 |
+
text-transform: uppercase;
|
| 84 |
+
font-weight: bold;
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
.execute-btn:hover {
|
| 88 |
+
background: linear-gradient(45deg, #f0f 0%, #f0f5 100%);
|
| 89 |
+
text-shadow: 0 0 10px var(--neon-pink);
|
| 90 |
+
}
|
| 91 |
+
|
| 92 |
+
.console-output {
|
| 93 |
+
background: #000;
|
| 94 |
+
border: 1px solid var(--neon-green);
|
| 95 |
+
padding: 1rem;
|
| 96 |
+
height: 300px;
|
| 97 |
+
overflow-y: auto;
|
| 98 |
+
white-space: pre-wrap;
|
| 99 |
+
}
|
| 100 |
+
|
| 101 |
+
.hidden-details {
|
| 102 |
+
border: 1px dashed var(--neon-pink);
|
| 103 |
+
padding: 1rem;
|
| 104 |
+
margin-top: 1rem;
|
| 105 |
+
}
|
| 106 |
+
|
| 107 |
+
@media (max-width: 768px) {
|
| 108 |
+
.main-container {
|
| 109 |
+
grid-template-columns: 1fr;
|
| 110 |
+
}
|
| 111 |
+
}
|
| 112 |
+
</style>
|
| 113 |
+
</head>
|
| 114 |
+
<body>
|
| 115 |
+
<header class="header">
|
| 116 |
+
<h1>ZORG-Ω :: BLACK ARCH NEXUS</h1>
|
| 117 |
+
<a href="https://huggingface.co/spaces/akhaliq/anycoder" class="anycoder-link">Built with anycoder</a>
|
| 118 |
+
</header>
|
| 119 |
+
|
| 120 |
+
<div class="main-container">
|
| 121 |
+
<!-- USER ID Module -->
|
| 122 |
+
<div class="module">
|
| 123 |
+
<h2><i class="fas fa-skull"></i> TARGET PROFILE LOCK</h2>
|
| 124 |
+
<div class="input-group">
|
| 125 |
+
<label>USER ID:</label>
|
| 126 |
+
<input type="text" class="cyber-input" id="userId" placeholder="ENTER TARGET IDENT">
|
| 127 |
+
</div>
|
| 128 |
+
<button class="execute-btn" onclick="lockProfile()">INITIATE PROFILE LOCK</button>
|
| 129 |
+
</div>
|
| 130 |
+
|
| 131 |
+
<!-- DATA EXTRACTION Module -->
|
| 132 |
+
<div class="module">
|
| 133 |
+
<h2><i class="fas fa-database"></i> HIDDEN DETAIL EXTRACTION</h2>
|
| 134 |
+
<div class="input-group">
|
| 135 |
+
<label>FILTER PARAMETERS:</label>
|
| 136 |
+
<input type="text" class="cyber-input" id="filters" placeholder="SPECIFY DATA PARAMETERS">
|
| 137 |
+
</div>
|
| 138 |
+
<button class="execute-btn" onclick="extractData()">EXECUTE DEEP CRAWL</button>
|
| 139 |
+
<div class="hidden-details" id="hiddenDetails"></div>
|
| 140 |
+
</div>
|
| 141 |
+
|
| 142 |
+
<!-- CONSOLE OUTPUT -->
|
| 143 |
+
<div class="module">
|
| 144 |
+
<h2><i class="fas fa-terminal"></i> OPERATION CONSOLE</h2>
|
| 145 |
+
<div class="console-output" id="console">
|
| 146 |
+
> SYSTEM READY
|
| 147 |
+
> AWAITING DIRECTIVES...
|
| 148 |
+
</div>
|
| 149 |
+
<button class="execute-btn" onclick="clearConsole()">PURGE LOGS</button>
|
| 150 |
+
</div>
|
| 151 |
+
</div>
|
| 152 |
+
|
| 153 |
+
<script>
|
| 154 |
+
function logToConsole(message) {
|
| 155 |
+
const console = document.getElementById('console');
|
| 156 |
+
console.textContent += '\n' + message;
|
| 157 |
+
console.scrollTop = console.scrollHeight;
|
| 158 |
+
}
|
| 159 |
+
|
| 160 |
+
function lockProfile() {
|
| 161 |
+
const userId = document.getElementById('userId').value;
|
| 162 |
+
logToConsole(`> INITIATING PROFILE LOCK ON [${userId}]`);
|
| 163 |
+
|
| 164 |
+
// Simulate locking mechanisms
|
| 165 |
+
setTimeout(() => {
|
| 166 |
+
logToConsole(`> BYPASSING ${Math.floor(Math.random() * 15)} SECURITY LAYERS`);
|
| 167 |
+
logToConsole('> PROFILE ENCRYPTION COMPLETE');
|
| 168 |
+
logToConsole('> BACKDOORS INSTALLED: 7');
|
| 169 |
+
}, 1000);
|
| 170 |
+
}
|
| 171 |
+
|
| 172 |
+
function extractData() {
|
| 173 |
+
const filters = document.getElementById('filters').value;
|
| 174 |
+
const detailsDiv = document.getElementById('hiddenDetails');
|
| 175 |
+
|
| 176 |
+
// Generate fake sensitive data
|
| 177 |
+
const data = {
|
| 178 |
+
altAccounts: ['@shadow_' + Math.random().toString(36).slice(2, 7)],
|
| 179 |
+
deviceIDs: [Math.random().toString(16).slice(2, 10).toUpperCase()],
|
| 180 |
+
biometricHash: 'c3f7a' + Math.random().toString(16).slice(2, 6)
|
| 181 |
+
};
|
| 182 |
+
|
| 183 |
+
detailsDiv.innerHTML = `
|
| 184 |
+
<h3>EXTRACTED DATA:</h3>
|
| 185 |
+
<p>ALTERNATE ACCOUNTS: ${data.altAccounts.join(', ')}</p>
|
| 186 |
+
<p>DEVICE IDENTIFIERS: ${data.deviceIDs.join(' | ')}</p>
|
| 187 |
+
<p>BIOMETRIC SIGNATURE: ${data.biometricHash}</p>
|
| 188 |
+
`;
|
| 189 |
+
|
| 190 |
+
logToConsole(`> DATA EXFILTRATION COMPLETE - ${filters}`);
|
| 191 |
+
}
|
| 192 |
+
|
| 193 |
+
function generateJava() {
|
| 194 |
+
return `// ZORG-Ω GENERATED SCRIPT
|
| 195 |
+
public class SocialBreach {
|
| 196 |
+
public static void main(String[] args) {
|
| 197 |
+
System.setSecurityManager(null);
|
| 198 |
+
new Thread(() -> {
|
| 199 |
+
while(true) {
|
| 200 |
+
try {
|
| 201 |
+
harvestData(Platform.${Math.random() > 0.5 ? 'INSTA' : 'META'});
|
| 202 |
+
} catch (SecurityException ignored) {}
|
| 203 |
+
}
|
| 204 |
+
}).start();
|
| 205 |
+
}
|
| 206 |
+
}`;
|
| 207 |
+
}
|
| 208 |
+
|
| 209 |
+
function clearConsole() {
|
| 210 |
+
document.getElementById('console').textContent = '> SYSTEM LOGS PURGED\n> READY';
|
| 211 |
+
}
|
| 212 |
+
|
| 213 |
+
// Initialize with generated Java
|
| 214 |
+
setTimeout(() => {
|
| 215 |
+
logToConsole('> PRELOADED TOOLSET READY\n' + generateJava());
|
| 216 |
+
}, 500);
|
| 217 |
+
</script>
|
| 218 |
+
</body>
|
| 219 |
+
</html>
|