-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
717 lines (668 loc) · 39.2 KB
/
index.html
File metadata and controls
717 lines (668 loc) · 39.2 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
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Makhmudovs</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Syne:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<style>
:root {
--bg:#0c0c0c; --bg2:#111; --bg3:#161616;
--border:rgba(255,255,255,.08);
--text:#e8e8e8; --muted:#555; --muted2:#888; --white:#fff;
--green:#00ff41;
--radius:16px;
--top-nav-h:56px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);font-family:'Inter',sans-serif;font-size:14px;line-height:1.6;cursor:none}
/* CURSOR */
#cur{width:8px;height:8px;background:#fff;border-radius:50%;position:fixed;pointer-events:none;z-index:9999;transform:translate(-50%,-50%);transition:width .15s,height .15s}
#curR{width:28px;height:28px;border:1px solid rgba(255,255,255,.22);border-radius:50%;position:fixed;pointer-events:none;z-index:9998;transform:translate(-50%,-50%);transition:width .2s,height .2s}
/* TOP NAV */
.topnav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 600;
height: var(--top-nav-h);
background: rgba(12,12,12,.92);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
}
.topnav-logo {
font-family: 'Syne', sans-serif;
font-size: .95rem;
font-weight: 800;
color: var(--white);
letter-spacing: 1px;
text-decoration: none;
cursor: none;
}
.topnav-logo span { color: var(--green); }
.topnav-links {
display: flex;
align-items: center;
gap: 4px;
}
.topnav-links a {
padding: 7px 14px;
border-radius: 8px;
font-size: 13px;
font-weight: 500;
color: var(--muted2);
text-decoration: none;
cursor: none;
transition: all .2s;
letter-spacing: .2px;
}
.topnav-links a:hover,
.topnav-links a.active {
color: var(--white);
background: var(--bg3);
}
.topnav-badge {
display: flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 500;
color: var(--green);
border: 1px solid rgba(0,255,65,.2);
background: rgba(0,255,65,.05);
padding: 5px 12px;
border-radius: 100px;
}
.topnav-badge::before {
content: '';
width: 6px; height: 6px;
background: var(--green);
border-radius: 50%;
animation: bl 2s infinite;
}
@keyframes bl{0%,100%{opacity:1}50%{opacity:.3}}
@media(max-width:768px){
.topnav{padding:0 18px}
.topnav-links{display:none}
}
/* LAYOUT */
.shell {
display: grid;
grid-template-columns: 280px 1fr;
min-height: 100vh;
padding-top: var(--top-nav-h);
}
@media(max-width:900px){.shell{grid-template-columns:1fr}}
/* SIDEBAR */
.sidebar {
position: sticky;
top: var(--top-nav-h);
height: calc(100vh - var(--top-nav-h));
border-right: 1px solid var(--border);
display: flex;
flex-direction: column;
padding: 32px 24px;
overflow-y: auto;
background: var(--bg);
}
@media(max-width:900px){.sidebar{position:static;height:auto;border-right:none;border-bottom:1px solid var(--border)}}
.avatar {
width: 68px; height: 68px;
border-radius: 50%;
background: linear-gradient(135deg,#1a2a1a,#0f1f0f);
border: 1px solid var(--border);
display: flex; align-items: center; justify-content: center;
font-family: 'Syne', sans-serif;
font-size: 1.5rem; font-weight: 800;
color: var(--green);
margin-bottom: 18px; flex-shrink: 0;
}
.sb-name { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.bio { font-size: 13px; color: var(--muted2); line-height: 1.65; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
/* SOCIALS */
.socials { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.soc {
width: 34px; height: 34px;
background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
display: flex; align-items: center; justify-content: center;
color: var(--muted2); text-decoration: none; font-size: 13px;
transition: all .2s; cursor: none;
}
.soc:hover{background:var(--bg2);color:var(--white);border-color:rgba(255,255,255,.15);transform:translateY(-1px)}
/* MAIN */
.main { padding: 40px 48px; max-width: 860px; }
@media(max-width:700px){.main{padding:28px 18px}}
/* HERO */
.hero { padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.hero-label {
display: inline-flex; align-items: center; gap: 6px;
font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
color: var(--muted); margin-bottom: 20px;
}
.hero-label::before{content:'';display:block;width:20px;height:1px;background:var(--muted)}
h1.hero-title {
font-family: 'Syne', sans-serif;
font-size: clamp(2.8rem, 6vw, 5rem);
font-weight: 800;
color: var(--white);
line-height: 1.0;
letter-spacing: -2px;
margin-bottom: 24px;
user-select: none;
}
h1.hero-title .dim { color: var(--muted); }
.glitch-char { display: inline; transition: none; }
.glitch-char.bin {
color: var(--green);
font-size: .7em;
font-family: 'Inter', monospace;
font-weight: 400;
letter-spacing: 0;
opacity: .7;
}
.dim .glitch-char.bin { color: rgba(0,255,65,.5); }
.hero-desc {
font-size: 15px; color: var(--muted2); line-height: 1.7;
max-width: 520px; margin-bottom: 32px;
}
/* STATS */
.stats { display: flex; flex-wrap: wrap; }
.stat {
padding: 18px 26px;
border: 1px solid var(--border);
margin-right: -1px; margin-bottom: -1px;
min-width: 110px;
}
.stat:first-child{border-radius:var(--radius) 0 0 var(--radius)}
.stat:last-child{border-radius:0 var(--radius) var(--radius) 0;margin-right:0}
.stat-num{font-family:'Syne',sans-serif;font-size:1.8rem;font-weight:800;color:var(--white);line-height:1;margin-bottom:4px}
.stat-num span{color:var(--green)}
.stat-label{font-size:11px;color:var(--muted);font-weight:500;letter-spacing:1px;text-transform:uppercase}
/* SECTION */
.section{margin-bottom:52px}
.sec-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}
.sec-title{font-family:'Syne',sans-serif;font-size:1.35rem;font-weight:800;color:var(--white);letter-spacing:-.5px}
.sec-link{font-size:12px;font-weight:500;color:var(--muted2);text-decoration:none;display:flex;align-items:center;gap:5px;cursor:none;transition:color .2s}
.sec-link:hover{color:var(--white)}
/* SKILLS */
.skills-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:11px}
.skill-card{background:var(--bg2);border:1px solid var(--border);border-radius:12px;padding:17px 17px 13px;transition:border-color .2s,transform .2s}
.skill-card:hover{border-color:rgba(255,255,255,.15);transform:translateY(-2px)}
.skill-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:11px}
.skill-name{font-size:13px;font-weight:600;color:var(--white)}
.skill-pct{font-family:'Syne',sans-serif;font-size:1.05rem;font-weight:800;color:var(--white)}
.skill-bar{height:3px;background:rgba(255,255,255,.06);border-radius:2px;overflow:hidden}
.skill-fill{height:100%;background:var(--white);width:0;transition:width 1.4s cubic-bezier(.1,.5,.2,1);border-radius:2px}
/* EXPERIENCE */
.exp-list{display:flex;flex-direction:column}
.exp-item{display:grid;grid-template-columns:100px 1fr;gap:18px;padding:22px 0;border-bottom:1px solid var(--border)}
.exp-item:first-child{padding-top:0}
.exp-item:last-child{border-bottom:none}
.exp-period{font-size:11px;color:var(--muted);font-weight:500;padding-top:3px;letter-spacing:.4px}
.exp-role{font-family:'Syne',sans-serif;font-size:1rem;font-weight:700;color:var(--white);margin-bottom:3px}
.exp-company{font-size:12px;color:var(--green);font-weight:500;margin-bottom:7px}
.exp-desc{font-size:13px;color:var(--muted2);line-height:1.6}
.exp-tags{display:flex;flex-wrap:wrap;gap:5px;margin-top:9px}
.exp-tag{padding:3px 9px;background:var(--bg3);border:1px solid var(--border);border-radius:100px;font-size:11px;color:var(--muted2)}
/* SERVICES */
.services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:11px}
.svc-card{background:var(--bg2);border:1px solid var(--border);border-radius:12px;padding:20px;transition:all .2s}
.svc-card:hover{border-color:rgba(255,255,255,.15);background:var(--bg3);transform:translateY(-2px)}
.svc-icon{font-size:1.2rem;margin-bottom:11px}
.svc-title{font-family:'Syne',sans-serif;font-size:.88rem;font-weight:700;color:var(--white);margin-bottom:7px}
.svc-desc{font-size:12px;color:var(--muted2);line-height:1.6}
/* TOOLS */
.tools-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(155px,1fr));gap:9px}
.tool-item{background:var(--bg2);border:1px solid var(--border);border-radius:10px;padding:13px 15px;display:flex;align-items:center;gap:10px;transition:all .2s;cursor:none}
.tool-item:hover{border-color:rgba(255,255,255,.15);background:var(--bg3)}
.tool-icon{font-size:1rem;color:var(--muted2)}
.tool-name{font-size:12px;font-weight:600;color:var(--white)}
.tool-sub{font-size:11px;color:var(--muted)}
/* BLOG */
.blog-list{display:flex;flex-direction:column}
.blog-item{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:20px 0;border-bottom:1px solid var(--border);text-decoration:none;cursor:none;transition:all .2s}
.blog-item:last-child{border-bottom:none}
.blog-num{font-size:11px;color:var(--muted);font-weight:600;letter-spacing:1px;margin-bottom:6px}
.blog-title{font-family:'Syne',sans-serif;font-size:.93rem;font-weight:700;color:var(--muted2);transition:color .2s;margin-bottom:5px}
.blog-excerpt{font-size:12px;color:var(--muted);line-height:1.6}
.blog-arrow{color:var(--muted);font-size:12px;padding-top:4px;transition:transform .2s,color .2s}
.blog-item:hover .blog-title{color:var(--white)}
.blog-item:hover .blog-arrow{transform:translate(2px,-2px);color:var(--white)}
/* CONTACT */
.contact-card{background:var(--bg2);border:1px solid var(--border);border-radius:16px;padding:34px}
.contact-title{font-family:'Syne',sans-serif;font-size:1.5rem;font-weight:800;color:var(--white);letter-spacing:-1px;margin-bottom:7px}
.contact-sub{font-size:13px;color:var(--muted2);margin-bottom:26px}
.cf-row{display:grid;grid-template-columns:1fr 1fr;gap:11px;margin-bottom:11px}
@media(max-width:600px){.cf-row{grid-template-columns:1fr}}
.cf-input,.cf-select,.cf-textarea{width:100%;background:var(--bg3);border:1px solid var(--border);border-radius:10px;padding:11px 15px;color:var(--white);font-family:'Inter',sans-serif;font-size:13px;outline:none;transition:border-color .2s}
.cf-select{color:var(--muted);appearance:none;margin-bottom:11px}
.cf-textarea{resize:vertical;min-height:95px;margin-bottom:14px}
.cf-input:focus,.cf-textarea:focus{border-color:rgba(255,255,255,.22)}
.cf-input::placeholder,.cf-textarea::placeholder{color:var(--muted)}
.cf-btn{width:100%;background:var(--white);color:var(--bg);border:none;border-radius:10px;padding:13px;font-family:'Syne',sans-serif;font-size:13px;font-weight:700;letter-spacing:.5px;cursor:none;transition:opacity .2s,transform .2s}
.cf-btn:hover{opacity:.9;transform:translateY(-1px)}
footer{border-top:1px solid var(--border);padding:22px 48px;display:flex;justify-content:space-between;align-items:center;font-size:12px;color:var(--muted)}
@media(max-width:600px){footer{flex-direction:column;gap:8px;padding:18px;text-align:center}}
/* REVEAL */
.rv{opacity:0;transform:translateY(16px);transition:opacity .6s ease,transform .6s ease}
.rv.on{opacity:1;transform:none}
/* AI ASSISTANT */
#aiWrap{position:fixed;bottom:24px;right:24px;z-index:800}
.ai-toggle-btn{width:50px;height:50px;background:var(--white);border:none;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:none;box-shadow:0 8px 28px rgba(0,0,0,.5);transition:transform .2s}
.ai-toggle-btn:hover{transform:scale(1.06)}
.ai-toggle-btn i{color:var(--bg);font-size:1.1rem}
.ai-panel{position:absolute;bottom:62px;right:0;width:316px;background:var(--bg2);border:1px solid var(--border);border-radius:16px;display:none;flex-direction:column;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.8)}
.ai-panel.open{display:flex}
@media(max-width:420px){.ai-panel{width:calc(100vw - 32px);right:-8px}}
.ai-head{padding:13px 15px;border-bottom:1px solid var(--border);display:flex;align-items:center;gap:10px;background:var(--bg3)}
.ai-avatar{width:29px;height:29px;background:rgba(255,255,255,.07);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:.72rem;color:var(--white)}
.ai-head-name{font-size:12px;font-weight:700;color:var(--white);font-family:'Syne',sans-serif}
.ai-head-status{font-size:10px;color:var(--green);display:flex;align-items:center;gap:4px}
.ai-head-status::before{content:'';width:5px;height:5px;background:var(--green);border-radius:50%;animation:bl 2s infinite}
.ai-close-btn{margin-left:auto;background:none;border:none;color:var(--muted2);cursor:none;font-size:.88rem;transition:color .2s}
.ai-close-btn:hover{color:var(--white)}
.ai-body{padding:13px;display:flex;flex-direction:column;gap:9px;max-height:270px;overflow-y:auto}
.ai-body::-webkit-scrollbar{width:3px}
.ai-body::-webkit-scrollbar-thumb{background:var(--border);border-radius:2px}
.amsg{max-width:88%;padding:9px 12px;font-size:13px;line-height:1.5;border-radius:12px}
.amsg.bot{background:var(--bg3);border:1px solid var(--border);color:var(--text);align-self:flex-start;border-radius:4px 12px 12px 12px}
.amsg.user{background:var(--white);color:var(--bg);align-self:flex-end;font-weight:500;border-radius:12px 4px 12px 12px}
.ai-chips{display:flex;gap:6px;flex-wrap:wrap;padding:8px 13px;border-top:1px solid var(--border)}
.chip{padding:5px 10px;background:var(--bg3);border:1px solid var(--border);border-radius:100px;font-size:11px;color:var(--muted2);cursor:none;transition:all .2s}
.chip:hover{background:var(--bg);color:var(--white);border-color:rgba(255,255,255,.15)}
.ai-input-row{display:flex;border-top:1px solid var(--border)}
.ai-inp{flex:1;background:transparent;border:none;padding:11px 13px;color:var(--white);font-family:'Inter',sans-serif;font-size:13px;outline:none}
.ai-inp::placeholder{color:var(--muted)}
.ai-send-btn{background:none;border:none;border-left:1px solid var(--border);padding:0 13px;color:var(--muted2);cursor:none;transition:color .2s;font-size:.88rem}
.ai-send-btn:hover{color:var(--white)}
.tydots{display:flex;gap:4px;padding:9px 12px;background:var(--bg3);border:1px solid var(--border);border-radius:4px 12px 12px 12px;align-self:flex-start}
.tydots span{width:5px;height:5px;background:var(--muted2);border-radius:50%;animation:tyd .9s infinite}
.tydots span:nth-child(2){animation-delay:.2s}
.tydots span:nth-child(3){animation-delay:.4s}
@keyframes tyd{0%,100%{opacity:.3;transform:translateY(0)}50%{opacity:1;transform:translateY(-3px)}}
</style>
</head>
<body>
<div id="cur"></div>
<div id="curR"></div>
<!-- TOP NAV -->
<header class="topnav">
<a href="#hero" class="topnav-logo">MSF<span>899</span></a>
<nav class="topnav-links">
<a href="#hero" class="active">Home</a>
<a href="#skills">Skills</a>
<a href="#experience">Experience</a>
<a href="#services">Services</a>
<a href="#tools">Tools</a>
<a href="#blog">Blog</a>
<a href="#contact">Contact</a>
</nav>
<div class="topnav-badge">Available for hire</div>
</header>
<!-- SHELL -->
<div class="shell">
<!-- SIDEBAR -->
<aside class="sidebar">
<div class="avatar">msf</div>
<div class="sb-name">Makhmudovs</div>
<p class="bio">Cyber Threat Intelligence Analyst at Technisanct. Specializing in penetration testing, dark web monitoring, and OSINT. Based in Tashkent, Uzbekistan.</p>
<div class="socials">
<a href="https://github.com/msf899" target="_blank" class="soc" title="GitHub"><i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/msf899/" target="_blank" class="soc" title="LinkedIn"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://t.me/nevertryyourfail" target="_blank" class="soc" title="Telegram"><i class="fa-brands fa-telegram"></i></a>
<a href="https://www.instagram.com/makhmudovs899" target="_blank" class="soc" title="Instagram"><i class="fa-brands fa-instagram"></i></a>
<a href="https://www.youtube.com/channel/UCNt2uVW-3eStRKBeWaWC2jQ" target="_blank" class="soc" title="YouTube"><i class="fa-brands fa-youtube"></i></a>
<a href="https://x.com/makhmudovs899" target="_blank" class="soc" title="Twitter"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://medium.com/@msf899" target="_blank" class="soc" title="Medium"><i class="fa-brands fa-medium"></i></a>
<a href="https://www.threads.net/@makhmudovs899" target="_blank" class="soc" title="Threads"><i class="fa-brands fa-threads"></i></a>
<a href="https://bsky.app/profile/makhmudovs899" target="_blank" class="soc" title="Bluesky"><i class="fa-solid fa-cloud"></i></a>
<a href="https://story.snapchat.com/s/makhmudovs899" target="_blank" class="soc" title="Snapchat"><i class="fa-brands fa-snapchat"></i></a>
<a href="https://www.facebook.com/makhmudovs899" target="_blank" class="soc" title="Facebook"><i class="fa-brands fa-facebook"></i></a>
<a href="https://www.pinterest.com/makhmudovs899/" target="_blank" class="soc" title="Pinterest"><i class="fa-brands fa-pinterest"></i></a>
</div>
</aside>
<!-- MAIN -->
<main class="main">
<!-- HERO -->
<section id="hero" class="hero rv">
<div class="hero-label">Cybersecurity Professional</div>
<h1 class="hero-title" id="heroTitle">
<span class="line" id="line1"></span><br>
<span class="dim line" id="line2"></span><br>
<span class="line" id="line3"></span>
</h1>
<p class="hero-desc">Passionate about securing digital infrastructure. Specializing in threat intelligence, penetration testing, and dark web monitoring to defend organizations against evolving cyber threats.</p>
<div class="stats">
<div class="stat"><div class="stat-num">12M<span>+</span></div><div class="stat-label">Experience</div></div>
<div class="stat"><div class="stat-num">3</div><div class="stat-label">Companies</div></div>
<div class="stat"><div class="stat-num">190<span>+</span></div><div class="stat-label">Work Hours</div></div>
<div class="stat"><div class="stat-num">5</div><div class="stat-label">Awards</div></div>
</div>
</section>
<!-- SKILLS -->
<section id="skills" class="section">
<div class="sec-header rv"><div class="sec-title">Skills</div></div>
<div class="skills-grid">
<div class="skill-card rv"><div class="skill-top"><span class="skill-name">SOC Analysis</span><span class="skill-pct">99%</span></div><div class="skill-bar"><div class="skill-fill" data-w="99"></div></div></div>
<div class="skill-card rv"><div class="skill-top"><span class="skill-name">NMap</span><span class="skill-pct">95%</span></div><div class="skill-bar"><div class="skill-fill" data-w="95"></div></div></div>
<div class="skill-card rv"><div class="skill-top"><span class="skill-name">PenTesting</span><span class="skill-pct">90%</span></div><div class="skill-bar"><div class="skill-fill" data-w="90"></div></div></div>
<div class="skill-card rv"><div class="skill-top"><span class="skill-name">OSINT</span><span class="skill-pct">90%</span></div><div class="skill-bar"><div class="skill-fill" data-w="90"></div></div></div>
<div class="skill-card rv"><div class="skill-top"><span class="skill-name">Splunk</span><span class="skill-pct">80%</span></div><div class="skill-bar"><div class="skill-fill" data-w="80"></div></div></div>
<div class="skill-card rv"><div class="skill-top"><span class="skill-name">Networking</span><span class="skill-pct">80%</span></div><div class="skill-bar"><div class="skill-fill" data-w="80"></div></div></div>
<div class="skill-card rv"><div class="skill-top"><span class="skill-name">Cybersecurity</span><span class="skill-pct">75%</span></div><div class="skill-bar"><div class="skill-fill" data-w="75"></div></div></div>
<div class="skill-card rv"><div class="skill-top"><span class="skill-name">InfoSec</span><span class="skill-pct">70%</span></div><div class="skill-bar"><div class="skill-fill" data-w="70"></div></div></div>
</div>
</section>
<!-- EXPERIENCE -->
<section id="experience" class="section">
<div class="sec-header rv"><div class="sec-title">Experience</div></div>
<div class="exp-list">
<div class="exp-item rv">
<div class="exp-period">Feb 2024<br>Present</div>
<div>
<div class="exp-role">Cyber Threat Intelligence Analyst</div>
<div class="exp-company">Technisanct · falconfeeds.io</div>
<div class="exp-desc">Attack Surface Management, Dark Web Monitoring, Ransomware Group Tracking, Vulnerability Intelligence, Source Code Leak Detection.</div>
<div class="exp-tags"><span class="exp-tag">Threat Intel</span><span class="exp-tag">Dark Web</span><span class="exp-tag">Ransomware</span><span class="exp-tag">Vuln Intel</span></div>
</div>
</div>
<div class="exp-item rv">
<div class="exp-period">Aug 2023<br>Feb 2024</div>
<div>
<div class="exp-role">CTI Analyst Intern</div>
<div class="exp-company">Technisanct · Kochi</div>
<div class="exp-desc">CTI Fundamentals, Automated & Manual Monitoring, Threat Actor and Dark Web Surveillance.</div>
<div class="exp-tags"><span class="exp-tag">OSINT</span><span class="exp-tag">Dark Web</span><span class="exp-tag">CTI</span></div>
</div>
</div>
<div class="exp-item rv">
<div class="exp-period">Feb 2023<br>Present</div>
<div>
<div class="exp-role">Security Researcher</div>
<div class="exp-company">Bugcrowd</div>
<div class="exp-desc">Bug bounty research — identifying and reporting vulnerabilities across multiple programs.</div>
<div class="exp-tags"><span class="exp-tag">Bug Bounty</span><span class="exp-tag">Web Security</span></div>
</div>
</div>
<div class="exp-item rv">
<div class="exp-period">Nov 2022<br>Apr 2023</div>
<div>
<div class="exp-role">Cyber Security Engineer Intern</div>
<div class="exp-company">CyberCrews Hacker Academy</div>
<div class="exp-desc">Malware Analysis, SOC Analysis, VAPT, Manual Testing, and Log Analysis.</div>
<div class="exp-tags"><span class="exp-tag">Malware</span><span class="exp-tag">SOC</span><span class="exp-tag">VAPT</span></div>
</div>
</div>
<div class="exp-item rv">
<div class="exp-period">Feb 2021<br>Present</div>
<div>
<div class="exp-role">CTF Player</div>
<div class="exp-company">TryHackMe</div>
<div class="exp-desc">PenTesting, Web App Security, and Linux Administration challenges.</div>
<div class="exp-tags"><span class="exp-tag">CTF</span><span class="exp-tag">Linux</span><span class="exp-tag">Web App</span></div>
</div>
</div>
</div>
</section>
<!-- SERVICES -->
<section id="services" class="section">
<div class="sec-header rv"><div class="sec-title">Services</div></div>
<div class="services-grid">
<div class="svc-card rv"><div class="svc-icon">🛡️</div><div class="svc-title">InfoSec Training</div><div class="svc-desc">Cryptography, network security, web app security, ethical hacking with Python & Linux.</div></div>
<div class="svc-card rv"><div class="svc-icon">⚔️</div><div class="svc-title">Penetration Testing</div><div class="svc-desc">Simulated attacks to identify and exploit vulnerabilities before malicious actors do.</div></div>
<div class="svc-card rv"><div class="svc-icon">🌐</div><div class="svc-title">Web VAPT</div><div class="svc-desc">SQL injection, XSS, broken auth, and other web/API vulnerability assessment.</div></div>
<div class="svc-card rv"><div class="svc-icon">🔍</div><div class="svc-title">Source Code Review</div><div class="svc-desc">Identifying security flaws and bugs in source code for quality and compliance.</div></div>
<div class="svc-card rv"><div class="svc-icon">🔗</div><div class="svc-title">Network VAPT</div><div class="svc-desc">Testing routers, switches, firewalls, and wireless devices for vulnerabilities.</div></div>
<div class="svc-card rv"><div class="svc-icon">📡</div><div class="svc-title">SOC Analysis</div><div class="svc-desc">Monitoring and responding to security incidents to ensure data integrity.</div></div>
<div class="svc-card rv"><div class="svc-icon">📊</div><div class="svc-title">Splunk Analysis</div><div class="svc-desc">Deep log analysis to detect and address security threats efficiently.</div></div>
<div class="svc-card rv"><div class="svc-icon">🕵️</div><div class="svc-title">OSINT</div><div class="svc-desc">Gathering open-source intelligence to stay ahead of emerging threats.</div></div>
</div>
</section>
<!-- TOOLS -->
<section id="tools" class="section">
<div class="sec-header rv"><div class="sec-title">Tools & Platforms</div></div>
<div class="tools-grid">
<div class="tool-item rv"><div class="tool-icon"><i class="fa-solid fa-network-wired"></i></div><div><div class="tool-name">NMap</div><div class="tool-sub">Network Scanner</div></div></div>
<div class="tool-item rv"><div class="tool-icon"><i class="fa-solid fa-chart-bar"></i></div><div><div class="tool-name">Splunk</div><div class="tool-sub">SIEM Platform</div></div></div>
<div class="tool-item rv"><div class="tool-icon"><i class="fa-solid fa-bug"></i></div><div><div class="tool-name">Burp Suite</div><div class="tool-sub">Web Security</div></div></div>
<div class="tool-item rv"><div class="tool-icon"><i class="fa-brands fa-linux"></i></div><div><div class="tool-name">Kali Linux</div><div class="tool-sub">Pentesting OS</div></div></div>
<div class="tool-item rv"><div class="tool-icon"><i class="fa-solid fa-magnifying-glass"></i></div><div><div class="tool-name">Maltego</div><div class="tool-sub">OSINT Tool</div></div></div>
<div class="tool-item rv"><div class="tool-icon"><i class="fa-solid fa-shield-virus"></i></div><div><div class="tool-name">Wireshark</div><div class="tool-sub">Packet Analyzer</div></div></div>
<div class="tool-item rv"><div class="tool-icon"><i class="fa-solid fa-fire"></i></div><div><div class="tool-name">Metasploit</div><div class="tool-sub">Exploit Framework</div></div></div>
<div class="tool-item rv"><div class="tool-icon"><i class="fa-solid fa-eye"></i></div><div><div class="tool-name">falconfeeds.io</div><div class="tool-sub">CTI Platform</div></div></div>
<div class="tool-item rv"><div class="tool-icon"><i class="fa-solid fa-terminal"></i></div><div><div class="tool-name">Python</div><div class="tool-sub">Scripting</div></div></div>
<div class="tool-item rv"><div class="tool-icon"><i class="fa-solid fa-flag"></i></div><div><div class="tool-name">TryHackMe</div><div class="tool-sub">CTF Platform</div></div></div>
<div class="tool-item rv"><div class="tool-icon"><i class="fa-solid fa-dollar-sign"></i></div><div><div class="tool-name">Bugcrowd</div><div class="tool-sub">Bug Bounty</div></div></div>
<div class="tool-item rv"><div class="tool-icon"><i class="fa-solid fa-database"></i></div><div><div class="tool-name">Shodan</div><div class="tool-sub">OSINT / IoT</div></div></div>
</div>
</section>
<!-- BLOG -->
<section id="blog" class="section">
<div class="sec-header rv">
<div class="sec-title">Blog</div>
<a href="https://medium.com/@msf899" target="_blank" class="sec-link">View all <i class="fa-solid fa-arrow-up-right"></i></a>
</div>
<div class="blog-list">
<a href="https://medium.com/@msf899" target="_blank" class="blog-item rv">
<div>
<div class="blog-num">01</div>
<div class="blog-title">KillSec's Rise: From Hacktivism To RaaS And The New Version 4.0</div>
<div class="blog-excerpt">How ransomware evolved into one of the world's most disruptive criminal industries...</div>
</div>
<div class="blog-arrow"><i class="fa-solid fa-arrow-up-right"></i></div>
</a>
<a href="https://medium.com/@msf899" target="_blank" class="blog-item rv">
<div>
<div class="blog-num">02</div>
<div class="blog-title">Inside The Rise Of DieNet</div>
<div class="blog-excerpt">On March 7, 2025, a new name quietly emerged in the cyber landscape — DieNet...</div>
</div>
<div class="blog-arrow"><i class="fa-solid fa-arrow-up-right"></i></div>
</a>
<a href="https://medium.com/@msf899" target="_blank" class="blog-item rv">
<div>
<div class="blog-num">03</div>
<div class="blog-title">More on Cyber Threat Intelligence</div>
<div class="blog-excerpt">Explore the full collection — ransomware, dark web, OSINT, and threat actor analyses.</div>
</div>
<div class="blog-arrow"><i class="fa-solid fa-arrow-up-right"></i></div>
</a>
</div>
</section>
<!-- CONTACT -->
<section id="contact" class="section">
<div class="contact-card rv">
<div class="contact-title">Let's work together.</div>
<div class="contact-sub">Available for freelance cybersecurity projects, penetration testing, and consulting.</div>
<div class="cf-row">
<input class="cf-input" type="text" placeholder="Name" id="cf-name">
<input class="cf-input" type="email" placeholder="Email" id="cf-email">
</div>
<select class="cf-select" id="cf-budget">
<option value="" disabled selected>Budget range</option>
<option><$500</option><option>$500 – $2k</option><option>$2k – $5k</option><option>>$5k</option>
</select>
<textarea class="cf-textarea" placeholder="Tell me about your project..." id="cf-msg"></textarea>
<button class="cf-btn" id="cf-submit">Send Message</button>
</div>
</section>
<footer>
<span>© 2026 Makhmudovs</span>
<span style="color:var(--muted2)">UZBEKISTAN, Tashkent</span>
</footer>
</main>
</div>
<!-- AI ASSISTANT -->
<div id="aiWrap">
<div class="ai-panel" id="aiPanel">
<div class="ai-head">
<div class="ai-avatar"><i class="fa-solid fa-robot"></i></div>
<div>
<div class="ai-head-name">Makhmudovs's Assistant</div>
<div class="ai-head-status">Online</div>
</div>
<button class="ai-close-btn" id="aiClose"><i class="fa-solid fa-xmark"></i></button>
</div>
<div class="ai-body" id="aiBody">
<div class="amsg bot">👋 Hi! Ask me anything about Makhmudovs — skills, experience, or how to work with him.</div>
</div>
<div class="ai-chips" id="aiChips">
<button class="chip">Skills</button>
<button class="chip">Services</button>
<button class="chip">Experience</button>
<button class="chip">Contact</button>
</div>
<div class="ai-input-row">
<input class="ai-inp" id="aiInp" placeholder="Ask something..." autocomplete="off">
<button class="ai-send-btn" id="aiSend"><i class="fa-solid fa-paper-plane"></i></button>
</div>
</div>
<button class="ai-toggle-btn" id="aiToggle"><i class="fa-solid fa-robot"></i></button>
</div>
<script>
/* ===== CURSOR ===== */
const cur = document.getElementById('cur'), curR = document.getElementById('curR');
let mx = 0, my = 0, rx = 0, ry = 0;
document.addEventListener('mousemove', e => { mx = e.clientX; my = e.clientY; });
(function loop() {
cur.style.left = mx + 'px'; cur.style.top = my + 'px';
rx += (mx - rx) * .12; ry += (my - ry) * .12;
curR.style.left = rx + 'px'; curR.style.top = ry + 'px';
requestAnimationFrame(loop);
})();
document.querySelectorAll('a,button,.skill-card,.svc-card,.tool-item,.blog-item').forEach(el => {
el.addEventListener('mouseenter', () => { cur.style.width = cur.style.height = '16px'; curR.style.width = curR.style.height = '42px'; });
el.addEventListener('mouseleave', () => { cur.style.width = cur.style.height = '8px'; curR.style.width = curR.style.height = '28px'; });
});
/* ===== BINARY GLITCH HERO ===== */
const lines = [
{ el: document.getElementById('line1'), text: 'CYBER' },
{ el: document.getElementById('line2'), text: 'SECURITY' },
{ el: document.getElementById('line3'), text: 'EXPERT.' }
];
lines.forEach(({ el, text }) => {
el.innerHTML = '';
[...text].forEach(ch => {
const span = document.createElement('span');
span.className = 'glitch-char';
span.dataset.orig = ch;
span.textContent = ch;
el.appendChild(span);
});
});
const allSpans = lines.flatMap(({ el }) => [...el.querySelectorAll('.glitch-char')]);
setInterval(() => {
const count = Math.random() < 0.5 ? 2 : 3;
const shuffled = [...allSpans].sort(() => Math.random() - 0.5).slice(0, count);
shuffled.forEach(span => {
span.textContent = Math.random() < 0.5 ? '0' : '1';
span.classList.add('bin');
setTimeout(() => { span.textContent = span.dataset.orig; span.classList.remove('bin'); }, 300);
});
}, 1500);
/* ===== SCROLL REVEAL + SKILL BARS ===== */
const obs = new IntersectionObserver(entries => {
entries.forEach(e => {
if (e.isIntersecting) {
e.target.classList.add('on');
const f = e.target.querySelector('.skill-fill');
if (f) setTimeout(() => { f.style.width = f.dataset.w + '%'; }, 200);
obs.unobserve(e.target);
}
});
}, { threshold: .12 });
document.querySelectorAll('.rv').forEach((el, i) => {
el.style.transitionDelay = (i % 6) * .055 + 's';
obs.observe(el);
});
/* ===== ACTIVE NAV ON SCROLL ===== */
const secEls = document.querySelectorAll('section[id]');
const navAs = document.querySelectorAll('.topnav-links a');
const navObs = new IntersectionObserver(entries => {
entries.forEach(e => {
if (e.isIntersecting) {
navAs.forEach(a => a.classList.remove('active'));
const a = document.querySelector('.topnav-links a[href="#' + e.target.id + '"]');
if (a) a.classList.add('active');
}
});
}, { threshold: .35 });
secEls.forEach(s => navObs.observe(s));
/* ===== CONTACT FORM ===== */
document.getElementById('cf-submit').addEventListener('click', function () {
const name = document.getElementById('cf-name').value.trim();
const email = document.getElementById('cf-email').value.trim();
const msg = document.getElementById('cf-msg').value.trim();
if (!name || !email || !msg) {
alert('Please fill in your name, email, and message.');
return;
}
const mailto = 'mailto:msf899@proton.me?subject=Portfolio%20Inquiry%20from%20' + encodeURIComponent(name) + '&body=' + encodeURIComponent('Name: ' + name + '\nEmail: ' + email + '\n\n' + msg);
window.location.href = mailto;
});
/* ===== AI ASSISTANT (local smart responses — no API key needed) ===== */
const aiPanel = document.getElementById('aiPanel');
const aiBody = document.getElementById('aiBody');
const aiInp = document.getElementById('aiInp');
const aiChips = document.getElementById('aiChips');
document.getElementById('aiToggle').onclick = () => aiPanel.classList.toggle('open');
document.getElementById('aiClose').onclick = () => aiPanel.classList.remove('open');
aiChips.querySelectorAll('.chip').forEach(c => { c.onclick = () => { aiInp.value = c.textContent; send(); }; });
document.getElementById('aiSend').onclick = send;
aiInp.addEventListener('keydown', e => { if (e.key === 'Enter') send(); });
function addMsg(html, role) {
const d = document.createElement('div');
d.className = 'amsg ' + role;
d.innerHTML = html;
aiBody.appendChild(d);
aiBody.scrollTop = aiBody.scrollHeight;
}
function showTyping() {
const d = document.createElement('div');
d.innerHTML = '<div class="tydots"><span></span><span></span><span></span></div>';
aiBody.appendChild(d);
aiBody.scrollTop = aiBody.scrollHeight;
return d;
}
const KB = [
{ keys: ['skill','what can','know','tech'], ans: '🛠️ Top skills: SOC Analysis (99%), NMap (95%), PenTesting & OSINT (90%), Splunk & Networking (80%). Also proficient in Cybersecurity and InfoSec fundamentals.' },
{ keys: ['service','offer','help','provide','do for'], ans: '🔒 Services include: Penetration Testing, Web & Network VAPT, SOC Analysis, Splunk Analysis, OSINT, Source Code Review, and InfoSec Training.' },
{ keys: ['experience','work','job','career','company','employer'], ans: '💼 CTI Analyst at Technisanct/falconfeeds.io (Feb 2024–now), CTI Intern (Aug 2023–Feb 2024), Security Researcher at Bugcrowd (Feb 2023–now), and Intern at CyberCrews Hacker Academy (Nov 2022–Apr 2023).' },
{ keys: ['contact','reach','hire','email','telegram','message','freelance'], ans: '📬 Use the Contact form on this page, or reach out via Telegram @nevertryyourfail, LinkedIn /in/msf899, or email through the form. Currently available for freelance projects!' },
{ keys: ['tool','platform','software','use'], ans: '⚙️ Tools: NMap, Splunk, Burp Suite, Kali Linux, Maltego, Wireshark, Metasploit, falconfeeds.io, Shodan, Python, TryHackMe, Bugcrowd.' },
{ keys: ['blog','article','write','post','medium'], ans: '📝 Published on Medium (@msf899): articles on KillSec ransomware group, DieNet threat actor emergence, dark web monitoring, and more CTI research.' },
{ keys: ['award','achiev','cert','accomplish'], ans: '🏆 Makhmudovs has received 5 awards in cybersecurity, with 190+ documented work hours across 3 companies over 12+ months of professional experience.' },
{ keys: ['location','based','where','country','city'], ans: '📍 Based in Tashkent, Uzbekistan. Available for remote work globally.' },
{ keys: ['social','github','linkedin','twitter','instagram','youtube'], ans: '🔗 Find Makhmudovs on: GitHub /msf899 · LinkedIn /in/msf899 · Twitter @makhmudovs899 · Instagram @makhmudovs899 · Medium @msf899 · Telegram @nevertryyourfail' },
{ keys: ['pentest','penetration','vapt','vuln'], ans: '⚔️ Penetration testing services cover web apps, APIs, networks, and mobile. Includes full report with PoC and remediation steps. Reach out via the contact form to discuss your scope.' },
{ keys: ['dark web','threat intel','cti','ransomware','osint'], ans: '🕵️ Specializes in Dark Web monitoring, ransomware group tracking, threat actor profiling, OSINT, and attack surface management — currently doing this full-time at Technisanct.' },
{ keys: ['price','cost','rate','budget','charge'], ans: '💰 Rates vary by project scope. The contact form has budget range options (from <$500 to >$5k). Send a message with your requirements for a custom quote.' },
];
function getReply(q) {
const lower = q.toLowerCase();
for (const item of KB) {
if (item.keys.some(k => lower.includes(k))) return item.ans;
}
return "🤔 I'm not sure about that. Try asking about <b>skills</b>, <b>services</b>, <b>experience</b>, <b>tools</b>, or <b>contact</b> info!";
}
function send() {
const txt = aiInp.value.trim();
if (!txt) return;
aiInp.value = '';
aiChips.style.display = 'none';
addMsg(txt, 'user');
const ty = showTyping();
setTimeout(() => {
ty.remove();
addMsg(getReply(txt), 'bot');
}, 600 + Math.random() * 400);
}
</script>
</body>
</html>