#!/usr/env python
# from zio import *
from hashlib import md5
import sys
from os import urandom
# io = z
# io(('182.92.153.117', 30101))
# io.read_until('SHA256("')
# t = io.read_until('"')[:-1]
while True:
x = urandom(8).hex()
message = (x).encode("Latin-1")
# print(x)
if md5(message).hexdigest().startswith('3974f'):
#io.write(x+'\n')
print(x+'\n')
break
'''
t = '7q7gmIwUeAgsFdnA'#给的随机数
while True:
x = urandom(2).hex()
message = (x+t).encode("Latin-1")
if sha256(message).hexdigest() == "f79bba11d147b65bac117dfeb9e7d191af181fa2cf2bd9dcabd2f1f162900fc6":
#io.write(x+'\n')
print(x+'\n')
break
#io.interact()
'''
暂无评论