Adding blog and return links

This commit is contained in:
KyleDOT 2024-06-07 16:51:08 +09:30
parent 0b99d1f481
commit 7a509ec4d3
7 changed files with 105 additions and 3 deletions

25
blog/2024-06-07_MFA-i.html Executable file
View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Kyle's Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="blog_head">
<h1>MFA & Radomness - Part i</h1>
<h3>2024-06-07</h3>
</div>
<div class="blog_body">
<p>Anecdotally I kept seeing certain numbers and patterns showing up in 2 digit MFA that I regularly use, notably double of adjacent numbers, so I started plotting them out, while I only have 80 data points from the last couple months. I believe it's slowly confirming my theory, could still be coincidence is at play with the low amount of data compared to the 90 possible outcomes, but if not I'm curious to as why they aren't a fair or even random.</p>
<img></img>
<p>I suppose the actual number isn't actually what is important to security, just that it's another layer of security, so even if the numbers are weighted to more friendly and easy to enter, bad actors will still need the user's device or convine the user to tell them the number. Just as long as you can't predict the next number with certainty when the current expires, it doesn't really matter how random the number is, just random enought that the next can't be predicted.</p>
<p>Note: I also believe this is true of a 6 digit I use regularly as (again anecdotally) I've picked up what I believe are patterns, unpredictable but still user friendly. I figured I track the 2 digit as it's easier to keep track of. Not all MFA would use the same number generation so some might be a more 'true' random while others like the one I'm plotting maybe weighted.</p>
<p>I've made this 'Part i' as I wish to return to my theory and findings once I have more data.</p>
</div>
</div>
<footer>
<p><a href="https://kyledot.net/blog/home">Return to blog home</a></p>
<p>Made by Kyle - Last updated: 2024-06-07</p>
</footer>
</body>
</html>

26
blog/home.html Executable file
View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title>Kyle's Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Kyle's Blog</h1>
<div class="container_index">
<div class="blogs_date">
<h2>By date</h2>
<p><a href="https://kyledot.net/blog/2024-06-07_MFA-i">2024-06-07 MFA & Randomness - Part i</a></p>
</div>
<div class="blogs_theme">
<h2>Tech</h2>
<p><a href="https://kyledot.net/blog/2024-06-07_MFA-i">2024-06-07 MFA & Randomness - Part i</a></p>
<h2>Life</h2>
<h2>Other</h2>
</div>
</div>
<footer>
<p><a href="https://kyledot.net">Return to home</a></p>
<p>Made by Kyle - Last updated: 2024-06-07</p>
</footer>
</body>
</html>

24
blog/style.css Executable file
View File

@ -0,0 +1,24 @@
body {background-color: #0f1a30;}
h1 {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;}
h2 {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: left;padding-left: 100px}
h3 {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;}
p {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;}
a {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;}
.container_index { display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"blog_date blog_theme";
p {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: left;padding-left: 100px;}
}
.blog_date { grid-area: blog_date; }
.blog_theme { grid-area: blog_theme; }
.blog_head {
}
.blog_body {
p {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: left;padding-left: 20%;padding-right: 20%;}
}

25
blog/template.html Executable file
View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Kyle's Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="blog_head">
<h1>Title</h1>
<h3>YYYY-MM-DD</h3>
</div>
<div class="blog_body">
<p>Para 1</p>
<img></img>
<p>Para 2</p>
<p>Para 3</p>
<p>Para 4</p>
</div>
</div>
<footer>
<p><a href="https://kyledot.net/blog/home">Return to blog home</a></p>
<p>Made by Kyle - Last updated: YYYY-MM-DD</p>
</footer>
</body>
</html>

View File

@ -12,11 +12,11 @@
<p><b><a href="https://kyledot.net">kyledot.net</a> - Index site</b></p>
<p><a href="https://kyledot.net/projects">kyledot.net/projects</a> - Projects</p>
<p><a href="https://kyledot.net/resume">kyledot.net/resume</a> - Resume*</p>
<p><a href="https://kyledot.net/blog/home">kyledot.net/blog/home</a> - Blog*</p>
</div>
<div class="thebakery">
<h2>TheBakery</h2>
<p><a href="https://downloads.thebakery.net.au">downloads.thebakery.net.au</a> - Download index</p>
<p><a href="https://blog.thebakery.net.au">blog.thebakery.net.au</a> - Ramble blog*</p>
<p><a href="https://shop.thebakery.net.au">shop.thebakery.net.au</a> - Joke shop*</p>
</div>
<div class="nightcall">

View File

@ -19,7 +19,8 @@
</div>
<footer>
<p>* Indicates planned or WIP project</p>
<p>Made by Kyle - Last updated: 2024-05-29</p>
<p><a href="https://kyledot.net">Return to home</a></p>
<p>Made by Kyle - Last updated: 2024-06-07</p>
</footer>
</body>
</html>

View File

@ -28,7 +28,8 @@
</div>
</div>
<footer>
<p>Made by Kyle - Last updated: 2024-06-02</p>
<p><a href="https://kyledot.net">Return to home</a></p>
<p>Made by Kyle - Last updated: 2024-06-07</p>
</footer>
</body>
</html>