From 33b1eb9ea4e2cf95e24941f518bae61c70326913 Mon Sep 17 00:00:00 2001 From: Ashen Gunaratne Date: Fri, 15 Mar 2024 19:13:30 +0000 Subject: [PATCH] [cybersecurity] Add random password --- src/_includes/base.html | 4 +- src/cryptography/random.html | 174 +++++++++++++++++++++++++++++++++++ 2 files changed, 176 insertions(+), 2 deletions(-) create mode 100644 src/cryptography/random.html diff --git a/src/_includes/base.html b/src/_includes/base.html index 4476d94..2c31c58 100644 --- a/src/_includes/base.html +++ b/src/_includes/base.html @@ -14,8 +14,8 @@ {{ metadata }} - - + + {{ scripts }} diff --git a/src/cryptography/random.html b/src/cryptography/random.html new file mode 100644 index 0000000..beeea94 --- /dev/null +++ b/src/cryptography/random.html @@ -0,0 +1,174 @@ +--- +lang: en +title: Random Password +desc: A login page with a random password with prominent security vulnerabilities +keywords: ashen, gunaratne, ashen m. gunaratne, random, pseudorandom, password, login, vulnerabilities +--- + +{%- capture metadata -%} + + + + + + +{{ page.title }} + + +{%- endcapture -%} {%- capture scripts -%} + +{%- endcapture -%} {%- capture body -%} +
+
+
+ + +
+ +
+ +{%- endcapture -%} {%- include base.html -%} {%- comment -%} vim: set expandtab +shiftwidth=2 syntax=liquid: {%- endcomment -%}