正德厚生,臻于至善

Oracle EBS密码安全

登录口令大小写 9829
SIGNON_PASSWORD_FAILURE_LIMIT 登录口令失败限制次数 5792
SIGNON_PASSWORD_HARD_TO_GUESS 登录口令应难以猜测 3844
SIGNON_PASSWORD_LENGTH 	登录口令长度 2027
SIGNON_PASSWORD_NO_REUSE 不得重新使用的登录口令 4524

Profile                      	Default	Recommendation
Signon Password Failure Limit	None   	3 (attempts)
Signon Password Hard to Guess	No     	Yes
Signon Password Length       	5      	7 (characters)
Signon Password No Reuse     	None   	180 (days)
Signon Password Custom       	None   	See Note Below
Password Case Option         	Null   	Sensitive

Signon Password Case
This profile option is not available from the beginning.
With 11i.ATG_PF.H RUP3  comes the system profile 'Password Case Option'
After 11i.ATG_PF.H.RUP4  this system profile option was renamed to  'Signon Password Case'.
There are two settings: 'Sensitive' and 'Insensitive'.
The default is 'Insensitive'.
Setting this profile option to 'Sensitive' will make the password case sensitive.
'Mixed' is no longer supported.

select u.user_name,v.* from applsys.fnd_profile_option_values v,fnd_user u
 where v.profile_option_id in (9829,5792,3844,2027,4524) and v.level_id=10004
 and u.user_id = v.level_value;

###update applsys.fnd_profile_option_values v,applsys.fnd_user u
###set v.profile_option_value=''
###where v.profile_option_id in (9829,5792,3844,2027,4524) and v.level_id=10004 and u.user_id = v.level_value;

delete from applsys.fnd_profile_option_values where profile_option_id in (9829,5792,3844,2027,4524) and level_id=10004;

1.Signon Password Failure Limit 登录口令失败限制次数
2.Signon Password Hard to Guess 登录口令应难以猜测 用户的密码中必须至少要有一个字母和一个数字,密码中不能包含用户名,且密码中的字符不能重复。 如某用户的用户名为ABC,则以下密码不被允许: 325763 密码中没有字母 ADFHTR 密码中没有数字 12ABC34 密码中包含用户名 DFGH11 密码中的1重复 
3.Signon Password Length 登录口令长度
4.Signon Password No Reuse 不得重新使用的登录口令 多少天内的密码不能重复使用 一般与 user 界面上的 Define user password expiration一起使用能保证用户的密码定时更换的需要
5.Signon Password Case 登录口令大小写。举例来说,某用户的密码AbsF1234,如果不区分大小写,则可以输入ABSF1234或者absf1234。但是如果区分大小写,则必须输入AbsF1234
赞(0) 打赏
未经允许不得转载:徐万新之路 » Oracle EBS密码安全

评论 抢沙发

联系我们

觉得文章有用就打赏一下文章作者

支付宝扫一扫

微信扫一扫

登录

找回密码

注册