-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCipherAnalyse.py
185 lines (149 loc) · 5.96 KB
/
CipherAnalyse.py
1
2
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# GUI 独立程序 密文分析
import sys
import json
from re import compile
from PyQt5.QtWidgets import QApplication, QMainWindow, QMessageBox
from PyQt5.QtCore import QThread, pyqtSlot, pyqtSignal
from PyQt5.QtGui import QMovie
from Crypto_func import *
from GUI.Ui_Cipher import Ui_Cipher
# 导入自定义解密插件
with open("./Plug/config.json", 'r+', encoding='utf-8') as f:
Crypto_json = json.load(f)
for i in Crypto_json['Plug']:
for j in Crypto_json['Plug'][i]:
str1 = "from Plug.{type}.{crypto_name} import {crypto_name}".format(
type=i, crypto_name=j["crypto_name"])
exec(str1)
# 识别密文
def Cipherase(cryptostr, value):
redo_crypto = set(cryptostr.replace('\n', '').replace('\r', '')) # 密文字符去重
maybe_list = [] # 密文可能在的列表
maybe_list_name = [] # 密文可能在的列表-名字
maby_list_name = [] # 密文大概率在的列表,长度与密文表相等-名字
back_list_name = [] # 不可能的加密方式-名字
with open("./Plug/config.json", 'r', encoding='utf-8') as f:
Crypto_json = json.load(f)
for i in Crypto_json["Base_crypto"]:
if len(redo_crypto) <= int(i["alphabet_num"]):
maybe_list.append(i)
maybe_list_name.append(i["crypto_name"])
if len(redo_crypto) == int(i["alphabet_num"]):
maby_list_name.append(i["crypto_name"])
# 正则匹配密文的每个字符,不在范围内将该加密类型加入黑名单
for i in maybe_list:
a = str(i["range"])
pattern = compile(r'' + a + '')
for j in redo_crypto:
if pattern.match(j) == None:
back_list_name.append(i["crypto_name"])
break
# 移除黑名单中的加密类型
for i in back_list_name:
maybe_list_name.remove(i)
try:
maby_list_name.remove(i)
except:
pass
# 重选
if len(maby_list_name) != 0:
# 取 maybe_list_name 与 maby_list_name 的交集
result_list = list(
set(maybe_list_name).intersection(set(maby_list_name)))
else:
result_list = maybe_list_name
result = single_decry(result_list, cryptostr, value, Crypto_json)
return result
def single_decry(result_list, cryptostr, value, Crypto_json):
# 获取由 result_list 与相应的key 组成的字典
result_dict = {}
for i in result_list:
for j in Crypto_json["Base_crypto"]:
if i == j["crypto_name"]:
try:
result_dict[i] = j["key"]
break
except:
result_dict[i] = 'False' # key不存在的时候,默认为 False
break
# 看能否正常解密
for i in result_list:
try:
if result_dict[i] == 'True' and value != '':
res = (globals().get(i)(cryptostr, value)).decode() # 调用函数解密
else:
res = (globals().get(i)(cryptostr)).decode() # 调用函数解密
if len(res) != 0 and res[:3] != "[-]" and res != cryptostr: # 成功返回解密结果
pass
else:
result_list[result_list.index(i)] = ''
except:
result_list[result_list.index(i)] = ''
result = [i for i in result_list if i != '']
return result
# 子进程分析识别密文
class Cipher_Thread(QThread):
signal = pyqtSignal(list)
def __init__(self, cryptostr, value):
super().__init__()
self.cryptostr = cryptostr
self.value = value
def run(self):
# 识别密文
self.result = Cipherase(self.cryptostr, self.value) # 调用函数分析密文
# 发出信号
self.signal.emit(self.result)
class QmyCipher(QMainWindow):
def __init__(self, parent=None):
super().__init__(parent)
self.ui = Ui_Cipher()
self.ui.setupUi(self)
f = open("./Plug/config.json", 'r', encoding='utf-8')
self.Crypto_json = json.load(f)
f.close()
if not self.Crypto_json['G_S_Crypk']:
self.ui.lineEdit_2.setVisible(False)
self.__dlgSetHeaders = None
self.setAutoFillBackground(True)
# ==============自定义功能函数============
@pyqtSlot(list)
def Cipherxxx(self, result):
# 由result中的crypto_name获取name
with open("./Plug/config.json", 'r', encoding='utf-8') as f:
self.Crypto_json = json.load(f)
name_result = []
for i in result:
for j in self.Crypto_json["Base_crypto"]:
if i == j["crypto_name"]:
name_result.append(j["name"])
# 隐藏label
self.ui.label.setVisible(False)
if len(name_result) == 0:
QMessageBox.about(self, "温馨提示", "无法识别该密文类型!!")
else:
self.ui.plainTextEdit.setPlainText(
"可能的密文类型:"+"\n\n"+'\n'.join(name_result))
QMessageBox.about(self, "温馨提示", "已经识别出密文类型!!")
@pyqtSlot()
def on_pushButton_clicked(self):
cryptostr = self.ui.plainTextEdit.toPlainText() # 获取密文
value = '' # 密钥初始化
if self.Crypto_json['G_S_Crypk']:
value = self.ui.lineEdit_2.text() # 获取密钥
if len(cryptostr) != 0:
self.ui.label.setVisible(True) # 显示label控件
# 加载gif
self.loads = QMovie("./GUI/images/20.gif")
self.ui.label.setMovie(self.loads)
self.loads.start()
# 子线程分析密文
self.thread = Cipher_Thread(cryptostr, value)
self.thread.signal.connect(self.Cipherxxx)
self.thread.start() # 启动线程
else:
QMessageBox.about(self, "温馨提示", "请输入密文!!")
if __name__ == "__main__":
app = QApplication(sys.argv)
form = QmyCipher()
form.show()
sys.exit(app.exec_())