for i inrange(0, len(a)): ff.write((ord(s[i])^ord(a[i])).to_bytes(1, byteorder='big'))
for i inrange(len(a), lent): tmp=0 for j inrange(8): (R,out)=lfsr(R,mask) tmp=(tmp << 1)^out ff.write((tmp^ord(s[i])).to_bytes(1, byteorder='big')) ff.close()
for i inrange(0, len(a)): ff.write((ord(s[i])^ord(a[i])).to_bytes(1, byteorder='big'))
for i inrange(len(a), lent): tmp=0 for j inrange(8): (R,out)=lfsr(R,mask) tmp=(tmp << 1)^out ff.write((tmp^ord(s[i])).to_bytes(1, byteorder='big'))
容易发现明文以len(a)为边界被分成两部分加密 前一部分是和a[i]作异或 这个a则是由a = ''.join([chr(int(b, 16)) for b in [key[i:i+2] for i in range(0, len(key), 2)]])得来的,也就是说a是由key得来的,因此前半部分是解出key的关键 但是我们不知道key的长度,先做个测试:
deflfsr(R, mask): output = (R << 1) & 0xffffffffffffffff i = (R & mask) & 0xffffffffffffffff lastbit = 0 while i != 0: lastbit ^= (i & 1) i = i >> 1 output ^= lastbit return (output, lastbit)
R = 0 mask = 0b1101100000000000000000000000000000000000000000000000000000000000
withopen('Plain.txt', 'rb') as f: s = f.read() withopen('cipher.txt', 'rb') as f: cipher = f.read()
t = hex(bytes_to_long(s) ^ bytes_to_long(cipher))[2:] s = 'sdgfjkahblskdjxbvfskljdfbguisldfbvghkljsdfbghsjkldhbgjklsdbgvlkjsdgbkljb sdkljfhwelo;sdfghioeurthgbnjl k' lent = len(s) for i inrange(1, len(t)): key = t[:i] R = int(key, 16) a = ''.join([chr(int(b, 16)) for b in [key[i:i + 2] for i inrange(0, len(key), 2)]]) c = b'' for j inrange(0, len(a)): c += (ord(s[j]) ^ ord(a[j])).to_bytes(1, byteorder='big')
for j inrange(len(a), lent): tmp = 0 for k inrange(8): (R, out) = lfsr(R, mask) tmp = (tmp << 1) ^ out c += (tmp ^ ord(s[j])).to_bytes(1, byteorder='big')
print(key) print(c) print(cipher) print(c == cipher) if c == cipher: print(i) break
key = '123456789abcdef' R = int(key, 16) mask = 0b1101100000000000000000000000000000000000000000000000000000000000
deflfsr(R, mask): output = (R << 1) & 0xffffffffffffffff i = (R & mask) & 0xffffffffffffffff lastbit = 0 while i != 0: lastbit ^= (i & 1) i = i >> 1 output ^= lastbit return (output, lastbit)
cipher = open('flag_encode.txt', 'rb').read() a = ''.join([chr(int(b, 16)) for b in [key[i:i + 2] for i inrange(0, len(key), 2)]]) ans = [] lent = len(cipher)
for i inrange(0, len(a)): ans.append(chr(cipher[i] ^ ord(a[i])))
for i inrange(len(a), lent): tmp = 0 for j inrange(8): (R, out) = lfsr(R, mask) tmp = (tmp << 1) ^ out ans.append(chr(tmp ^ cipher[i]))