-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpassword-generator.php
325 lines (297 loc) · 14.7 KB
/
password-generator.php
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<?php
require("core.php");
head();
?>
<div class="content-wrapper">
<!--CONTENT CONTAINER-->
<!--===================================================-->
<div class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1 class="m-0 text-dark"><i class="fas fa-key"></i> Password Generator</h1>
</div>
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><a href="dashboard.php"><i class="fas fa-home"></i> Admin Panel</a></li>
<li class="breadcrumb-item active">Password Generator</li>
</ol>
</div>
</div>
</div>
</div>
<!--Page content-->
<!--===================================================-->
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-9">
<div class="card">
<div class="card-header">
<h3 class="card-title">Quick Password Generator</h3>
</div>
<div class="card-body">
<div class="row">
<div class="col-md-2">
<form method="post">
<button type="submit" name="quick-generate" class="btn btn-flat btn-primary">Generate<br />(8 Characters)</button>
<input name="length" type="hidden" value="8">
</form>
</div>
<div class="col-md-2">
<form method="post">
<button type="submit" name="quick-generate" class="btn btn-flat btn-primary">Generate<br />(12 Characters)</button>
<input name="length" type="hidden" value="12">
</form>
</div>
<div class="col-md-2">
<form method="post">
<button type="submit" name="quick-generate" class="btn btn-flat btn-primary">Generate<br />(16 Characters)</button>
<input name="length" type="hidden" value="16">
</form>
</div>
<div class="col-md-2">
<form method="post">
<button type="submit" name="quick-generate" class="btn btn-flat btn-primary">Generate<br />(32 Characters)</button>
<input name="length" type="hidden" value="32">
</form>
</div>
<?php
if (isset($_POST['quick-generate'])) {
$chars = "abcdefghijklmnopqrstuvwxyz0123456789";
$length = $_POST['length'];
$gpassword = substr(str_shuffle($chars), 0, $length);
}
?>
<div class="col-md-4">Generated Password: <input type="text" size="16" maxlength="16" class="form-control" placeholder="No generated password" value="<?php
echo @$gpassword;
?>" readonly></div>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h3 class="card-title">Advanced Password Generator</h3>
</div>
<form action="" method="post" class="form-horizontal form-bordered">
<div class="card-body">
<div class="row">
<div class="col-md-8">
<?php
$passwords = array();
if (isset($_POST['advanced-generate'])) {
$length = $_POST['length'];
$lcase_letters = "abcdefghijklmnopqrstuvwxyz";
$upcase_letters = strtoupper($lcase_letters);
$digits = "0123456789";
$spec_chars = $_POST['spec-chars'];
$amount = $_POST['amount'];
$chars = "";
if (isset($_POST['lcase-letters']))
$chars .= $lcase_letters;
if (isset($_POST['upcase-letters']))
$chars .= $upcase_letters;
if (isset($_POST['digits']))
$chars .= $digits;
if (isset($_POST['spec-chars']))
$chars .= $spec_chars;
for ($x = 1; $x <= $amount; $x++) {
$len = strlen($chars);
$pw = "";
for ($y = 1; $y <= $length; $y++) {
$pw .= substr($chars, rand(0, $len - 1), 1);
$pw = str_shuffle($pw);
}
$passwords[] = $pw;
}
}
?>
<div class="form-group">
<label class="control-label">Amount</label>
<div class="col-sm-12">
<div class="row">
<div id="slider" style="width:98%"></div>
Make <strong><span id="amount_span"></span></strong> passwords
<input type="hidden" id="amount" name="amount">
</div>
</div>
</div><hr>
<div class="form-group">
<label class="control-label">Length</label>
<div class="col-sm-12">
<div class="row">
<div id="slider2" style="width:98%"></div>
of <strong><span id="length_span"></span></strong> characters each
<input type="hidden" id="length" name="length">
</div>
</div>
</div><hr>
<div class="form-group">
<label class="control-label">Characters To Include</label>
<br />
<input type="checkbox" name="lcase-letters" class="psec-switch" checked="checked" />
Lower-case letters <kbd>abcdefghijklmnopqrstuvwxyz</kbd><br />
<input type="checkbox" name="upcase-letters" class="psec-switch" checked="checked" />
Upper-case letters <kbd>ABCDEFGHIJKLMNOPQRSTUVWXYZ</kbd><br />
<input type="checkbox" name="digits" class="psec-switch" checked="checked" />
Digits <kbd>0123456789</kbd><br /><br />
<input class="form-control" name="spec-chars" value="!#$%&()*+-=?[]{}|~">
Special characters to include (e.g. <kbd>!#$%&()*+-=?[]{}|~</kbd>). Repeat characters to increase frequency in the password(s).
</div>
</div>
<div class="col-md-4">
Generated Password(s):
<div class="card card-body bg-light">
<?php
if (isset($_POST['advanced-generate'])) {
$i = 1;
foreach ($passwords as $pass) {
echo "<strong>" . $i . ". </strong>" . $pass . "<br />";
$i++;
}
}
?>
</div>
</div>
</div>
</div>
<div class="card-footer">
<button type="submit" name="advanced-generate" class="btn btn-flat btn-primary">Generate</button>
<button type="reset" class="btn btn-flat btn-default">Reset</button>
</div>
</form>
</div>
<div class="card">
<div class="card-header">
<h3 class="card-title">Strong Password Definition</h3>
</div>
<div class="card-body">
<div class="row">
<div class="col-md-5">
<strong>A strong password:</strong>
<ul>
<li>…has at least <strong>15 characters</strong></li>
<li>…has <strong>uppercase letters</strong></li>
<li>…has <strong>lowercase letters</strong></li>
<li>…has <strong>numbers</strong></li>
<li>…is <strong>not</strong> like your <strong>previous passwords</strong></li>
<li>…is <strong>not</strong> your <strong>name</strong></li>
<li>…is <strong>not</strong> your <strong>login</strong></li>
</ul>
</div>
<div class="col-md-7">
<ul>
<li>…is <strong>not</strong> your <strong>friend’s name</strong></li>
<li>…is <strong>not</strong> your <strong>family member’s name</strong></li>
<li>…is <strong>not</strong> a dictionary <strong>word</strong></li>
<li>…is <strong>not</strong> a <strong>common name</strong></li>
<li>…is <strong>not</strong> a <strong>keyboard pattern</strong>, such as <kbd>qwerty</kbd>, <kbd>asdfghjkl</kbd>, or <kbd>12345678</kbd></li>
<li>…has <strong>symbols</strong>, such as <kbd>` ! " ? $ ? % ^ & * ( ) _ - + = { [ } ] : ; @ ' ~ # | \ < , > . ? /</kbd></li>
</ul>
</div>
</div>
<br />
<div class="card card-body bg-light">
<strong>To prevent your passwords from being hacked by social engineering, brute force or dictionary attack method, you should notice that:</strong>
<ol>
<li>Do not use the same password for multiple important accounts.</li>
<li>Use a password that has at least 15 characters, use at least one number, one uppercase letter, one lowercase letter and one special symbol.</li>
<li>Do not use the names of your families, friends or pets in your passwords.</li>
<li>Do not use postcodes, house numbers, phone numbers, birthdates, ID card numbers, social security numbers, and so on in your passwords.</li>
<li>Do not use any dictionary word in your passwords.</li>
<li>Do not let your Web browsers( FireFox, Chrome, Safari, Opera, IE ) store your passwords, since all passwords saved in Web browsers can be revealed easily.</li>
<li>Do not log in to important accounts on the computers of others, or when connected to a public Wi-Fi hotspot, Tor, free VPN or web proxy.</li>
<li>Do not send sensitive information online via HTTP or FTP connections, because messages in these connections can be sniffed with very little effort. You should use encrypted connections such as HTTPS and SFTP whenever possible.</li>
<li>It's recommended to change your passwords every 10 weeks.</li>
<li>It's recommended that you remember a few master passwords, store other passwords in a plain text file and encrypt this file with 7-Zip, GPG or a disk encryption software such as BitLocker, or manage your passwords with a password management software such as iPassword Generator.</li>
<li>Turn on 2-step authentication whenever possible.</li>
<li>Do not store your critical passwords in the cloud.</li>
<li>Access important websites( e.g. Paypal ) from bookmarks directly, otherwise please check its domain name carefully, it's a good idea to check the popularity of a website with Alexa toolbar to ensure that it's not a phishing website before entering your password.</li>
<li>Protect your computer with firewall and antivirus software, only download software from reputable websites, and verify the MD5 or SHA1 checksum of the installation package whenever possible, it can be done easily online at OnlineMD5.com.</li>
<li>If you're a webmaster, do not store the users passwords in the database, you should store the ( MD5 or SHA1 )hash values of passwords instead.</li>
</ol>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-header">
<h3 class="card-title">Information & Tips</h3>
</div>
<div class="card-body">
Use the <strong>Password Generator</strong> to create highly secure passwords that are difficult to crack or guess. Just select the criteria for the passwords you need, and click "Generate Password(s)". Remember, the more options you choose, the more secure the passwords will be.
</div>
</div>
<div class="card">
<div class="card-header">
<h3 class="card-title">How To Remember Your Passwords</h3>
</div>
<div class="card-body">
<ul>
<li>Use a password manager</li>
<li>…or write down your passwords.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!--===================================================-->
<!--End page content-->
</div>
<!--===================================================-->
<!--END CONTENT CONTAINER-->
</div>
<script>
var elems = Array.prototype.slice.call(document.querySelectorAll('.psec-switch'));
elems.forEach(function(html) {
var switchery = new Switchery(html);
});
var stepSlider = document.getElementById('slider');
noUiSlider.create(stepSlider , {
start: [ 25 ],
step: 1,
connect: "lower",
range: {
'min': [ 0 ],
'max': [ 100 ]
},
format: wNumb({
decimals: 0
})
});
var stepSliderValueElement = document.getElementById('amount_span');
stepSlider.noUiSlider.on('update', function( values, handle ) {
stepSliderValueElement.innerHTML = values[handle];
});
$('#amount').val($('#amount_span').text());
$("#slider").click( function () {
$('#amount').val($('#amount_span').text());
});
var rangeSlider = document.getElementById('slider2');
noUiSlider.create(rangeSlider, {
start: [ 16 ],
step: 1,
connect: "lower",
range: {
'min': [ 0 ],
'max': [ 32 ]
},
format: wNumb({
decimals: 0
})
});
var rangeSliderValueElement = document.getElementById('length_span');
rangeSlider.noUiSlider.on('update', function( values, handle ) {
rangeSliderValueElement.innerHTML = values[handle];
});
$('#length').val($('#length_span').text());
$("#slider2").click( function () {
$('#length').val($('#length_span').text());
});
</script>
<?php
footer();
?>