突破mac系统要求密码不能小于4个字符的限制
条评论在终端执行
pwpolicy getaccountpolicies > temp.xml
编辑temp.xml文件,例如
vim temp.xml
删除第一行
Getting global account policies
文字,保证这个文件以<?xml
开头找到
<string>policyAttributePassword matches '^$|.{4,}+'</string>
替换成
<string>policyAttributePassword matches '^$|.{1,}+'</string>
保存
sudo pwpolicy setaccountpolicies temp.xml
此时就可以设置最少字符长度为1个密码了
本文标题:突破mac系统要求密码不能小于4个字符的限制
文章作者:牧云踏歌
发布时间:2018-12-08
最后更新:2018-12-08
原始链接:http://www.kankanzhijian.com/2018/12/08/password_more_than_4_char_in_macos/
版权声明:本博客文章均系本人原创,转载请注名出处