-
数据采集第三次作业-102302128吴建良
《数据采集与融合》第三次作业 学号: 102302128姓名: 吴建良 Gitee仓库地址: https://gitee.com/wujianliang9/2025-data-collection/tree/master/第三次作业 作业①:多线程爬取网站图片 一、核心思路与代码 1. MiniCr -
实验3类和对象
实验任务1 源代码如下: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string -
实验03
实验一 button.hpp #pragma once #include<iostream> #include<string> class Button{ public: Button(const std::string &label_); const std::string &get_label( -
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 -
实验四
任务一: 1.源代码: (1)GradeCalc.hpp: #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string -
实验4
实验任务1: GradeCalc.hpp #pragma once #include<vector> #include<array> #include<string> class GradeCalc{ public: GradeCalc(const std::string &cname); void -
实验三
实验任务一: 源代码: #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove"); w.add_button("modify -
实验3
任务1: button.hpp 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button { 7 public: 8 Button(const std::string &label_); 9 const s -
实验三
实验任务1 代码: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string& label_); const std::string& g -
数据采集第三次作业
作业①: 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 点击查看代码 import requests from bs4 import BeautifulSoup import os impo -
OOP实验三
任务一: task1.cpp: #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove"); w.add_button("mo -
高级语言程序设计课程第六次个人作业
班级:https://edu.cnblogs.com/campus/fzu/gjyycx 课程:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500422 姓名:陈进和 (1)设计一个按值传递和按地址传递呈现不同效果的程 -
20232309 2025-2026-1 《网络与系统攻防技术》实验六实验报告
1.实验内容 1.1学习内容 信息搜集技术(特别是网段和主机的扫描)、不同类型的漏洞攻击 1.2实验任务 前期渗透 主机发现(可用Aux中的arp_sweep,search一下就可以use) 端口扫描:可以直接用nmap,也可以用Aux中的portscan/tcp等。 选做:也可以扫系统版本、漏洞等 -
实验3
Task1 代码 Button.h #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string& label_); const std::string& get_ -
实验3
#task1 ##1.源代码 该任务为验证性实验,无需要手写代码,故此处不提供源代码 ##2.运行测试截图 ##3.回答问题 问题1: 这个范例中, Window 和 Button 是组合关系吗? 答:是 问题2: bool has_button(const std::string &label) -
102302110高悦作业3
作业①: 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 –务必控制总页数(学号尾数2位)、总下载的图片数量(尾数后3位)等限制爬取的措施。 1.实现过程及代码 1.1 单线程 1.1.1获取 -
20232429 2025-2026-1 《网络与系统攻防技术》实验六实验报告
1.实验内容 (1)前期渗透 (2)Vsftpd源码包后门漏洞(21端口) (3)SambaMS-RPC Shell命令注入漏洞(端口139) (4)Java RMI SERVER命令执行漏洞(1099端口) (5)PHP CGI参数执行注入漏洞(80端口) 2.实验过程 2.1前期渗透 2.1.1 -
实验3
任务1:源代码: 1 #include "window.hpp" 2 #include <iostream> 3 4 void test(){ 5 Window w("Demo"); 6 w.add_button("add"); 7 w.add_button("remove"); 8 w.add_b -
20232325 2025-2026-1 《网络与系统攻防技术》实验六实验报告
Metasploitable2靶机渗透测试实验报告 1. 实验内容 1.1 前期渗透Metasploitable2靶机,发现靶机并进行端口、漏洞扫描 1.2 Metasploit攻击渗透方法实践 (1)Vsftpd源码包后门漏洞(21端口) (2)SambaMS-RPC Shell命令注入漏洞(端口 -
高级语言程序设计第五次作业
学号:102500302 姓名:陈婧妍 设计一个getchar和putchar联合使用的程序,使得程序遇到空格符时结束。 建立一个in.txt和out.txt,分别使用这两个文件进行重定位代替键盘输入和屏幕输出in.txt存放一些字符小写字符,大写字符,数字字符,程序将这些小写字符转换成大写字符,然