[TOC]
下载方法:
要求python3+,但是最好使用python3.8,不要使用python3.10以上的,不然会报错(要是报错就换个python版本试试)
直接pip下载
使用方法:
参数列表:
| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 
 | ciphey --help用法: ciphey [选项] [TEXT_STDIN]
 
 Ciphey - 自动解密工具
 
 文档地址: https://github.com/Ciphey/Ciphey/wiki
 
 Discord (这里支持,我们大部分时间都在线):
 https://discord.ciphey.online/
 
 GitHub: https://github.com/ciphey/ciphey
 
 cipher是一种使用智能人工智能的自动解密工具
 和自然语言处理。输入加密文本,获取解密文本
 
 
 例如:
 基本用法: ciphey -t "aGVsbG8gbXkgbmFtZSBpcyBiZWU="
 
 选项:
 -t, --text TEXT            您想要解密的密文。
 -q, --quiet                减少冗长的显示,直接给结果
 -g, --greppable            只输出答案(对于grep很有用)
 -v, --verbose
 -C, --checker TEXT         使用给定的检查器
 -c, --config TEXT          使用给定的配置文件。默认为
 appdirs.user_config_dir('ciphey',
 'ciphey')/'config.yml'
 
 -w, --wordlist TEXT        使用给定的密码字典
 -p, --param TEXT           将参数传递给语言检查器
 -l, --list-params BOOLEAN  列出所选模块的参数
 --searcher TEXT            选择要使用的搜索算法
 -b, --bytes                强制密码使用二进制模式作为输入
 --default-dist TEXT        设置默认的字符/字节分布
 -m, --module PATH          从给定路径添加模块
 -A, --appdirs              输出密码到想要的文件位置
 
 -f, --file FILENAME
 --help                     显示此帮助消息并退出。
 
 | 
运行Ciphey:
有三种方法。
| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 
 | 1.文件输入:ciphey -f encrypted.txt  &
 python -m ciphey -f encrypted.txt
 
 2.不规范的方法:
 ciphey -- "Encrypted input"  &
 python -m ciphey -- "Encrypted input"
 
 3.正常方式
 ciphey -t "Encrypted input"  &
 python -m ciphey -t "Encrypted input"
 
 |