摘要: ROP系统攻击 ROP全称为Return-oriented Programming(面向返回的编程)是一种基于代码复用技术的攻击,攻击者从已有的库或可执行文件中提取指令片段,构建恶意代码。 特点:1.call和ret指令不操纵函数,而是用于将函数里面的短指令序列的执行流串起来; 2.jmp指令可以在 阅读全文
posted @ 2020-03-17 20:51 An2i 阅读(495) 评论(0) 推荐(0)
摘要: #include <iostream> #include <queue> using namespace std; struct node { int x,y; int t,time; }; int a[15][15],visit[15][15]; int n,m,dist[4][2]= {{0,1 阅读全文
posted @ 2020-03-17 16:45 An2i 阅读(154) 评论(0) 推荐(0)