Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d6e62e8
add password hardening yang model, yang test, init_cfg.json.j2 files
davidpil2002 Mar 8, 2022
f844b43
fix comments from P.R: add 3 YANG test, add YANG sample
davidpil2002 Mar 20, 2022
0d143f1
Merge branch 'master' into dev-password-hardening-yang-model
davidpil2002 Mar 22, 2022
a8cfb45
Add Password Hardening documentation to the YANG Configuration.md file
davidpil2002 Mar 22, 2022
7f6b284
remove white spaces
davidpil2002 Mar 22, 2022
b0a6f5c
fix Yang model test, replace PASSWORD table name to PASSW_HARDENING
davidpil2002 Apr 4, 2022
7b42206
fix yang test config typo true instead True
davidpil2002 Apr 4, 2022
9a68dd1
Password Hardening Yang model, fix typo
davidpil2002 Apr 6, 2022
90ed1ad
Passw Hardening Fix Yang test PASSWORD_BAD_EXPIRATION
davidpil2002 Apr 6, 2022
a978ef1
Passw Hardening fix Yang test expiration warning & len-min cases
davidpil2002 Apr 6, 2022
5e17f03
Passw Hardening - fix Table name PASSWORD
davidpil2002 Apr 6, 2022
6d222f7
add sonic-passwh.yang to setup.py file
davidpil2002 Apr 7, 2022
69190ef
Passw hardening, fix typo in sample_config_db.json
davidpil2002 Apr 7, 2022
b2404e1
Password Hardening Yang test - fix typo in sample_config_db.json file
davidpil2002 Apr 7, 2022
668d7ea
Password Hardening Yang test - fix typo in init_cfg.json.j2 file
davidpil2002 Apr 7, 2022
72f4446
Merge branch 'master' into dev-password-hardening-yang-model
davidpil2002 May 3, 2022
3ad5476
fix revision date in sonic-passwh.yang file
davidpil2002 May 3, 2022
4d3cf3b
Merge branch 'master' into dev-password-hardening-yang-model
davidpil2002 May 15, 2022
a6f7227
[password-hardening]Add state feature disabled as default in yang model
davidpil2002 May 15, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion files/build_templates/init_cfg.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,20 @@
"state" : "disabled", {% endif %}
"rate_limit_interval" : "600"
}{%if not loop.last %},{% endif -%}
{% endfor %}
{% endfor %}
},
"PASSW_HARDENING": {
"POLICIES":{
"state": "disabled",
"expiration": "180",
"expiration_warning": "15",
"history_cnt": "10",
"len_min": "8",
"reject_user_passw_match": "True",
"lower_class": "True",
"upper_class": "True",
"digits_class": "True",
"special_class": "True"
}
}
}
16 changes: 15 additions & 1 deletion src/sonic-yang-models/tests/files/sample_config_db.json
Original file line number Diff line number Diff line change
Expand Up @@ -1656,9 +1656,23 @@
"vlan_id": "111",
"vsid": "5000"
}
}
},


