
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
check-password-strength is a tool that runs on Linux, Windows and MacOS that could help you to check how your passwords are good. It reads data from a CSV file, user input or stdin and assigns a score to each password within a range from 0 (worst) to 4 (best):
$ docker run --rm --net none -v $PWD:/data:ro camandel/check-password-strength -f /data/password.csv URL | USERNAME | PASSWORD | SCORE (0-4) | ESTIMATED TIME TO CRACK | ALREADY USED ------------------+--------------+----------+------------------+-------------------------+--------------- www.example.com | user1 | s******r | 0 - Really bad | instant | www.example.com | user2 | 5******r | 0 - Really bad | instant | www.example.com | dhakjdhas777 | d******7 | 0 - Really bad | instant | www.example.com | user1 | s******1 | 1 - Bad | 61.0 minutes | www.example.com | user3 | b******9 | 2 - Weak | 5.0 days | www.example.com | 1111 | 8******3 | 2 - Weak | 10.0 hours | www.example.com | user3 | h******w | 3 - Good | 10.0 months | www.example.com | user3 | p******t | 4 - Strong | centuries | 40c08664 www.example.com | user2 | G******x | 4 - Strong | centuries | www.example.com | user2 | p******t | 4 - Strong | centuries | 40c08664 $ docker run --rm --net none -ti camandel/check-password-strength -i Enter Username: username Enter Password: URL | USERNAME | PASSWORD | SCORE (0-4) | ESTIMATED TIME TO CRACK | ALREADY USED ------+----------+----------+------------------+-------------------------+--------------- | username | p******d | 0 - Really bad | instant |
It's based on the awesome https://github.com/dropbox/zxcvbn library and its Go porting github.com/nbutton23/zxcvbn-go.
The passwords will be checked on:
It supports CSV files exported from the most popular Password Managers and Browsers:
(*) the custom CSV files must have a header with at least the following three fields: url,username,password
To check only one password at a time it can be used in interactive mode (password will not be displayed as you type):
$ check-password-strength -i Enter Username: username Enter Password: URL | USERNAME | PASSWORD | SCORE (0-4) | ESTIMATED TIME TO CRACK | ALREADY USED ------+----------+----------+------------------+-------------------------+--------------- | username | p******d | 0 - Really bad | instant |
or reading from stdin:
$ echo $PASSWORD | check-password-strength URL | USERNAME | PASSWORD | SCORE (0-4) | ESTIMATED TIME TO CRACK | ALREADY USED ------+----------+----------+------------------+-------------------------+--------------- | | p******j | 4 - Strong | centuries |
If you need to use it in a script you can use -q flag. It will display nothing on stdout and the exit code will contain the password score (it works only with single password):
$ echo $PASSWORD | ./check-password-strength -q $ echo $? 4
Installation of check-password-strength is simple, just download https://github.com/camandel/check-password-strength/releases and run the binary:
$ chmod +x check-password-strength $ ./check-password-strength -f password.csv
or run it in a Docker container:
$ docker run --rm --net none -v $PWD:/data:ro camandel/check-password-strength -f /data/password.csv
$ git clone https://github.com/camandel/check-password-strength $ cd check-password-strength $ # it compiles for current OS and ARCH $ make
For Linux
shell$ make linux-64
For MacOS
shell$ make macos-64
For Windows
shell$ make windows-32
or
shell$ make windows-64
For Docker image
shell$ make docker
It will create a local image called check-password-strength:latest
You can use command line or the Docker image:
CODE_TOKEN_12
If you need to add your custom dictionary to the integrated ones, create one json file in the following format:
CODE_TOKEN_13
and load it at runtime with the -c flag:
CODE_TOKEN_14
Or add it directly into the binary copying the json file in assets/data and recompile.
https://github.com/camandel/check-password-strength
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务