Tags: forensics
Rating:
f1 = open("file1","r").read()
f2 = open("file2","r").read()
out = ""
x=0
for y in f1:
if f2[x] != y:
out += y
x+=1
print out
print out[::-1]
easyctf{th1s_m4y_b3_th3_d1ff3r3nc3_y0u_w3r3_l00k1ng_4}