-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
337 lines (308 loc) · 11.5 KB
/
index.html
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8" />
<meta name="author" content="0x4rv1nd" />
<meta name="description" content="0x4rv1nd" />
<meta name="keywords" content="0x4rv1nd" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#ff3a5e" />
<meta name="copyright" content="0x4rv1nd" />
<meta http-equiv="content-language" content="pt-br" />
<meta property="og:title" content="0x4rv1nd" />
<meta property="og:description" content="0x4rv1nd" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600&display=swap" rel="stylesheet" />
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="shortcut icon" href="assets/icons/console.png" type="image/x-icon" />
<link rel="icon" href="assets/icons/console.png" />
<link rel="apple-touch-icon" href="assets/image/logo-page.svg" />
<link rel="canonical" href="https://github.com/0x4rv1nd" />
<script src="assets/js/svg-inject.min.js"></script>
<title>0x4rv1nd</title>
<style>
/* Common styles for both mobile and desktop */
.black-card {
padding-top: 50%;
background-color: black;
color: rgb(118, 155, 155);
padding: 10px;
font-size: small;
z-index: 1000;
text-align: center;
background-color: rgb(0, 0, 0);
}
/* Mobile View */
@media (max-width: 767px) {
/* Mobile-specific styles here */
.black-card {
/* Customize styles for mobile devices */
font-size: small; /* Example: Adjust font size for mobile */
padding: 5px; /* Example: Adjust padding for mobile */
}
}
/* Desktop View */
@media (min-width: 768px) {
/* Desktop-specific styles here */
.black-card {
/* Customize styles for desktop devices */
font-size: medium; /* Example: Adjust font size for desktop */
padding: 20px; /* Example: Adjust padding for desktop */
}
}
</style>
<div class="black-card">
<h1></h1>
<h1></h1>
<h2> ▼ </h2>
<h2>INFO ABOUT YOU </h2>
<p><strong>Don't worry, this will not be saved. I just want to inform you that all websites can access your information. To avoid this, turn off JavaScript in your browser.</strong></p>
<p><strong>IPv4 Address:</strong> <span id="ip_address"></span></p>
<p><strong>Device:</strong> <span id="deviceInfo"></span></p>
<p><strong>Screen Resolution:</strong> <span id="resolutionInfo"></span></p>
<p><strong>Country Name:</strong> <span id="country_name"></span></p>
<p><strong>ISP:</strong> <span id="isp"></span></p>
<p><strong>Latitude:</strong> <span id="latitude"></span></p>
<p><strong>Longitude:</strong> <span id="longitude"></span></p>
<p><strong>I caught you baby</strong></p>
<h2> ▲ </h2>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
function detectDevice() {
var userAgent = navigator.userAgent.toLowerCase();
if (userAgent.includes("mobile")) {
return "Smartphone";
} else if (userAgent.includes("tablet")) {
return "Tablet";
} else {
return "Laptop or Desktop";
}
}
$(document).ready(function () {
var deviceType = detectDevice();
document.getElementById("deviceInfo").textContent = deviceType;
var screenWidth = window.screen.width;
var screenHeight = window.screen.height;
document.getElementById("resolutionInfo").textContent = screenWidth + "x" + screenHeight;
$.getJSON("https://ipapi.co/json/", function (data) {
var ipAddress = data.ip;
var countryName = data.country_name;
var isp = data.org;
var latitude = data.latitude;
var longitude = data.longitude;
$("#ip_address").text(ipAddress);
$("#country_name").text(countryName);
$("#isp").text(isp);
$("#latitude").text(latitude);
$("#longitude").text(longitude);
});
});
</script>
<header>
<div class="grid-layout">
<nav>
<img
src="assets/icons/key.png"
alt="Logo 0x4rv1nd"
width="90px"
height="90px"
/>
<div class="mobile-menu">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
<ul class="nav-list">
<li><a href="#s-home">01. HOME</a></li>
<li><a href="#s-about">02. ABOUT</a></li>
<li>
<a href="#s-services">03. WHAT I DO</a>
</li>
<li>
<a href="#s-skills">04. SKILLS</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<section id="s-home">
<div class="grid-layout">
<div id="home">
<div id="home-container-text">
<h1 class="delayMediumReveal">
0x4rv1nd
<div class = "gg" title="404">I LOVE SOMEONE'S PRIVACY</div>
</h1>
<p class="typewriter">
I am a computer enthusiast formerly student hacker and developer from India🇮🇳.
Building Software's and SAAS products for open source.
</p>
<a
href="https://github.com/0x4rv1nd"
rel="noopener"
target="_blank"
class="delayExtraBigReveal"
>
Github
</a>
</div>
<img
src="assets/image/ded5.png"
alt="0x4rv1nd"
onload="SVGInject(this)"
id="logo"
width="600px"
height="600px"
/>
</div>
</div>
</section>
<section id="s-about">
<div class="grid-layout">
<div id="about">
<div id="about-photo">
<img
src="assets/image/ded6.png"
width="500px"
height="500px"
alt="0x4rv1nd"
class="delayMediumReveal"
id="0x4rv1nd"
/>
<div class="about-figure figure-one icon-one delayExtraBigReveal">
<img
src="assets/icons/web.png"
width="45px"
height="45px"
alt="ícone html"
/>
</div>
<div class="about-figure figure-two icon-two delayExtraBigReveal">
<img
src="assets/icons/bitcoin.png"
width="45px"
height="45px"
alt="ícone css"
/>
</div>
<div
class="about-figure figure-three icon-three delayExtraBigReveal"
>
<img
src="assets/icons/console1.png"
width="45px"
height="45px"
alt="ícone javascript"
/>
</div>
</div>
<article id="about-text">
<h2 class="delaySmallReveal"><span><</span>0x4rv1nd<span>></span></h2>
<p class="delayMediumReveal">
An Average guy in the field of cyber security passionate about webapp and api pentesting
</p>
</article>
</div>
</div>
</section>
<section id="s-services">
<div class="grid-layout">
<h2 class="delaySmallReveal">What I do<span>.</span></h2>
<div id="services">
<article class="intervalCardReveal">
<div>
<img
src="assets/icons/server.png"
width="100px"
height="100px"
alt="0x4rv1nd"
/>
</div>
<h3>A FullSatck Webdev</h3>
<p>
MERN Stack, Flutter
</p>
</article>
</article>
</div>
</div>
</section>
<section id="s-skills">
<div class="grid-layout">
<div id="skills">
<article id="skills-text">
<h2 class="delaySmallReveal"><span><</span> technology and tools and <span>></span></h2>
<p class="delayMediumReveal changeDescription">
Proefficient in
</p>
</article>
<div id="skills-cards">
<article class="html intervalCardReveal">
<span class="skills-cards-name-high">Bash</span>
<img
src="assets/icons/bash.png"
width="60px"
height="60px"
alt="0x4rv1nd"
class="skills-icons"
/>
</article>
<article class="css intervalCardReveal">
<span class="skills-cards-name-high">Burpsuite</span>
<img
src="assets/icons/burpsuite.png"
width="60px"
height="60px"
alt="0x4rv1nd"
class="skills-icons"
/>
</article>
<article class="styled intervalCardReveal">
<span class="skills-cards-name-low aumento-hover"
>Ghidra</span
>
<img
src="assets/icons/ghidra.png"
width="60px"
height="60px"
alt="0x4rv1nd"
class="skills-icons"
/>
</article>
<article class="tailwind intervalCardReveal">
<span class="skills-cards-name-low">Python</span>
<img
src="assets/icons/python.png"
width="60px"
height="60px"
alt="0x4rv1nd"
class="skills-icons"
/>
</article>
</div>
</div>
</div>
<footer>
<div class="grid-layout">
<p id="direitos-autorais">© 2023 0x4rv1nd</p>
<div>
<p>Powered by</p>
<img
src="assets/icons/web.png"
alt="0x4rv1nd"
width="60px"
height="60px"
/>
</div>
</div>
</footer>
</section>
</main>
<script src="https://unpkg.com/[email protected]/dist/scrollreveal.min.js"></script>
<script type="module" src="assets/js/main.js"></script>
</body>
</html>