m = (((mp - mq) * i) % p) * q + mq print(hex(m)) s = hex(m)[2:]
flag = '' i = 0 for _ inrange(int(len(s) / 2)): n = int(s[i + 0], 16) * 0x10 n += int(s[i + 1], 16) flag += chr(n) i += 2
print(flag)
flag{W31c0m3_70_Ch1n470wn}
丢失的md5
题目给了md5.py
1 2 3 4 5 6 7 8 9 10
import hashlib for i inrange(32,127): for j inrange(32,127): for k inrange(32,127): m=hashlib.md5() m.update('TASC'+chr(i)+'O3RJMV'+chr(j)+'WDJKX'+chr(k)+'ZM') des=m.hexdigest() if'e9032'in des and'da'in des and'911513'in des: print(des)
运行结果就是flag
rsarsa
Math is cool! Use the RSA algorithm to decode the secret message, c, p, q, and e are parameters for the RSA algorithm.
p = 9648423029010515676590551740010426534945737639235739800643989352039852507298491399561035009163427050370107570733633350911691280297777160200625281665378483 q = 11874843837980297032092405848653656852760910154543380907650040190704283358909208578251063047732443992230647903887510065547947313543299303261986053486569407 e = 65537 c = 83208298995174604174773590298203639360540024871256126892889661345742403314929861939100492666605647316646576486526217457006376842280869728581726746401583705899941768214138742259689334840735633553053887641847651173776251820293087212885670180367406807406765923638973161375817392737747832762751690104423869019034
Use RSA to find the secret message
EXP
1 2 3 4 5 6 7 8 9 10 11
import libnum p = 9648423029010515676590551740010426534945737639235739800643989352039852507298491399561035009163427050370107570733633350911691280297777160200625281665378483 q = 11874843837980297032092405848653656852760910154543380907650040190704283358909208578251063047732443992230647903887510065547947313543299303261986053486569407 e = 65537 c = 83208298995174604174773590298203639360540024871256126892889661345742403314929861939100492666605647316646576486526217457006376842280869728581726746401583705899941768214138742259689334840735633553053887641847651173776251820293087212885670180367406807406765923638973161375817392737747832762751690104423869019034
#d = libnum.invmod(e, (p - 1) * (q - 1)) m = pow(c, d, p * q)