-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (29 loc) · 1.7 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Analyzing Password-Strength Meters - Main page</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="decoration"></div>
<div id="wrapper">
<div id="navigation">
<a href="./index.html">Main</a>
<a href="./paper.html">Paper</a>
<a href="">Tool (unavail.)</a>
<a href="./sources.html">Sources</a>
</div>
<div id="title">
<h1>Analyzing Password-Strength Meters - Main page</h1>
</div>
<div id ="content">
<p>This work is related to password-strength meters/checkers, which is that red and green bar informing you about the quality of your password when you are creating one on a registration webpage.<br>
We analyzed meters on highly popular websites to reveal their inner working. Results show critical weaknesses that may defeat the purpose of these meters: encouraging users to <b>willingly</b> choose better passwords.</p>
<p>On this website, you will find our NDSS 2014 paper along with a slightly extended version that gives more details on analyzed meters; a multi-checker tool we built to gather all password checkers into one place; and the sources and resources involved in this project.</p>
<p>You can download the <a href="./data/passwords-ndss-2014-slides.pdf">slides of our NDSS talk here</a>.</p>
<p>Authors: <a href="https://xavier2dc.fr">Xavier de Carné de Carnavalet</a> and <a href="https://users.encs.concordia.ca/~mmannan/">Mohammad Mannan</a></p>
</div>
</div>
</body>
</html>