-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
85 lines (74 loc) · 5.44 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>neupasswd: In-Brain password manager</title>
<meta http-equiv="cache-control" content="no-store, no-cache, must-revalidate" />
<meta http-equiv="Pragma" content="no-store, no-cache" />
<meta http-equiv="Expires" content="0" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, minimum-scale=1, user-scalable=no" />
<!-- Disable tap highlight on IE -->
<meta name="msapplication-tap-highlight" content="no">
<meta name="keywords" content="devfemibadmus, kcubeterm, password, password generator, security">
<meta name="description" content="neupasswd is a software use in generating uniques password for each of each service i.e you can generate special password for each of your social media or services with just one master password." />
<!-- Media Sharing -->
<meta property="og:title" content="neupasswd: In-Brain password manager" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://neupasswd.kcubeterm.com"/>
<meta property="og:description" content="neupasswd is a software use in generating uniques password for each of each service i.e you can generate special password for each of your social media or services with just one master password." />
<meta property="og:image" content="static/images/devfemibadmus.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@kcubeterm" />
<meta name="twitter:creator" content="@devfemibadmus" />
<meta name="twitter:image" content="static/images/devfemibadmus.png" />
<meta name="twitter:title" content="neupasswd: In-Brain password manager" />
<meta name="twitter:description" content="neupasswd is a software use in generating uniques password for each of each service i.e you can generate special password for each of your social media or services with just one master password." />
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="neupasswd">
<meta name="theme-color" content="blue">
<!-- App Styling -->
<link rel="icon" href="static/images/neupasswd.jpg">
<link rel="stylesheet" href="static/css/index.css" media="screen"/>
<!-- App Scripting -->
<script src="static/js/index.js"></script>
<script src="static/js/matrix.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js" integrity="sha512-E8QSvWZ0eCLGk4km3hxSsNmGWbLtSCSUcewDQPQWZF6pEU8GlT8a5fF32wOl1i8ftdMhssTrF/OhyGWwonTcXA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body onload="matrix();spawndrop();">
<div class="content">
<h1 class="neupasswd">neupasswd: In-Brain password manager </h1>
<p><span class="neupasswd">neupasswd</span> is a software use in generating uniques password for each of each service i.e you can generate special password for each of your social media or services with just one master password.</p>
<h2>How It Works</h1>
<p><span class="neupasswd">neupasswd</span> takes in a master password, the service name you wanna use the password for and the length of the password u want(never worry about the length you can choose as much as possible you dont need to cram it). Then it encrypt the master password in a way you can nerver guess of. Also you can retrieve/check ur passwordagain by doing same way.</p>
<ol>
<h2>Instructions:-</h2>
<li>Create a master password in your brain.</li>
<li>Enter the service name <span class="note">note: you will need this when trying to check/retrieve password</span>.</li>
<li>Now click generate to generate the unique password. you can always generate the same password later by simply giving the same master password and service name. but no one could generate the same password as long as you dont share your master password to anyone. this is why I call it in-Brain password manager.</li>
</ol>
<form onsubmit="return false;" method="post" name="myForm">
<label>masterpass</label>
<input type="password" name="masterpass" id="mpass" oninput="encryp()"/> </br>
<label for="">Service Name</label>
<input type="text" name="sevice" id="service" oninput="encryp()"/> <br>
<label for="">password length</label>
<input type="text" id="length" placeholder=12 list="lengthlist" oninput="encryp()"/>
<datalist id="lengthlist">
<option value="12">
<option value="16">
<option value="20">
<option value="24">
<option value="30">
</datalist>
<input type="submit" name="submit" onclick="init()" />
</form>
<p id="result"></p>
<canvas id="canvas" width="100%"></canvas>
</div>
</body>
</html>