create table `blog_admin` (
`id` int(10) unsigned not null auto_increment,
`name` varchar(100) not null comment '使用者名稱',
`email` varchar(100) not null,
`pass` varchar(255) not null comment 'password_hash加密',
`userpic` varchar(255) not null comment '使用者頭像',
`status` tinyint(3) unsigned not null default '1' comment '1啟用 2禁用',
`reg_time` int(10) unsigned not null comment '註冊時間',
primary key(id)
) engine=innodb default charset=utf8;
-- 記錄後台管理員登陸資訊
create table `blog_admin_info` (
`id` int(10) unsigned primary key auto_increment not null,
`uid` int(10) unsigned not null,
`ipaddr` int(10) unsigned not null comment '使用者登陸ip',
`logintime` timestamp not null default current_timestamp on update current_timestamp comment '使用者登陸時間',
`pass_wrong_time_status` tinyint(10) unsigned not null comment '登陸密碼錯誤狀態' comment '0 正確 2錯誤'
) engine=innodb default charset=utf8;
06 密碼錯誤3次鎖定
usr bin env python coding utf8 author felix zheng count 0 計數器 username 111 登入使用者名稱 userpassword 111 登入密碼 讀取黑名單使用者 f open back user r file list f.readl...
原 Oracle使用者名稱和密碼鎖定處理
新安裝了oracle 11g 第2版,直接連線,提示使用者名稱scott鎖定。看來需要先解鎖scott使用者了。開啟sql plus,提示如下 請輸入使用者名稱 這裡輸入內容後回車 sys as sysdba 輸入口令 這裡不輸入,直接回車 這種登陸啟用的是os驗證方式,因此不用輸入使用者名稱,密碼...
xrdp 遠端登入需要輸入很多次密碼
本人環境為 ubuntu 20.04 相關方法 使用 xrdp 遠端登入 ubuntu,可能會出現以下彈框要求輸入密碼 描述資訊一般是 建立檔案 etc polkit 1 localauthority 50 local.d 45 allow colord.pkla並寫入內容 allow colord...