-
20252904 2025-2026-2 《网络攻防实践》第8周作业
20252904 2025-2026-2 《网络攻防实践》第8周作业 1.实践内容 1.1实验要求 1. 动手实践任务一:RaDa恶意代码样本基础分析 对 RaDa 恶意代码样本进行文件类型识别、加壳检测、脱壳处理和字符串提取,确定其文件格式、运行平台和加壳工具,并通过分析脱壳后的可读字符串,寻找样 -
实验5
task 1 task 1.1 点击查看代码 #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int * -
实验5
任务1 1.1源代码 #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin, int *pmax); int main() { -
# 20252920卢兴宇 2025-2026-2 《网络攻防实践》第九次作业
一、实践内容概述 1.实践目标 本次实践的对象是一个名为pwn1的linux可执行文件。 该程序正常执行流程是:main调用foo函数,foo函数会简单回显任何用户输入的字符串。 该程序同时包含另一个代码片段,getShell,会返回一个可用Shell。正常情况下这个代码是不会被运行的。我们实践的目 -
20254204刘俐《Python程序设计》实验4报告
20254204 2025-2026-2 《Python程序设计》实验4报告 课程:《Python程序设计》 班级: 2542 姓名: 刘俐 学号:20254204 实验教师:王志强 实验日期:2026年5月26日 必修/选修: 专选课 1.实验内容 Python综合应用:爬虫、数据处理、可视化、机 -
20251911 2025-2026-2 《网络攻防实践》实践九报告
1. 实践内容 本次实验针对一个名为 pwn1 的 Linux 可执行程序展开。正常情况下,main 函数会调用 foo 函数,而 foo 仅仅将用户输入的字符串原样输出。程序内部还隐藏着一个 getShell 函数,该函数能启动一个交互式 Shell,但普通执行流程下永远不会被调用。实验的核心目标 -
20252913 2025-2026-2 《网络攻防实践》实践十一报告
20252913 2025-2026-2 《网络攻防实践》实践十一报告 1.实践内容 1.1 web浏览器渗透攻击 本次依托kali攻击机与 Windows 靶机开展浏览器渗透攻击实操,完整完成网页木马制作与浏览器攻击流程。实操中选取 Metasploit 平台内 MS06-014 渗透攻击模块 -
20251906 2025-2026-2 《网络攻防实践》第八周作业
1.实践内容 1.1 实验目的 动手实践任务一 对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下: (1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行平台和加壳工具; (2)使用超级巡警脱壳机等脱壳软件,对rad -
实验四
任务1 运行代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeo -
20253202 实验三 Socket编程技术实验报告
课程:《Python程序设计》 班级: 2532 姓名: 吴江浩 学号:20253202 实验教师:王志强 实验日期:2026年4月27日 必修/选修: 公选课 队友:庄景博(学号:20253214) (一)实验内容 创建服务端和客户端,服务端在特定端口监听多个客户请求。客户端和服务端通过Socke -
实验4
实验任务1 源代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 #define M 2 5 6 void test1(){ 7 int x[N] = {1,9,8,4}; 8 int i; 9 10 printf("sizeof( -
实验4_C语言数组应用编程
实验结论: task1.c 源代码: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #define N 4 4 #define M 2 5 6 void test1() { 7 int x[N] = {1, 9, 8, 4}; 8 int i; 9 pri -
实验四
任务一 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof(x) -
实验4
实验一: 1.是连续存放,&x[0]和x相同。 2.是连续存放,x和x[0]和x[0][0]相同,x[0]和x[1]相差16,相差的是4个int,一个int占4个字节。 实验二: 1.形参形式是 数组名[],数组大小;实参形式是 数组名,数组大小。 2.input的功能是遍历输入数组的每一个数,co -
实验四
实验任务一 源代码 1 #include <stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 #define M 2 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 printf("sizeof( -
实验4
任务一 (1)源代码 1 #include <stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 #define M 2 5 6 void test1() { 7 int x[N] = {1, 9, 8, 4}; 8 int i; 9 printf("size -
实验4 C语言数组应用编程
实验一 源代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof -
# 20254104 2025-2026-2 《Python程序设计》实验三报告
20254104 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2541 姓名: 王禹豪 学号:20254104 实验教师:王志强 实验日期:2026年4月28日 必修/选修: 公选课 1.实验内容 创建服务端和客户端,服务端在特定端口监听多个客 -
实验四
实验四 实验任务1(验证) 源代码 点击查看代码 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) -
20254223崔之垚《Python程序设计》实验三报告
学号 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2542 姓名: 崔之垚 学号:20254223 实验教师:王志强 实验日期:2026年4月28日 必修/选修: 必修课 1.实验内容 创建服务端和客户端,服务端在特定端口监听多个客户请求。客户