验证oracle是用户名和密码是什么情况,ORACLE密码策略验证程序是什么?

ORACLE密码策略非常重要,下面就为您详细介绍ORACLE密码策略验证程序,如果您对ORACLE密码策略方面感兴趣的话,不妨一看。

密码字符串要求:

-- Check if the password is same as the username

-- Check for the minimum length of the password

-- Check if the password contains at least one letter, one digit and one

-- Check if the password differs from the previous password by at least

CREATE OR REPLACE FUNCTION SYS。

verify_function

(username varchar2,

password varchar2,

old_password varchar2)

RETURN boolean IS

n boolean;

m integer;

differ integer;

isdigit boolean;

ischar boolean;

ispunct boolean;

digitarray varchar2(20);

punctarray varchar2(25);

chararray varchar2(52);

BEGIN

digitarray:= ’0123456789’;

chararray:= ’abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ’;

punctarray:=’!"#$%&()``*+,-/:;?_’;

-- Check if the password is same as the username

IF NLS_LOWER(password) = NLS_LOWER(username) THEN

raise_application_error(-20001, ’Password same as or similar to user’);

END IF;

-- Check for the minimum length of the password

IF length(password) < 8 THEN

raise_application_error(-20002, ’Password length less than 8’);

END IF;

-- Check if the password is too simple。

A dictionary of words may be

-- maintained and a check may be made so as not to allow the words

-- that are too simple for the password。

IF NLS_LOWER(password) IN (’welcome’, ’database’, ’account’, ’user’, ’password’, ’oracle’, ’computer’, ’abcd’) THEN

raise_application_error(-20002, ’Password too simple’);

END IF;

-- Check if the password contains at least one letter, one digit and one

-- punctuation mark。

-- 1。 Check for the digit

1。isdigit:=FALSE;

2。m := length(password);

3。FOR i IN 1。。10 LOOP

4。FOR j IN 1。。m LOOP

5。

IF substr(password,j,1) = substr(digitarray,i,1) THEN

6。isdigit:=TRUE;

7。GOTO findchar;

8。END IF;

9。END LOOP;

10。END LOOP;

11。

IF isdigit = FALSE THEN。

全部

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值