當前位置:首頁 » 電腦故障 » 修改電腦密碼強度
擴展閱讀
無線通信網路的前沿 2025-06-23 04:11:08

修改電腦密碼強度

發布時間: 2022-08-04 21:54:19

『壹』 電腦怎麼設置搞強度登陸密碼,以防止別人登錄謝謝!

這個我提供一個辦法給你,你新建一個txt文件,然後在裡面編輯shutdown -s -t 60。最後把txt後綴改為bat,把這個文件放到開始——>啟動里,這樣做的結果是開機後會載入這個文件使計算機在60秒內關機。模擬成傳說中的病毒「沖擊波」的發毒症狀。你自己用的時候可以在60秒內輸入shutdown -a使命令失效。這樣你可以對同學說機器中病毒了,這樣就不會被人家說不給面子了,又可以保護自己的機器了。

在桌面上空白處(當然強烈建議不要放在桌面上)右鍵——新建——文本文檔
然後出現一個叫」新建 文本文檔.txt「的東西在桌面上,雙擊進去編輯「shutdown -s -t 60」然後保存。出去把文件的後綴txt改為bat,(沒有txt??好辦,隨便開一個文件夾,在頂部工具攔里選文件夾選項——查看,有一項叫「隱藏已知文件類型的擴展名」的把勾去掉)。改好以後,用滑鼠左鍵把文件拖動(不會什麼是拖動??暈倒,把滑鼠點到圖標上,按住左鍵不動,然後移動滑鼠,這就叫拖動)到開始——所有程序——啟動里就OK了,怕人看見這個文件??點中文件——右鍵——屬性,把隱藏前面的勾打上。還能看見一個模糊的圖標??暈倒你不是說不會的嘛??這都能搞出來,再隨便開一個文件夾,在頂部工具攔里選文件夾選項——查看,有一項叫「隱藏文件和文件夾」選中顯示所有的文件和文件夾就可以了。
開機的時候 開始——運行——shutdown -a問題解決了
或者,你如果嫌麻煩的話,可以照上面的方法新建一個bat文件,只不過把內容從shutdown -s -t 60改為shutdown -a就好了。
你開機的時候雙擊他就可以取消關機的命運了。

呵呵,看我為你寫的這么詳細,你怎麼也給加個幾十分高興高興(興奮到暈倒ing)吧,哈哈!!

『貳』 開機密碼強度設置

控制面板 -> 管理工具 -> 本地安全策略 -> 賬戶策略 -> 密碼策略
密碼必須符合復雜性要求--已啟用
密碼長度最小值--設幾位有幾位,0為沒有最小值

『叄』 如何設置具有強度的密碼

