Create index.html
parent
7d033464c4
commit
7693bace5e
|
@ -0,0 +1,52 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Malectrica Blog</title>
|
||||
<link rel="icon" type="image/png" href="../images/icotrp.png">
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header class="header">
|
||||
<div class="container">
|
||||
<img src="../images/logotrp.svg" alt="Malectrica Logo">
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="../">Home</a></li>
|
||||
<li><a href="../#services">Services</a></li>
|
||||
<li><a href="../#about">About</a></li>
|
||||
<li><a href="../#blog">Blog</a></li>
|
||||
<li><a href="../#bugs">Bugs Found</a></li>
|
||||
<li><a href="../#tools-packages">Tools</a></li>
|
||||
<li><a href="../#contact">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="blog-header">
|
||||
<div class="container">
|
||||
<h1>Welcome to the Malectrica Blog</h1>
|
||||
<p>Stay updated with the latest trends and tips in cybersecurity as well as some of our team's explorations.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="blog-content">
|
||||
<div class="container">
|
||||
<article class="blog-post">
|
||||
<h2><a href="./articles/manganelo-hack.html" class="blog-title">The Manganelo Hack (Uncovering a Security Disaster)</a></h2>
|
||||
<p class="author">By Witchdocsec and Tonabrix1</p>
|
||||
<p>This started when the researcher Tonabrix sent a link to a manga website, he asked us to confirm it authenticated us to his account when clicked. Indeed it did, this was concerning because the only 2 parameters that were used for said authentication process were a base64 encoded username and userID...</p>
|
||||
</article>
|
||||
<!-- Add more articles here -->
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<p>© 2024 Malectrica | All rights reserved</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue