-
20254110 2025-2026-2 《Python程序设计》实验2报告
20254110 2025-2026-2 《Python程序设计》实验2报告 课程:《Python程序设计》 班级: 2541 姓名: 杨永恒 学号:20254110 实验教师:王志强 实验日期:2020年4月7日 必修/选修: 专选课 1.实验内容 (1)编写计算器程序 ①设计并完成一个完整的应用 -
20254126 王溪泽 实验二《Python程序设计》实验报告
学号 2025-2026-2 《Python程序设计》实验x报告 课程:《Python程序设计》 班级: 2541 姓名: 王溪泽 学号:20254126 实验教师:王志强 实验日期:2026年4月7日 必修/选修: 专选课 1.实验内容 (1)编写计算器程序 设计并完成一个完整的应用程序,完成加减 -
20254206 实验二 《Python程序设计》 实验报告
2025-2026-2 《Python程序设计》实验报告 课程:《Python程序设计》 班级:2542 姓名:李宇翰 学号:20254206 实验教师:王志强 实验日期:2026年4月7日 必修/选修:公选课 (一)实验内容 1.编写计算器程序 (1)打开PyCharm,设计并完成一个完整的计算机 -
20253908 2024-2025-2 《网络攻防实践》实践4报告
1. 实践内容(Reformulated and Expanded) 1.1 ARP 缓存投毒攻击(链路层) 核心机理(Principle) 地址解析协议(ARP)用于在局域网中完成 IP 地址到 MAC 地址的动态映射。然而,该协议缺乏身份认证与完整性校验机制,使其易受到伪造报文的攻击。攻击者通过 -
实验2
1.一:生成五个202400420001~202400420100范围内的随机数并输出 二:生成一个一到一百之间的随机数 三:使数字输出时以四位数输出,当数字不足四位时,在数字前补零凑足四位 四:以当前系统时间作为随机数种子,让rand()生成的伪随机数每次运行程序都不同;若去掉这行,多次运行程序会 -
20251912 2024-2025-2 《网络攻防实践》实践四报告
1.实践内容 ARP缓存欺骗攻击 攻击者通过发送伪造的ARP响应包,告诉目标主机“网关的MAC地址是攻击机的MAC地址”,从而使目标主机把本该发往网关的流量误发给攻击机。攻击机可以开启IP转发,把收到的流量再转给真实网关,从而在目标不知情的情况下实现中间人监听或流量劫持。 ICMP重定向攻击 ICM -
实验2
实验任务1 源代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 7 int main(){ 8 int number; 9 int i; 10 11 srand(time(0)); 12 -
实验2
实验任务1 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 7 int main(){ 8 int number; 9 int i; 10 11 srand(time(0)); -
实验2
task1 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 int main() { 6 int number; 7 int i; 8 srand(time(0)); 9 for(i -
实验2
task1 源代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 6 #define N 5 7 int main(){ 8 int number; 9 int i; 10 11 srand(time(0)); 12 -
实验2
任务一 源代码 1 #include<stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 int main() { 6 int number; 7 int i; 8 srand(time(0)); 9 for(i = -
实验2
任务1 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 7 int main() { 8 int number; 9 int i; 10 11 srand(time(0)); 1 -
实验二
task1 1. 代码: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 int main() { 6 int number; 7 int i; 8 srand(time(0)); // 以 -
实验2
实验任务1: 源代码: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 int main() { 6 int number; 7 int i; 8 srand(time(0)); // 以当 -
实验二
实验内容 任务一 源代码 #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 int main() { int number; int i; srand(time(0)); for(i=0;i<N;++i) { numb -
实验二
task1 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 7 int main(){ 8 int number; 9 int i; 10 11 srand(time(0)); 12 for( -
实验2
任务1 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 7 int main() 8 { 9 int number; 10 int i; 11 12 srand(time(0)) -
20252920卢兴宇 2025-2026-2 《网络攻防实践》第四周作业
实验四 TCP/IP 网络协议攻击实验报告 一、实验目的 在网络攻防实验环境中完成TCP/IP协议栈重点协议的攻击实验,包括ARP缓存欺骗攻击、ICMP重定向攻击、SYN Flood攻击、TCP RST攻击、TCP会话劫持攻击;熟悉网络攻防实验环境的配置方法及常用工具的基本使用方法;通过实验观察典型 -
第三次作业 网络嗅探与协议分析
第三次作业 网络嗅探与协议分析 一、实验内容 1. 主要任务 本次实验围绕网络嗅探与扫描取证展开,核心包含三个任务,具体要求如下: 网络访问嗅探分析:在Kali Linux虚拟机中运用tcpdump工具,抓取访问https://www.163.com过程中产生的全部网络数据包;对数据包进行解析,提取 -
20254226 实验二《Python程序设计》实验报告
目录20254226 2025-2026-2 《Python程序设计》实验二报告1.实验内容2. 实验过程及结果(1)编写计算器程序(2)用LLM生成一个计算器程序• 介绍相关功能,并分析生成的程序代码含义。• 对比分析自写程序与生成程序的区别(好与坏)3. 实验过程中遇到的问题和解决过程其他(感悟