-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (77 loc) · 3.55 KB
/
index.html
File metadata and controls
80 lines (77 loc) · 3.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/d0c5025972.js" crossorigin="anonymous"></script>
<link rel="icon" type="image/x-icon" href="./pfp.jpg">
<title>IoTWar's Portfolio</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./projects.html">Projects</a></li>
</ul>
</nav>
</header>
<section class="banner">
<img src="./backgrounds/mountains.gif" alt="Banner Image" class="blurred-img">
<div class="profile">
<img src="./pfp.jpg" alt="Profile Image">
<h1>IoTWar's Portfolio</h1>
<a href="https://github.com/iotwar" class="social-icons"><i class="fa-brands fa-github fa-2x white-icon"></i></a>
<a href="https://discord.gg/ComingSoon!" class="social-icons"><i class="fa-brands fa-discord fa-2xl white-icon"></i></a>
</div>
</section>
<section class="projects">
<div class="project">
<div class="project-content">
<img src="projectsimgs/inori.png" alt="Project Image" class="project-image">
<div class="separator"></div>
<div class="project-text">
<h2>Inori</h2>
<p>
Inori Is A Advanced CNC Based Off The Mirai Botnet, But Its Built With 100% Custom Code Allowing For It To Succeed, The Zombie Code Is 10x More Advanced Than Any Public Mirai Will Ever Be. The Source Code Sold For 450$ In 2023.
</div>
</div>
</div>
<div class="horizontal-separator"></div>
<section class="projects">
<div class="project">
<div class="project-content">
<div class="project-text-right">
<!-- Adjusted class here -->
<h2>Satsujin</h2>
<p>
Satsujin Is Another Mirai I've Developed, But This One Was For Personal Use. Satsujin Has The Most Advanced Zombie Code Out Of Any Mirai You Can Throw Out There, The Bin Moved From Folder To Folder And Kept Quiet. The Source Hasn't Sold.
</p>
</div>
<div class="separator"></div>
<img src="projectsimgs/satsujin.png" alt="Project Image" class="project-image">
</div>
</div>
<div class="horizontal-separator"></div>
<div class="project">
<div class="project-content">
<img src="projectsimgs/antiqbot.png" alt="Project Image" class="project-image">
<div class="separator"></div>
<div class="project-text">
<h2>AntiQbot</h2>
<p>
This Is A Fun But Small Project, It's Just To Show My Hatred Towards The QBot Botnets, To Keep It Simple The Device Connects And Sends A Message, We Exploit That To Send ANSI Commands Over To Show A Image. The Source Can Be Found At https://github.com/iotwar/AntiQbot.
</p>
</div>
</div>
</div>
</section>
<footer>
<p style="text-align: center; margin: 20px 0;">
Copyright <a href="https://github.com/OddDevelopment/GlampPortfolio" target="_blank">Source</a> by
<a href="https://odd.gay" target="_blank">Odd</a>
</p>
</footer>
</body>
</html>