密碼安全加固
當生產環境oracle密碼快過期時,如果修改密碼的話應用程式也得對應停服務去修改密碼,連線資料庫的工具的密碼全部得做一次更新,這時候就可以用以下的安全加固方法了。
--1、查詢非被鎖狀態下的使用者、過期時間、profile、密碼 select username, profile,account_status,EXPIRY_DATE,password from dba_users where account_status not like '%LOCK%'; select name,password from sys.user$ where name in (select username from dba_users where account_status='OPEN'); select * from dba_profiles where RESOURCE_NAME in ('PASSWORD_REUSE_TIME','PASSWORD_REUSE_MAX'); --2、回退安全加固 alter profile default limit PASSWORD_REUSE_MAX unlimited; alter profile default limit PASSWORD_REUSE_TIME unlimited; alter profile MONITORING_PROFILE limit PASSWORD_REUSE_MAX unlimited; alter profile MONITORING_PROFILE limit PASSWORD_REUSE_TIME unlimited; --3、重新整理密碼(執行以下sql) select 'alter user ' name ' identified by values ''' password ''';' from sys.user$ where name in ( select username from dba_users where account_status not like '%LOCK%'); --4、安全加固 alter profile default limit PASSWORD_REUSE_MAX 5; alter profile default limit PASSWORD_REUSE_TIME 1800; alter profile MONITORING_PROFILE limit PASSWORD_REUSE_MAX 5; alter profile MONITORING_PROFILE limit PASSWORD_REUSE_TIME 1800; --5、檢查使用者過期日期及安全加固機制 select username, profile,account_status,EXPIRY_DATE,password from dba_users where account_status not like '%LOCK%'; select from dba_profiles where profile='DEFAULT';
來自 “ ITPUB部落格 ” ,連結:https://blog.itpub.net/70021989/viewspace-3006065/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【Linux】Linux安全加固指令碼Linux指令碼
- ios安全加固 ios 加固方案iOS
- 程式碼安全之程式碼混淆及加固(Android)?Android
- MySQL密碼安全MySql密碼
- PG密碼安全密碼
- open Euler安全加固
- 系統安全加固
- JavaScript混淆安全加固JavaScript
- 安全加固服務
- 密碼安全:密碼設定要求,密碼爆破辦法,密碼歸類使用,密碼處置方案密碼
- MySQL安全加固方法分享MySql
- 密碼學與密碼安全:理論與實踐密碼學
- 伺服器安全加固 - Linux伺服器Linux
- 密碼安全和無密碼身份認證那些事兒密碼
- 2019 最不安全密碼密碼
- iOS安全加固方法及實現iOS
- AIX作業系統安全加固AI作業系統
- 如何為NFS服務安全加固NFS
- 安全防護密碼學之網站安全公司密碼學網站
- 密碼學之安全模型總結密碼學模型
- 2.9.3 安全的外部密碼儲存密碼
- 【中介軟體安全】IIS6安全加固規範
- PbootCMS模板安全設定與加固方法boot
- Nginx伺服器安全加固tips整理Nginx伺服器
- Redis服務安全加固的說明Redis
- GNU/Linux安全基線與加固-0.1Linux
- 聯通光貓管理員密碼分析,不安全的密碼方案密碼
- win10進入安全模式需要密碼初始密碼是什麼Win10模式密碼
- iPhone怎麼共享WiFi密碼安全嗎?iPhone共享WiFi密碼的方法教程iPhoneWiFi密碼
- 密碼學之前後向安全性密碼學
- 密碼系統的安全性(一)密碼
- 密碼系統的安全性(二)密碼
- 不安全的瀏覽器密碼瀏覽器密碼
- 哪些密碼最不安全?NordPass 公佈2023年 Top 200常見密碼密碼
- win10安全模式如何跳過開機密碼_win10安全模式跳過開機密碼教程Win10模式密碼
- 初級安全入門——Windows作業系統的安全加固Windows作業系統
- iOS應用加固--程式碼混淆iOS
- 原始碼防洩密的底層安全基石原始碼