-
实验4
任务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 -
实验4
实验任务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("siz -
20252816 2025-2026-2 《网络攻防实践》第八次作业
20252816 2025-2026-2 《网络攻防实践》第八次作业 1. 实践内容 1.1 动手实践任务一 对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下: (1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行 -
实验四
实验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 // 输出数组x占用的内 -
20253407 2025-2026-2 《Python程序设计》实验三报告
20253407 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2534 姓名: 吴家豪 学号:2534 实验教师:王志强 实验日期:2026年4月27日 必修/选修: 公选课 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 -
实验4 C语言函数应用编程
实验任务1: 源代码: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 void test1() { 5 int x[N] = { 1, 9, 8, 4 }; 6 int i; 7 printf("sizeof(x) = %d\n", sizeo -
实验4
实验任务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) = %d\n", -
20251229 2025-2026-2 《Python程序设计》实验三报告
# 20251229 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2512 姓名: 李佳豪 学号:20251229 实验教师:王志强 实验日期:2026年4月27日 必修/选修: 公选课 1.实验内容 (一)实验内容 创建服务端和客户端,服务端 -
20252908 2025-2026-2 《网络攻防实践》实践7报告
20252908 2025-2026-2 《网络攻防实践》实践7报告 1.实践内容 1.1实验内容 利用Metasploit对Linux开展远程渗透攻击,调用usermap_script漏洞模块、配置反向Shell攻击载荷、设置渗透参数,成功获取靶机root权限。 开展攻防对抗实践,攻击方完成渗透攻 -
20251905 2025-2026-2 《网络攻防实践》实验七
20251905 2025-2026-2 《网络攻防实践》实践七报告 1. 实践内容 1.1基础知识 Samba 服务漏洞原理 (CVE-2007-2447) 本次实验针对 Linux 靶机进行渗透,主要利用了 Samba 服务的 usermap_script 漏洞(CVE-2007-2447)。S -
20252305黄晓宇实验三报告
学号 2025-2026-2 《Python程序设计》实验x报告 课程:《Python程序设计》 班级: 2523 姓名: 黄晓宇 学号:20252305 实验教师:王志强 实验日期:2026年4月27日 必修/选修: 公选课 1.实验内容 创建服务端和客户端,服务端在特定端口监听多个客户请求。客户 -
20252910 2025-2026-2《网络攻防实践》第8次作业
20252910 2025-2026-2《网络攻防实践》第8次作业 1、实验内容 动手实践任务一 对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下: (1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行平台和加壳工 -
实验四
任务一 问题一:一堆数组x在内存中是连续存放的;两个相同 问题二:是按行连续存放; 相同,相差16字节,差值表示一行数组元素占用的内存字节数 任务二 问题一:形参为int x[],实参为数组名 问题而:input函数用于输入数组元素; compute函数用于计算去掉一个最大值和最小值后的数组平均值 -
20252903 2025-2026-2 《网络攻防实践》第七周作业
一、核心知识点梳理 1.Samba服务 Samba 遵循 SMB/CIFS 网络协议,可让类 Unix 系统模拟 Windows 的网络邻居服务,实现不同操作系统的互联。Samba 主要包含两大核心进程,分别是 smbd 和 nmbd。smbd 负责处理文件共享、权限校验、读写访问等数据传输工作;n -
20254116《Python程序设计》实验三报告
20254116 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2541 姓名: 李枝荣 学号:20254116 实验教师:王志强 实验日期:2026年4月29日 必修/选修: 专选课 1.实验内容 创建服务端和客户端,服务端在特定端口监听多个客 -
实验4
实验4 实验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 printf("sizeof(x) = %d\n", -
实验四
实验任务1: 1.源代码: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 void test1() { 5 int x[N] = { 1, 9, 8, 4 }; 6 int i; 7 printf("sizeof(x) = %d\n", siz -
实验4
任务1 源代码 1 #define _CRT_SECURE_NO_WARNINGS 2 3 4 #include <stdio.h> 5 #define N 4 6 #define M 2 7 8 void test1() { 9 int x[N] = { 1, 9, 8, 4 }; 10 int -
实验4
task1 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 10 printf("sizeof(x) = %d\n", sizeof