Skip to content

Commit

Permalink
update_NCSC_Top100k
Browse files Browse the repository at this point in the history
  • Loading branch information
zgjx6 committed May 13, 2019
1 parent 256d198 commit 1b9be49
Show file tree
Hide file tree
Showing 16 changed files with 100,019 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
组合共分三阶:
一阶密码:仅根据一项个人信息生成的密码;
二阶密码:根据两项个人信息组合生成的密码;
三阶密码:由于部分人喜欢在两项个人信息中间加入一个特殊符号,以加强密码复杂度和强度,为了包含这种情况,故根据两项个人信息以及一个常用的连接符号(默认:@#.-_~!?%&*+=$/|)生成三阶密码。
三阶密码:由于部分人喜欢在两项个人信息中间加入一个特殊符号,以加强密码复杂度和强度,为了包含这种情况,故根据两项个人信息以及一个常用的连接符号(默认:.!_-#@:$&*~?%+=/|)生成三阶密码。

除了社会工程学密码以外,还提供了一些常用的弱密码(top100,csdn-top1700,常用10000,更多密码字典可自行搜索),两者结合可以大幅提高密码破解概率。
除了社会工程学密码以外,还提供了一些常用的弱密码(top100,csdn-top1700,常用10000,以及英国国家网络安全中心公布的10万个最常被黑的密码,更多密码字典可自行搜索),两者结合可以大幅提高密码破解概率。

为了安全起见,本程序不会记录任何日志,且代码开源于[我的Github](https://github.com/zgjx6/SocialEngineeringDictionaryGenerator)

Expand Down
4 changes: 3 additions & 1 deletion build/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,9 @@ def get_common():
content1700 = f.read()
with open(os.path.join(dirname, 'static', 'file', '10000pass.txt'), 'r') as f:
content10000 = f.read()
return jsonify({'content100': content100, 'content1700': content1700, 'content10000': content10000})
with open(os.path.join(dirname, 'static', 'file', 'NCSC_PwnedPasswordTop100k.txt'), 'r', encoding='utf8') as f:
NCSC100k = f.read()
return jsonify({'content100': content100, 'content1700': content1700, 'content10000': content10000, 'NCSC100k': NCSC100k})


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion build/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html><html lang="zh"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="description" content=""><meta name="author" content=""><meta http-equiv="cache-control" content="public"><meta http-equiv="expires" content="Fri, 30 Dec 2999 12:00:00 GMT"><link rel="shortcut icon" href="static/imgs/favicon.ico" type="image/x-icon"><link rel="icon" href="static/imgs/favicon.ico" type="image/x-icon"><!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]--><title></title><link rel="shortcut icon" href="favicon.ico"><link href="static/css/main-79585a978fa1e28f4daf.css" rel="stylesheet"></head><body><div id="wrapper"></div><script type="text/javascript" src="static/js/vendor-79585a978fa1e28f4daf.js"></script><script type="text/javascript" src="static/js/main-79585a978fa1e28f4daf.js"></script></body></html>
<![endif]--><title></title><link rel="shortcut icon" href="favicon.ico"><link href="static/css/main-2b756aca8eb0b89e08e6.css" rel="stylesheet"></head><body><div id="wrapper"></div><script type="text/javascript" src="static/js/vendor-2b756aca8eb0b89e08e6.js"></script><script type="text/javascript" src="static/js/main-2b756aca8eb0b89e08e6.js"></script></body></html>
Loading

0 comments on commit 1b9be49

Please sign in to comment.