-
20232324 2025-2026-1 《网络与系统攻防技术》实验七实验报告
1.实验内容 使用SET工具建立冒名网站; 使用Ettercap进行DNS欺骗; 结合SET与Ettercap技术实施DNS欺骗钓鱼攻击; 提高防范意识,并提出具体防范方法。 2.实验过程 2.1简单应用SET工具建立冒名网站 1.启动SET工具 在kali中输入setoolkit 社会工程学工具包 -
实验3
#pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get_label() const; voi -
数据采集_3
目录第一题:多线程爬取图片核心代码与运行结果:心得体会:第二题:scrapy爬取股票核心代码与运行结果:心得体会:第三题:scrapy爬取外汇网站数据核心代码与运行结果:心得体会: 第一题:多线程爬取图片 核心代码与运行结果: 点击查看代码 import re import requests imp -
实验3
Task1 代码 Button.h #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string& label_); const std::string& get_ -
博客3
作业①: 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 通过解析htlm,找到所有<img>标签,爬取所有图片 。 完整代码: import os import re import requ -
实验3_CPP
任务1 源代码 button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get -
102302122许志安作业3
要求:指定一个网站,爬取这个网站中的所有的所有图片,例如中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 代码如下: import os import requests from bs4 import BeautifulSoup from urllib -
20232407 2025-2026-1 《网络与系统攻防技术》 实验七实验报告
1.实验内容 (1)简单应用SET工具建立冒名网站 (2)ettercap DNS spoof (3)结合应用两种技术,用DNS spoof引导特定访问到冒名网站。 2.实验过程 一.简单应用SET工具建立冒名网站 打开kali,在root用户下通过setoolkit命令启动SET工具。 选择1) -
实验三
任务1: 源代码: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& g -
实验三:类和对象
实验任务一: 源码: #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get_label() const; //‘&’ -
实验三
实验任务一 原代码 button.hpp 点击查看代码 #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::st -
作业三
作业① 要求:指定一个网站,爬取这个网站中的所有的所有图片。实现单线程和多线程的方式爬取。 代码 import requests import re import os from concurrent.futures import ThreadPoolExecutor, as_completed u -
高级语言程序设计第六次个人作业
高级语言程序设计第六次个人作业 作业课程:2025高级语言程序设计(福州大学) 作业要求:高级语言程序设计第六次个人作业 学号:052406103 姓名:叶银珍 作业内容 设计一个按值传递和按地址传递呈现不同效果的程序。 #include<stdio.h> void change1(int a,in -
实验3
实验任务1: button.hpp: #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get -
高级程序语言设计第六次作业
这个作业属于哪个课程 <班级的链接> 这个作业要求在哪里 <作业链接> 学号 092300303 姓名 池博洋 @目录1.设计一个按值传递和按地址传递呈现不同效果的程序2.编写函数fun(int m, int *k, int xx[]),将小于整数m的非素数存入xx数组中,个数由k返回3.编写函数, -
20232406 2025-2026-1 《网络与系统攻防技术》 实验六实验报告
一、实验内容 1.实验内容 (1)前期渗透 ①主机发现(可用Aux中的arp_sweep,search一下就可以use) ②端口扫描:可以直接用nmap,也可以用Aux中的portscan/tcp等。 ③选做:也可以扫系统版本、漏洞等。 (2)Vsftpd源码包后门漏洞(21端口) 漏洞原理:在特定 -
数据科学与大数据技术作业三_102302107_林诗樾
第三次作业 一、作业内容 作业①: 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 –务必控制总页数(学号尾数2位)、总下载的图片数量(尾数后3位)等限制爬取的措施。 (1)代码 import -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx/ 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500405 姓名:刘诺涵 (1)设计一个按值 -
作业3
作业1 1.气象网页爬取实验 实验要求 指定一个网站,爬取这个网站中的所有的所有图片,中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 输出信息:将下载的图片保存在images子文件夹中 导入库: requests:发送请求获取数据 Beautiful -
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