Ciphey 是一個使用自然語言處理和人工智能的全自動解密/解碼/破解工具。
簡單地來講,你只需要輸入加密文本,它就能給你返回解密文本。就是這么牛逼。
有了Ciphey,你根本不需要知道你的密文是哪種類型的加密,你只知道它是加密的,那么Ciphey就能在3秒甚至更短的時間內(nèi)給你解密,返回你想要的大部分密文的答案。
下面就給大家介紹 Ciphey 的實(shí)戰(zhàn)使用教程。
1、準(zhǔn)備
通過以下任一種方式輸入命令安裝依賴:
1. Windows 環(huán)境 打開 Cmd (開始-運(yùn)行-CMD)。
2. MacOS 環(huán)境 打開 Terminal (command+空格輸入Terminal)。
3. 如果你用的是 VSCode編輯器 或 Pycharm,可以直接使用界面下方的Terminal.
pip install-U ciphey
2、Ciphey 基本使用
有3種方法可以運(yùn)行 Ciphey:
1.文件輸入:
ciphey -f encrypted.txt
# 或
python -m ciphey -f encrypted.txt
2.不規(guī)范的方法:
ciphey -- "Encrypted input"
# 或
python -m ciphey -- "Encrypted input"
3.正常方式
ciphey -t "Encrypted input"
# 或
python -m ciphey -t "Encrypted input"
要去除進(jìn)度條、概率表和所有噪音,請使用安靜模式:
ciphey -t "encrypted text here"-q
3、在Python中調(diào)用Ciphey
如果你需要在Python中使用Ciphey,請這樣使用:
fromciphey.__main__ importmain, main_decrypt, make_default_config
main_decrypt(make_default_config("SGVsbG8gbXkgbmFtZSBpcyBiZWUgYW5kIEkgbGlrZSBkb2cgYW5kIGFwcGxlIGFuZCB0cmVl"))
# >> Hello my name is bee and I like dog and apple and tree
運(yùn)行后會輸出如下的結(jié)果:
效果還是相當(dāng)不錯的,如果你不想輸出概率表,只想要解密內(nèi)容,代碼需要這么寫:
fromciphey.__main__ importmain, main_decrypt, make_default_config
config = make_default_config("SGVsbG8gbXkgbmFtZSBpcyBiZWUgYW5kIEkgbGlrZSBkb2cgYW5kIGFwcGxlIGFuZCB0cmVl")
config["grep"] = Truemain_decrypt(config)
# >> Hello my name is bee and I like dog and apple and tree
非常Nice,你根本無需知道這是什么密文/編碼。
Ciphey 支持解密的密文和編碼多達(dá)51種,下面列出一些基本的選項(xiàng)
基本密碼:
- Caesar Cipher
- ROT47 (up to ROT94 with the ROT47 alphabet)
- ASCII shift (up to ROT127 with the full ASCII alphabet)
- Vigenère Cipher
- Affine Cipher
- Binary Substitution Cipher (XY-Cipher)
- Baconian Cipher (both variants)
- Soundex
- Transposition Cipher
- Pig Latin
現(xiàn)代密碼學(xué):
- Repeating-key XOR
- Single XOR
編碼:
- Base32
- Base64
- Z85 (release candidate stage)
- Base65536 (release candidate stage)
- ASCII
- Reversed text
- Morse Code
- DNA codons (release candidate stage)
- Atbash
- Standard Galactic Alphabet (aka Minecraft Enchanting Language)
- Leetspeak
- Baudot ITA2
- URL encoding
- SMS Multi-tap
- DMTF (release candidate stage)
- UUencode
- Braille (Grade 1)
- ......
-
解密
+關(guān)注
關(guān)注
3文章
48瀏覽量
15109 -
人工智能
+關(guān)注
關(guān)注
1791文章
47183瀏覽量
238247 -
python
+關(guān)注
關(guān)注
56文章
4792瀏覽量
84627
發(fā)布評論請先 登錄
相關(guān)推薦
評論