-
20252813 2025-2026-2 《网络攻防实践》第 2 次作业
20252813 2025-2026-2 《网络攻防实践》第2次作业 1.实验内容 本周的学习重点在于网络信息收集与环境扫描技术。主要内容包括: 足迹探测:学习利用WHOIS、DNS查询等工具获取目标域名的注册信息、IP段及地理位置。 活跃主机与端口扫描:通过Nmap等工具探测目标主机在线状态,识别 -
实验二
实验2 test1 源代码 #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; + -
实验二
任务一 源代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 #define N 5 5 int main() 6 { 7 int number,i; 8 srand(time(0)); 9 for(i=0;i<N;++i -
# 20252921 2025-2026-2 《网络攻防实践》第2周作业
1.实验内容 借助 WHOIS 协议与地理位置解析工具,完成了目标域名所有权信息及对应 IP 物理坐标的探测与收集。 验证了基于网络通信连接提取对端节点 IP 及其地理归属的追踪技术。 运用Nmap工具对目标主机执行了全面的资产探测,涵盖主机存活检测、端口状态枚举、服务指纹及操作系统识别。 利用Ne -
实验2 C语言分支与循环基础应用编程
task1.c 源代码 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
实验任务1 1.源代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main1() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 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 int number; 9 int i; 10 11 srand(time(0)); 1 -
实验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 源代码 点击查看代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 f -
实验2
实验2 四、实验结论 1.实验任务1 task1.c源代码,及,运行结果截图 回答问题 问题1:这个程序的功能是什么? 问题2:解释lin13代码的功能。 问题3:解释line14使用格式符%04d起到什么作用。 问题4:代码srand(time(0)); 起到什么作用?(提示:去掉这行代码,多次运 -
20251903 2025-2026-2 《网络攻防实践》第2周作业
一、本次实验应达到的目标 实验(1):DNS域名查询:从指定3个域名(www.besti.edu.cn、baidu.com、sina.com.cn)中选择1个,完成域名注册信息(注册人、联系方式)、对应IP地址、IP归属及地理位置查询,熟练掌握DNS解析与IP溯源的核心方法,能独立完成全流程查询操作 -
20253906 2025-2026-2 《网络攻防实践》第4周作业
一、实验要求与相关知识 1. 实验要求 在网络攻防实验环境中完成TCP/IP协议栈重点协议的攻击实验,包括ARP缓存欺骗攻击、ICMP重定向攻击、SYN Flood攻击、TCP RST攻击、TCP会话劫持攻击。 2. 相关原理 2.1 ARP 缓存欺骗攻击 (ARP Spoofing) ARP(地址 -
实验二
Task 1 点击查看代码 #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 -
实验二
试验任务一 源代码 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 task1.c 源代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 #define N 5 5 int main() 6 { 7 int number; 8 int i; 9 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)); // 以当前系统时间作为随 -
实验二
实验二 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 -
实验2
task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 for(i = 0; -
实验2
实验内容 任务1 源代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 for -
20251907 2025-2026-2《网络攻防实践》 第三周作业
20251907 2025-2026-2《网络攻防实践》 第三周作业 1. 实验内容 本次实验首先通过 tcpdump 开源软件对本机访问网站首页的网络流量进行嗅探,通过抓取并分析数据包,统计出浏览器访问网站首页时所连接的 Web 服务器数量,并逐一识别出对应服务器的 IP 地址;随后使用Wir