找到password requisite pam_cracklib.so在後面可以加 difok=x(要x個不同字元) minlen=x(最小密碼長度) ucredit=-x(最少x個大寫字母) lcredit=-x(最少x個小寫字母) dcredit=-x (最少x個數字)dictpath=/usr/share/cracklib/pw_dict時間在[root@localhost ~]# vim /etc/login.defs,PASS_MAX_DAYS 99999 (最大什麼時候過期)PASS_MIN_DAYS 0 (最小什麼事後過期)PASS_MIN_LEN 5 (密碼最小長度)PASS_WARN_AGE 7 (警告天數)我們在使用linux系統設置密碼的時候,經常遇到這樣的問題,系統提示:您的密碼太簡單,或者您的密碼是字典的一部分。那麼系統是如何實現對用戶的密碼的復雜度的檢查的呢?系統對密碼的控制是有兩部分(我知道的)組成:
1 cracklib
2 login.defs
聲明:login.defs主要是控制密碼的有效期。對密碼進行時間管理。此處不細談login.defs --shadow password suite configuration,pam_cracklib.so 才是控制密碼復雜度的關鍵文件
redhat公司專門開發了cracklib這個安裝包來判斷密碼的復雜度可以rpm -ql cracklib查看
密碼的復雜度的判斷是通過pam模塊控制來實現的,具體的模塊是pam_cracklibpam_cracklib 的參數介紹:debug,This option makes the mole write information to syslog(3) indicating the behavior of the mole (this option does not write password information to the log file).
type=XXX,The default action is for the mole to use the following prompts when requesting passwords: "New UNIX password: " and "Retype UNIX password: ". The default word UNIX can be replaced with this option. retry=N,Prompt user at most N times before returning with error. The default is 1 ,difok=N,This argument will change the default of 5 for the number of characters in the new password that must not be present in the old password. In addition, if 1/2 of the characters in the new password are different then the new password will be accepted anyway.
difignore=N,How many characters should the password have before difok will be ignored. The default is 23. minlen=N,The minimum acceptable size for the new password (plus one if credits are not disabled which is the default). In addition to the number of characters in the new password, credit (of +1 in length) is given for each different kind of character (other, upper, lower and digit). The default for this parameter is 9 which is good for a old style UNIX password all of the same type of character but may be too low to exploit the added security of a md5 system. Note that there is a pair of length limits in Cracklib itself, a "way too short" limit of 4 which is hard coded in and a defined limit (6) that will be checked without reference to minlen. If you want to allow passwords as short as 5 characters you should not use this mole. dcredit=N(N >= 0) This is the maximum credit for having digits in the new password. If you have less than or N digits, each digit will count +1 towards meeting the current minlen value. The default for dcredit is 1 which is the recommended value for minlen less than 10.(N < 0) This is the minimum number of digits that must be met for a new password.ucredit=N,(N >= 0) This is the maximum credit for having upper case letters in the new password. If you have less than or N upper case letters each letter will count +1 towards meeting the current minlen value. The default for ucredit is 1 which is the recommended value for minlen less than 10.(N > 0) This is the minimum number of upper case letters that must be met for a new password.lcredit=N(N >= 0) This is the maximum credit for having lower case letters in the new password. If you have less than or N lower case letters, each letter will count +1 towards meeting the current minlen value. The default for lcredit is 1 which is the recommended value for minlen less than 10,(N < 0) This is the minimum number of lower case letters that must be met for a new password.ocredit=N,(N >= 0) This is the maximum credit for having other characters in the new password. If you have less than or N other characters, each character will count +1 towards meeting the current minlen value. The default for ocredit is 1 which is the recommended value for minlen less than 10.(N < 0) This is the minimum number of other characters that must be met for a new password.use_authtok,This argument is used to force the mole to not prompt the user for a new password but use the one provided by the previously stacked password mole. dictpath=/path/to/dic,Path to the cracklib dictionaries. dictpath=/path/to/dict //註:密碼字典,這個是驗證用戶的密碼是否是字典一部分的關鍵。

『肆』 電腦有密碼還是被破解了,如何加強密碼強度

增強密碼強度,從以下幾方面入手:
1、復雜性
密碼字元的種類盡可能多,大、小寫字母,數字,符號等這幾種都要有。而且,字母最好是無規律,不推薦用現成的英語單詞;數字也不要與個人信息相關。
2、密碼的長度盡可能長。

『伍』 如何設置強度高的密碼

相對較長,使用大小寫字母、數字和符號的組合。密碼越長,使用的符號種類越多,就越難破解。

設密碼有幾個要點就是:

1、密碼的位數不要短於6位,使用大寫字母和小寫字母、標點和數字的集合。

2、不要以任何單詞、生日、數字、手機號做為密碼,這種太容易就能破解了,比如說生日吧,看似有8位,但我們一般都是出生在19XX的,一年只有12個月,一個月最多隻有31天,XXX,不要幾分鍾就可以試出來,還不需要程序來算。

3、密碼中的英文最好有大小之分。

4、如果在程序允許的情況下,最好能加上英文半形的符號。

(5)修改電腦密碼強度擴展閱讀:

密碼保存

一個計算機用戶通常有十幾個密碼保護的帳號,並使用同一個密碼。而那些試圖使用不同密碼的用戶往往由於密碼太多,而記不清哪個帳戶和哪個密碼相對應。比較好且實際的建議是在一個低安全性的帳號(如bbs)使用簡單的密碼,在高安全性的程序(如在線銀行)使用強密碼。

一旦密碼被寫下來,用戶不能將它放在一些明顯的地方,如通信錄,抽屜等。最糟糕可能也是最常見的情況是密碼被寫在一張便條紙上,放在計算機附近。比較安全的做法是放在保險箱里。

『陸』 WINDOWS XP的帳號密碼強度要求如何設定

設定WINDOWS XP的帳號密碼長度要求的方法:

1、打開控制面板,左鍵雙擊管理工具;