-
20253920 2025-2026-2 《网络攻防实践》第2次作业
20253920 2025-2026-2 《网络攻防实践》第2次作业 1.实验内容 1.1 实验环境准备与 Nessus 引擎初始化 平台登录与状态检查: 启动 Kali Linux 虚拟机并访问 Nessus Web 控制台(https://127.0.0.1:8834)。初始状态下,系统提示 “ -
实验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)) -
实验二
试验任务一 源代码 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 -
实验二
实验1 源代码 点击查看代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 f -
实验二
实验二 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 -
实验二
任务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){ nu -
实验二
任务1 源代码: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 int main() 7 { 8 int number; 9 int i; 10 11 srand(time(0)); 12 -
20252806 2025-2026-2 《网络攻防实践》第2次作业
20252806 《网络攻防实践》第2次作业 文章目录 目录文章目录1.实验内容2.实验过程(1)从www.besti.edu.cn、baidu.com、sina.com.cn中选择一个DNS域名进行查询,获取如下信息:(2)尝试获取BBS、论坛、QQ、MSN中某一好友的IP地址,并查询获取该好友所 -
20252920 卢兴宇2025-2026-2 第三周作业
1 实验内容 (1)实践tcpdump 使用tcpdump开源软件对在本机上访问www.163.con网站过程进行嗅探。 (2)实践Wireshark 使用Wireshark对在本机上以TELNET方式登录BBS进行嗅探与协议分析 (3) 取证分析实践 解码网络扫描器(listen.pcap),分析 -
20254226黄婉婷 实验报告1
20254226 2025-2026-2 《Python程序设计》实验1报告 课程:《Python程序设计》 班级: 2542 姓名: 黄婉婷 学号:20254226 实验教师:王志强 实验日期:2026年3月23日 必修/选修: 公选课 1.实验内容 (1)熟悉Python开发环境; 介绍Pyth -
20233225 实验一《Python程序设计》实验报告
20233225 2025-2026-2 《Python 程序设计》实验 1 报告 课程:《Python 程序设计》 班级:2442 姓名:曹熙卓 学号:20233225 实验教师:王志强 实验日期:2026 年 3 月 23 日 必修 / 选修:公选课 实验内容 本次实验围绕 Python 程序设 -
20252820 2024-2025-2 《网络攻防实践》实验三
《网络攻防实践》实验三:网络嗅探与协议分析实践 一、实验目的 熟悉 tcpdump 的基本使用方法,掌握基于命令行的网络抓包操作。 熟悉 Wireshark 的抓包、过滤与协议分析方法。 掌握对 TELNET 明文传输过程的分析方法。 学会结合 Snort、Wireshark、p0f 等工具对网络扫 -
实验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 -
我的主页
https://www.cnblogs.com/Prk555/ -
博客主页地址
https://www.cnblogs.com/RolynHyc0747 -
[I.1] 北航软件工程个人作业:阅读和提问
项目 内容 这个作业属于哪个课程 课程社区首页 这个作业的要求在哪里 作业要求 我在这个课程的目标是 理解软件工程的相关知识,并能够在真实项目中应用 这个作业在哪个具体方面帮助我实现目标 通过阅读教材并提出问题,加深对软件工程方法和开发流程的理解。 阅读提问 在阅读邹欣老师的博客园讲义后,我列出以下 -
实验1
##实验任务1 +代码1.1 1 #include<stdio.h> 2 #include<stdlib.h> 3 int main() 4 { 5 printf(" o\n"); 6 printf("<H>\n"); 7 printf("I I\n"); 8 printf(" o\n"); 9 p -
实验1
实验任务1 1 #include<stdio.h> 2 #include<stdlib.h> 3 int main() 4 { 5 printf(" O \n"); 6 printf("<H>\n"); 7 printf("I I\n"); 8 printf(" O \n"); 9 printf(" -
博客地址
https://www.cnblogs.com/Ahmmsdy1 -
实验1
//打印一个小人 #include<stdio.h> int main() { printf(" o \n"); printf("<H>\n"); printf("I I\n"); printf(" o \n"); printf("<H>\n"); printf("I I\n"); return 0