• 大小: 1.9MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-09
  • 语言: 其他
  • 标签: Software  Securit  

资源简介

复旦大学_软件安全_SEED labs_6-Format_String_Server实验 是从雪城大学SEED labs上找的实验 资源包括: 攻击修改代码、实验报告详细版、实验指导书、参考链接

资源截图

代码片段和文件信息

#include 
#include 
#include 
#include 
#include 
#include 

#define PORT 9090

char *secret = “A secret message\n“;
unsigned int  target = 0x11223344;

void myprintf(char *msg)
{
    printf(“The address of the ‘msg‘ argument: 0x%.8x\n“ (unsigned) &msg);
    // This line has a format-string vulnerability
    printf(msg);
    printf(“The value of the ‘target‘ variable (after): 0x%.8x\n“ target);
}

// This function provides some helpful information. It is meant to
//   simplify the lab task. In practice attackers need to figure
//   out the information by themselves.
void helper()
{
    printf(“The address of the secret: 0x%.8x\n“ (unsigned) secret);
    printf(“The address of the ‘target‘ variable: 0x%.8x\n“ (unsigned)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-06-27 23:54  复旦大学_软件安全_SEED labs_6-Format_String_Server\
     文件      222317  2019-04-28 21:21  复旦大学_软件安全_SEED labs_6-Format_String_Server\Format_String_Server.pdf
     文件     1629960  2019-06-27 23:54  复旦大学_软件安全_SEED labs_6-Format_String_Server\lab6_16级.pdf
     文件       12871  2019-04-28 23:29  复旦大学_软件安全_SEED labs_6-Format_String_Server\lab6参考链接.docx
     文件        5618  2019-04-28 22:55  复旦大学_软件安全_SEED labs_6-Format_String_Server\server.c
     文件        2139  2019-04-28 22:21  复旦大学_软件安全_SEED labs_6-Format_String_Server\task6.c
     文件        2590  2019-04-28 22:46  复旦大学_软件安全_SEED labs_6-Format_String_Server\task7.c
     文件         162  2019-04-26 16:32  复旦大学_软件安全_SEED labs_6-Format_String_Server\~$b6_report.docx
     文件         162  2019-04-26 19:04  复旦大学_软件安全_SEED labs_6-Format_String_Server\~$note.docx
     文件       13230  2019-04-26 17:00  复旦大学_软件安全_SEED labs_6-Format_String_Server\~WRL2101.tmp
     目录           0  2019-06-27 22:05  复旦大学_软件安全_SEED labs_6-Format_String_Server\初始文件包Format_String_Server_init\
     文件      186254  2019-03-06 15:37  复旦大学_软件安全_SEED labs_6-Format_String_Server\初始文件包Format_String_Server_init\Format_String_Server.pdf
     文件        1558  2019-03-06 15:37  复旦大学_软件安全_SEED labs_6-Format_String_Server\初始文件包Format_String_Server_init\server.c

评论

共有 条评论