-
20232415 2025-2026-1 《网络与系统攻防技术》实验七实验报告
1.实验内容 1.1使用SET工具建立冒名网站; 1.2使用Ettercap进行DNS欺骗; 1.3结合SET与Ettercap技术实施DNS欺骗钓鱼攻击; 1.4提高防范意识,并提出具体防范方法。 2.实验目的 理解常用网络欺诈背后的原理,以提高防范意识,并提出具体防范方法。 3.实验环境 安装K -
实验四
#任务1 ##代码 #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); void input( -
20232412 2025-2026-1 《网络与系统攻防技术》实验七实验报告
1.实验内容 实验要求 本实践的目标理解常用网络欺诈背后的原理,以提高防范意识,并提出具体防范方法。具体实践有 (1)简单应用SET工具建立冒名网站 (2)ettercap DNS spoof (3)结合应用两种技术,用DNS spoof引导特定访问到冒名网站。 本实验旨在通过实践深入理解两种主流网 -
软件技术基础第三次作业
这个作业属于哪一个课程 https://edu.cnblogs.com/campus/zjlg/25rjjc 这个作业的目标 以小组为单位,完成“电梯演讲” 姓名-学号 杜清颖-2023329301038 姓名-学号 张娜娜-2023329301035 视频上传地址 https://b23.tv/m -
软件技术基础第三次作业
软件技术基础第三次作业 这个作业属于哪个课程 https://edu.cnblogs.com/campus/zjlg/25rjjc 这个作业的目标 以小组为单位,完成一个“电梯演讲”作业 姓名-学号 王俊婷 - 2023329301100 潘奕汝 - 2023329301102 视频地址 https -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500336 姓名:林陈帅 作业内容 (1)定义 -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500309 姓名:郑睿杰 目的 定义一个二维数 -
022304105叶骋恺数据采集第四次作业
作业1 代码与运行结果 for market_type in ["沪深A股", "上证A股", "深证A股"]: driver.get(market_urls[market_type]) time.sleep(5) try: wait.until(EC.presence_of_element_loc -
实验4
GradeCalc.h #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); void inpu -
Experiment 6
Task 4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 -
102302134陈蔡裔数据采集综合实践
综合实践 引言 大家好,我是陈蔡裔,来自“途个开心——旅行规划与记录助手”项目团队。在为期数月的项目开发中,我主要担任前端架构师,负责从技术选型到组件开发的全链路实现。本文将系统性地分享我在Vue3、组件化架构、数据可视化以及性能优化方面的技术实践与深度思考。 一、技术栈选型与架构设计 1.1 为什 -
实验6
实验任务4 #include<stdio.h> #define N 10 typedef struct{ char isbn[20]; char name[80]; char author[20]; double sales_price; int sales_count; }Book; void o -
实验五
publisher.hpp #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = ""); // 构造函数 vi -
实验五
task1 源代码 publisher.hpp #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = ""); -
实验5
task1_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* pmin, int* pmax -
团队作业5——测试与发布(Alpha版本)
一、作业基本信息 项目 内容 这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/Class34Grade23ComputerScience/ 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/Class34Grad -
实验五
任务一 publisher.hpp 1 #pragma once 2 #include<string> 3 class Publisher 4 { 5 public: 6 Publisher(const std::string &name_=""); 7 virtual ~Publisher()=d -
oop-实验6
task1 contestant.hpp 1 #pragma once 2 3 #include<iomanip> 4 #include<iostream> 5 #include<string> 6 7 struct Contestant{ 8 //学号/姓名/专业 9 long id; 10 st -
实验6 文件I/O与异常处理
实验任务1 程序源代码如下: contestant.hpp 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; 8 std:: -
OOP-实验6
实验任务1 源代码 contestant.hpp,utils.hpp,task1.cpp 点击查看代码 contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contes