-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
169 lines (162 loc) · 4.74 KB
/
index.html
File metadata and controls
169 lines (162 loc) · 4.74 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon/favicon.ico" />
<link
type="text/css"
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/FortAwesome/Font-Awesome@7.x/css/all.min.css"
/>
<link type="text/css" rel="stylesheet" href="/src/style.css" />
<title>OSINT Framework</title>
</head>
<body>
<div class="blob blob--1"></div>
<div class="blob blob--2"></div>
<div class="blob blob--3"></div>
<div id="body"></div>
<div id="tooltip" class="tooltip" style="opacity: 0"></div>
<div class="legend">
<table width="100%" border="0">
<tr>
<td align="center">(D)</td>
<td>
<i class="fab fa-google" style="color: var(--accent-2)"></i>
Google Dork, for more information:
<a
href="https://en.wikipedia.org/wiki/Google_hacking"
target="_blank"
>Google Hacking</a
>
</td>
</tr>
<tr>
<td align="center">(R)</td>
<td>
<i class="fas fa-users" style="color: var(--accent-2)"></i>
Requires registration
</td>
</tr>
<tr>
<td align="center">(M)</td>
<td>
<i class="fas fa-link" style="color: var(--accent-2)"></i>
Provides URL with a search query
</td>
</tr>
<tr>
<td align="center">(T)</td>
<td>
<i class="fas fa-tools" style="color: var(--accent-2)"></i>
The tool has to be set up on a local device
</td>
</tr>
</table>
</div>
<div class="btn-group">
<button id="legend-btn" class="pill-btn">
<i class="fas fa-info-circle"></i> Legend
</button>
<button id="mode-btn" class="pill-btn">
<i class="fas fa-bullseye"></i> Focus
</button>
</div>
<svg width="0" height="0" style="position: absolute">
<filter id="neon-glow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur stdDeviation="3" result="blur" />
<feMerge>
<feMergeNode in="blur" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<filter id="mist-dissolve" x="-50%" y="-50%" width="200%" height="200%">
<feTurbulence
type="fractalNoise"
baseFrequency="0"
numOctaves="2"
result="noise"
id="mist-turb"
/>
<feDisplacementMap
in="SourceGraphic"
in2="noise"
scale="0"
xChannelSelector="R"
yChannelSelector="G"
id="mist-disp"
/>
</filter>
</svg>
<div id="intro-layer">
<svg id="lock-icon" viewBox="0 0 200 200" width="250" height="250">
<!-- Outer rotating ring -->
<circle
cx="100"
cy="100"
r="90"
stroke="var(--accent-2)"
stroke-width="2"
stroke-dasharray="20 10"
fill="none"
class="vault-ring-outer"
/>
<!-- Middle counter-rotating segmented ring -->
<circle
cx="100"
cy="100"
r="70"
stroke="var(--accent)"
stroke-width="4"
stroke-dasharray="40 20"
fill="none"
class="vault-ring-middle"
/>
<!-- Inner spinning reticle -->
<g class="vault-reticle">
<circle
cx="100"
cy="100"
r="45"
stroke="var(--accent-2)"
stroke-width="1"
stroke-dasharray="2 4"
fill="none"
/>
<path
d="M 100 45 V 55 M 100 145 V 155 M 45 100 H 55 M 145 100 H 155"
stroke="var(--accent-2)"
stroke-width="2"
/>
</g>
<!-- Glowing central core -->
<circle
cx="100"
cy="100"
r="15"
fill="var(--accent)"
class="vault-core"
/>
<circle
cx="100"
cy="100"
r="10"
fill="white"
class="vault-core-inner"
/>
</svg>
<div class="intro-text">INITIATING DISCOVERY</div>
</div>
<div class="controls-overlay" style="display: none">
<div class="search-box">
<i class="fas fa-search"></i>
<input type="text" id="search-input" placeholder="Search nodes..." />
</div>
<button id="reset-btn" class="pill-btn">
<i class="fas fa-crosshairs"></i> Center
</button>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>