摘要: Pwntools操作基本指令 from pwn import * '''连接远程题目''' r = remote('0.0.0.0',809) #usage:remote('host',port) #exp code r.interactive() #取得shell后可将commant传到termi 阅读全文
posted @ 2022-01-20 18:13 MuRKuo 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 汇编&栈基础 说明 push寄存器:将一个寄存器中的数据入栈 pop寄存器:出栈用一个寄存器接收数据 sp:栈顶指针(段寄存器) ax,bx,ss,sp 均为16位寄存器(2字节) 操作 assume cs:codesg ;cs寄存器指向该程序的首地址 codesg segment mov ax,1 阅读全文
posted @ 2022-01-20 15:59 MuRKuo 阅读(78) 评论(0) 推荐(0) 编辑