"PASSWORD": {
"policies": {
"state": "enabled",
"expiration": "180",
"expiration_warning": "15",
"history_cnt": "10",
"len_min": "8",
"username_passw_match": "True",
"digits_class": "True",
"lower_class": "True",
"special_class": "True",
"upper_class": "True"
}
}
},
"SAMPLE_CONFIG_DB_UNKNOWN": {
"UNKNOWN_TABLE": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"PASSWORD_TABLE": {
"desc": "Configure policer with all default fields."
},
"PASSWORD_ENABLE_FEATURE_WITH_POLICIES": {
"desc": "Configure password policies and enabled feature."
},
"PASSWORD_BAD_ENABLE_FEATURE": {
"desc": "Configure password policies enabled feature with a wrong value.",
"eStrKey" : "InvalidValue"
},
"PASSWORD_BAD_DIGIT": {
"desc": "Configure password Digit Class policy with invalid value",
"eStrKey" : "InvalidValue"
},
"PASSWORD_BAD_HISTORY_CNT": {
"desc": "Configure password history_cnt with out of range value",
"eStrKey" : "InvalidValue"
},
"PASSWORD_BAD_LEN_MIN": {
"desc": "Configure password len-min with out of range value",
"eStrKey" : "InvalidValue"
},
"PASSWORD_BAD_EXPIRATION": {
"desc": "Configure password expiration with out of range value",
"eStrKey" : "InvalidValue"
},
"PASSWORD_BAD_EXPIRATION_WARN": {
"desc": "Configure password expiration-warning with out of range value",
"eStrKey" : "InvalidValue"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
{
"PASSWORD_TABLE": {
"sonic-passwh:sonic-passwh": {
"sonic-passwh:PASSWORD": {
"POLICIES":{
"state": "disabled",
"expiration": "180",
"expiration_warning": "15",
"history_cnt": "10",
"len_min": "8",
"reject_user_passw_match": "True",
"lower_class": "True",
"upper_class": "True",
"digit_class": "True",
"special_class": "True"
}
}
}
},
"PASSWORD_ENABLE_FEATURE_WITH_POLICIES": {
"sonic-passwh:sonic-passwh": {
"sonic-passwh:PASSWORD": {
"POLICIES":{
"state": "enabled",
"expiration": "180",
"expiration_warning": "15",
"history_cnt": "10",
"len_min": "8",
"reject_user_passw_match": "True",
"lower_class": "True",
"upper_class": "True",
"digit_class": "True",
"special_class": "True"
}
}
}
},
"PASSWORD_BAD_ENABLE_FEATURE": {
"sonic-passwh:sonic-passwh": {
"sonic-passwh:PASSWORD": {
"POLICIES":{
"state": "33",
"expiration": "180",
"expiration_warning": "15",
"history_cnt": "10",
"len_min": "8",
"reject_user_passw_match": "True",
"lower_class": "True",
"upper_class": "True",
"digit_class": "True",
"special_class": "True"
}
}
}
},
"PASSWORD_BAD_DIGIT": {
"sonic-passwh:sonic-passwh": {
"sonic-passwh:PASSWORD": {
"POLICIES":{
"state": "disabled",
"expiration": "180",
"expiration_warning": "15",
"history_cnt": "10",
"len_min": "8",
"reject_user_passw_match": "True",
"lower_class": "True",
"upper_class": "True",
"digit_class": "1",
"special_class": "True"
}
}
}
},
"PASSWORD_BAD_HISTORY_CNT": {
"sonic-passwh:sonic-passwh": {
"sonic-passwh:PASSWORD": {
"POLICIES":{
"state": "enabled",
"expiration": "180",
"expiration_warning": "15",
"history_cnt": "300",
"len_min": "8",
"reject_user_passw_match": "True",
"lower_class": "True",
"upper_class": "True",
"digit_class": "True",
"special_class": "True"
}
}
}
},
"PASSWORD_BAD_LEN_MIN": {
"sonic-passwh:sonic-passwh": {
"sonic-passwh:PASSWORD": {
"POLICIES":{
"state": "enabled",
"expiration": "180",
"expiration_warning": "15",
"history_cnt": "50",
"len_min": "50",
"reject_user_passw_match": "True",
"lower_class": "True",
"upper_class": "True",
"digit_class": "True",
"special_class": "True"
}
}
}
},
"PASSWORD_BAD_EXPIRATION": {
"sonic-passwh:sonic-passwh": {
"sonic-passwh:PASSWORD": {
"POLICIES":{
"state": "enabled",
"expiration": "400",
"expiration_warning": "15",
"history_cnt": "50",
"len_min": "8",
"reject_user_passw_match": "True",
"lower_class": "True",
"upper_class": "True",
"digit_class": "True",
"special_class": "True"
}
}
}
},
"PASSWORD_BAD_EXPIRATION_WARN": {
"sonic-passwh:sonic-passwh": {
"sonic-passwh:PASSWORD": {
"POLICIES":{
"state": "enabled",
"expiration": "180",
"expiration_warning": "40",
"history_cnt": "10",
"len_min": "8",
"reject_user_passw_match": "True",
"lower_class": "True",
"upper_class": "True",
"digit_class": "True",
"special_class": "True"
}
}
}
}
}
75 changes: 75 additions & 0 deletions src/sonic-yang-models/yang-models/sonic-passwh.yang
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
module sonic-passwh {
yang-version 1.1;
namespace "http://github.com/Azure/sonic-passwh";
prefix password;

description "PASSWORD HARDENING YANG Module for SONiC OS";

revision 2021-10-12 {
description "First Revision";
}

container sonic-passwh {

typedef feature_state {
type enumeration {
enum enabled;
enum disabled;
}
}

container PASSW_HARDENING {
description "PASSWORD HARDENING part of config_db.json";
container POLICIES {
leaf state {
description "state of the feature";
type feature_state;
}
leaf expiration {
description "expiration time (days unit)";
type uint16 {
range 1..365;
}
}
leaf expiration_warning {
description "expiration warning time (days unit)";
type uint8 {
range 1..30;
}
}
leaf history_cnt {
description "num of old password that the system will recorded";
type uint8 {
range 1..100;
}
}
leaf len_min {
description "password min length";
type uint8 {
range 1..32;
}
}
leaf reject_user_passw_match{
description "username password match";
type boolean;
}
leaf lower_class{
description "password lower chars policy";
type boolean;
}
leaf upper_class{
description "password upper chars policy";
type boolean;
}
leaf digits_class{
description "password digits chars policy";
type boolean;
}
leaf special_class{
description "password special chars policy";
type boolean;
}
}/*container policies */
} /* container PASSWH */
}/* container sonic-passwh */
}/* end of module sonic-passwh */