Mic_check (misc)
$ nc 34.132.190.59 31991
mic test > o [1/100]
submit test words > o
mic test > zh [2/100]
submit test words > zh
mic test > odk [3/100]
submit test words > odk
mic test > rdhm [4/100]
submit test words > rdhm
mic check fail :(from pwn import *
target = remote("34.44.175.226", 31617)
# Function to process and send data
def process_and_send(data):
print(data)
data = data.decode("utf-8")
new = data.split("mic test > ")[-1].split(" [")[0]
target.sendline(new.encode())
# Loop for subsequent rounds
for i in range(100):
data = target.recvuntil(b"]")
process_and_send(data)
target.interactive()Last updated