for j in tqdm(range(2 ** (len(cipher)))): space = 10 temp = bin(j)[2:].zfill(len(cipher)) for i inrange(len(cipher)): if i + space < len(cipher) - 1: t = int(temp[i]) ^ int(temp[i + space]) else: t = int(temp[i]) ^ int(temp[space]) if (cipher[i] % 2) != t: break ifint(temp[i]) % 2 == 0: space += 1 else: space -= 1 if i == len(cipher) - 1: print(temp) break
space = 10 list_space = [] temp = '1010011010010101111111101000' for i inrange(len(temp)): if i + space < len(cipher) - 1: t = int(temp[i]) ^ int(temp[i + space]) list_space.append((i, i + space)) else: t = int(temp[i]) ^ int(temp[space]) list_space.append((i, space)) ifint(temp[i]) % 2 == 0: space += 1 else: space -= 1 print(list_space)
cipher = long_to_bytes(int('15120d1a0a0810010a031d3e31000d1d170d173b0d173b0c07060206', 16)) plain = [s for s in'afctf{'] + ['']*21 + ['}'] space = 10
list_space = [] temp = '1010011010010101111111101000' for i inrange(len(temp)): if i + space < len(cipher) - 1: t = int(temp[i]) ^ int(temp[i + space]) list_space.append((i, i + space)) else: t = int(temp[i]) ^ int(temp[space]) list_space.append((i, space)) ifint(temp[i]) % 2 == 0: space += 1 else: space -= 1
while''in plain: for i inrange(len(plain)): if plain[i] != '': for j inrange(len(list_space)): if list_space[j][0] == i: plain[list_space[j][1]] = chr(cipher[j] ^ ord(plain[i])) if list_space[j][1] == i: plain[list_space[j][0]] = chr(cipher[j] ^ ord(plain[i])) print(plain)