-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathmemorable-secure-password-generator.html
250 lines (241 loc) · 12 KB
/
memorable-secure-password-generator.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
---
title: Easy To Remember Secure Password Generator | Developer Tools
layout: post
---
<html>
<head>
<!-- Meta tags common for website -->
{% include common-meta %}
<title>{{ page.title }}</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<meta name="description"
content="This is easy to use open source tool to generate human memorable password based on user input and random character replacements that make it secure and complex for brute force attacks." />
<meta name="keywords" content="online,tool,password,easy,memorable,human,secure,complext,web,opensource" />
<!-- CSS for the site theme -->
{% include theme-css %}
<!-- Annoying IE fixes -->
{% include ie-fixes %}
</head>
<body class="hold-transition skin-green sidebar-mini">
<!-- Site wrapper -->
<div class="wrapper">
<!-- header tag from theme -->
{% include theme-header %}
<!-- Sidebar for the whole website -->
{% include theme-sidebar %}
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-6">
<div class="box box-danger">
<div class="box-header with-border">
<h1 class="box-title">Memorable Secure Password Generator - Easy Password For Humans
</h1>
</div>
<!-- /.box-header -->
<!-- form start -->
<div class="box-body">
<form role="form">
<div class="form-group">
<label for="result">Memorable password(See Tips to Remember This password)</label>
<div class="input-group margin">
<input class="form-control" name="result" id="result" type="text"
placeholder="Copy password from here" readonly="readonly" />
<span class="input-group-btn">
<button type="button" id="copy-result"
class="btn btn-default btn-flat"><i class="fa fa-copy"></i> Copy
Password</button>
</span>
</div>
<span class="label label-success" id="confirm-result" style="display:none"><i
class="fa fa-check"></i> Copied</span>
</div>
<div class="form-group">
<label for="strength">Password Strength </label>
<div id="strength"><span class="label"></span></div>
</div>
<div class="form-group">
<label for="words">Your memorable word(s) </label>
<input class="form-control" type="text" id="words" name="words" value=""
placeholder="Enter a word(s) or sentence that you can remember"
autofocus="true" />
</div>
</form>
</div>
<!-- /.box-body -->
<div class="box-footer">
<div class="row">
<div class="col-xs-1">
<button type="button" class="btn btn-success" id="submit">Generate
Password</button>
</div>
</div>
</div>
<!-- /.box-footer -->
</div>
</div>
<div class="col-md-6">
<div class="box box-danger">
<div class="box-header with-border">
<h3 class="box-title">Tips To Remember This Password Easily</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<div id="memory-tips"></div>
</div>
<!-- /.box-body -->
</div>
</div>
</div>
</section>
<section class="content">
<div class="box box-danger">
<div class="box-header with-border">
<h3 class="box-title">About Easy To Remember Secure Password Generator Tool</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<img class="img-responsive" src="images/security.jpg"
alt="Easy To Remember Secure Password Generator Tool"
title="Easy To Remember Secure Password Generator Tool">
<p>This is a free online tool to do simple password generation that you can easily remember.
Generally coming up with a secured password is not easy. Even if you create a secure
password it become hard to remember. This password tool
can suggest a complex password based on your choice of words or sentences. </p>
</div>
<!-- /.box-body -->
</div>
<div class="box box-danger">
<div class="box-header with-border">
<h3 class="box-title">Why Password Generator Is Needed?</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<p>Complex password is essential to keep your data secure online. All complex passwords may not
be easy to remember. We use simple simple well known techniques to suggest relatively secure
passwords. This helps you stay secure at
the same time remember your password.</p>
</div>
<!-- /.box-body -->
</div>
<div class="box box-danger">
<div class="box-header with-border">
<h3 class="box-title">How To Remember This Password?</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<p>Since the password is based on your input it may be easy to remember. We do minor noticeable
changes in your words to generate a complex looking password. Some techniques are obvious
and some you can learn as you see them.</p>
<p>We randomly replace the alphabets with their similar looking characters. This will make it
easy to remember but partly random password. For example letter lowercase <code>s</code> can
be replaced with any one of these <code>S, 5, $</code></p>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
<div class="box box-danger">
<div class="box-header with-border">
<h3 class="box-title">How Secure is This Password?</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<p>Since this password is based on your input its complexity mainly depends on your inputs. We
are just doing some random replacements in your words to me make it little complex. It is
also well known fact that no password is secure.
However, as the complexity is high there is a low risk of compromise.</p>
<p>Please note that we are using a randomization logic to generate these passwords and sometimes
you may end up with not very complex password. We recommend you to retry generation and do
it until you think it is complex enough.</p>
</div>
<!-- /.box-body -->
</div>
<div class="box box-danger">
<div class="box-header with-border">
<h3 class="box-title">What Should I Enter In Memorable Words Field?</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<p>You can enter a word or sentence that you can remember easily. For example, you can use a
street address, or favorite movie title, or anything that you can remember in future.</p>
<p>Note: Do not enter any sensitive informaiton on this page.</p>
</div>
<!-- /.box-body -->
</div>
</section>
{% include addthis %}
</div>
<!-- /.content-wrapper -->
{% include theme-footer %}
</div>
<!-- ./wrapper -->
{% include theme-bottom-js %}
</body>
<script src="javascripts/fromdev-ux-addon.js"></script>
<script src="plugins/selectOnFocus/jquery.selectOnFocus.min.js"></script>
<script src="plugins/copyText/jquery.copyText.min.js"></script>
<script src="javascripts/passutil.js"></script>
<script>
const easyPasswordFromInputString = (inputString) => {
const memorableWords = [
'One',
'Two',
'Three',
'Four',
'Five',
'Six',
'Seven',
'Eight',
'Nine',
'Ten',
'Good',
'Awesome',
'Best',
'Bright',
'Any'
];
};
var showStrength = function () {
$("#strength").html(checkPassStrength($("#result").val()));
};
const getMemoryTips = (result) => {
const u = [];
result.randomReplaceResult.requestLevelCharMappings.forEach((v, k, m) => { if (v !== k) u.push(`<p><code>${k}</code> <i class="fa fa-fw fa-arrows-h"></i> <code>${v}</code><p>`); });
return u.join('\n');
};
var generateAndShowPassword = function () {
$("#result").val('');
$('#memory-tips').empty();
var inputString = $("#words").val();
if (inputString) {
const result = securePasswordFromInputString(inputString);
$("#result").val(result.suggestion);
const tips = getMemoryTips(result);
$('#memory-tips').html(tips);
} else {
$("#words").focus();
}
showStrength();
};
$(document).ready(function () {
$("#submit").click(generateAndShowPassword);
$("#result").selectOnFocus();
$("#result").on("input", function () {
showStrength();
});
$('#words').keypress(function (e) {
var key = e.which;
if (key == 13) {
generateAndShowPassword();
return false;
}
});
CopyTextAddon.register('result');
$('#security-category').addClass('active');
$('.markdown-body').attr('style', 'max-width:100%;');
});
</script>
</html>