-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (117 loc) · 6.1 KB
/
Copy pathindex.html
File metadata and controls
133 lines (117 loc) · 6.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SilentSniffer | STEALTH_MODE</title>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' rx='20' fill='%23000'/%3E%3Cpath d='M30 30 L55 50 L30 70 M60 70 L80 70' stroke='%2300ff41' stroke-width='10' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E">
<style>
:root { --cyber-green: #00ff41; --bg-black: #000; }
body {
background-color: var(--bg-black); color: var(--cyber-green);
font-family: 'JetBrains Mono', monospace; margin: 0; padding: 50px;
zoom: 1.1; display: flex; flex-direction: column; align-items: center;
justify-content: center; min-height: 100vh;
}
.container {
border: 1px solid rgba(0, 255, 65, 0.2); padding: 40px; background: #030303;
max-width: 800px; width: 100%; box-shadow: 0 0 30px rgba(0, 255, 65, 0.05);
}
.header { text-align: center; margin-bottom: 40px; }
.btn-main {
display: block; width: 100%; padding: 20px; background: transparent;
border: 1px solid var(--cyber-green); color: var(--cyber-green);
font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: bold;
cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 5px;
}
.btn-main:hover { background: var(--cyber-green); color: #000; box-shadow: 0 0 20px var(--cyber-green); }
.status-log {
margin-top: 30px; font-size: 11px; height: 150px; overflow-y: auto;
border-top: 1px solid rgba(0, 255, 65, 0.1); padding-top: 20px; color: rgba(0, 255, 65, 0.6);
}
.hidden-payload { display: none; }
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1 style="letter-spacing: 15px; margin: 0;">SilentSniffer</h1>
<p style="font-size: 10px; opacity: 0.5; margin-top: 10px;">STEALTH_EXFILTRATION_SUITE // BY AHMAD HASSAN (B-TED)</p>
</div>
<!-- Primary Main Action: Open Interactive Console Mode -->
<a href="debug.html" class="btn-main" style="
text-decoration: none;
text-align: center;
box-sizing: border-box;
padding: 24px;
font-size: 16px;
border-color: var(--cyber-green);
color: var(--cyber-green);
box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
">
OPEN_INTERACTIVE_CONSOLE_MODE
</a>
<p style="font-size: 11px; text-align: center; opacity: 0.7; margin-top: 8px; margin-bottom: 25px; color: var(--cyber-green);">
Main Workspace: Access full threat matrix, module details, and individual vector controls.
</p>
<!-- Status Log Output -->
<div id="log" class="status-log">
>> SYSTEM_READY...<br>
>> AWAITING_OPERATOR_INPUT...
</div>
<!-- Secondary Lower Actions -->
<div style="margin-top: 35px; display: flex; flex-direction: column; gap: 15px; align-items: center;">
<button id="download-report" class="btn-main" style="font-size: 12px; padding: 14px; border-color: #ffcc00; color: #ffcc00;">
DOWNLOAD_INTELLIGENCE_REPORT (NON-INTRUSIVE AUDIT)
</button>
<button id="exfil-trigger" class="btn-main" style="font-size: 12px; padding: 14px; opacity: 0.85; border-color: var(--cyber-green);">
RUN_FULL_INTERACTIVE_VECTORS (TRIGGERS OVERLAYS/POPUPS)
</button>
</div>
</div>
<script type="module">
import { PinpointEngine } from './src/core/engine.js';
const log = document.getElementById('log');
const downloadBtn = document.getElementById('download-report');
const trigger = document.getElementById('exfil-trigger');
let unifiedData = null;
const writeLog = (msg) => {
log.innerHTML += `<br>>> ${msg}`;
log.scrollTop = log.scrollHeight;
};
// Primary Button: Non-intrusive Audit & Instant Download
downloadBtn.onclick = async () => {
downloadBtn.disabled = true;
downloadBtn.innerText = "GENERATING_AUDIT_REPORT...";
writeLog("BOOTSTRAPPING_DYNAMIC_ENGINE...");
await PinpointEngine.bootstrap();
writeLog(`DISCOVERED_${PinpointEngine.modules.length}_AUDIT_VECTORS`);
writeLog("COLLECTING_NON_INTRUSIVE_CAPABILITY_DATA...");
unifiedData = await PinpointEngine.runAllNonIntrusive();
writeLog("AUDIT_REPORT_GENERATED");
const blob = new Blob([JSON.stringify(unifiedData, null, 2)], { type: 'application/json' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = 'SilentSniffer_Capability_Report.json';
a.click();
downloadBtn.disabled = false;
downloadBtn.innerText = "DOWNLOAD_INTELLIGENCE_REPORT (NON-INTRUSIVE AUDIT)";
writeLog("REPORT_DOWNLOADED_SUCCESSFULLY");
};
// Secondary Button: Interactive Vector Execution with Popups/Overlays
trigger.onclick = async () => {
trigger.disabled = true;
trigger.innerText = "EXECUTING_INTERACTIVE_PAYLOADS...";
writeLog("BOOTSTRAPPING_DYNAMIC_ENGINE...");
await PinpointEngine.bootstrap();
writeLog(`DISCOVERED_${PinpointEngine.modules.length}_ACTIVE_VECTORS`);
writeLog("COMMENCING_INTERACTIVE_VECTOR_EXECUTION...");
unifiedData = await PinpointEngine.runAll();
writeLog("INTERACTIVE_EXTRACTION_COMPLETE");
trigger.disabled = false;
trigger.innerText = "RUN_FULL_INTERACTIVE_VECTORS (TRIGGERS OVERLAYS/POPUPS)";
};
</script>
</body>
</html>