-
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500336 姓名:林陈帅 作业内容 (1)定义 -
实验4
GradeCalc.h #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); void inpu -
102302109-胡贝贝-作业4
作业①: (1)实验内容及结果 熟练掌握 Selenium 查找HTML元素、爬取Ajax网页数据、等待HTML元素等内容。 使用Selenium框架+ MySQL数据库存储技术路线爬取“沪深A股”、“上证A股”、“深证A股”3个板块的股票数据信息。 核心代码: class StockDataSpi -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500326 姓名:罗炜 1 2 3 4 5 6 -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102400102 姓名:方韵希 (1)设计一个按值 -
实验三
任务一: 1.源代码: (1)button.hpp: #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::str -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500330 姓名:黄明浩 (1)设计一个按值传 -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500411 姓名:陈鸿彬 一、一到十五题 总 -
20232413 2025-2026-1 《网络与系统攻防技术》实验六实验报告
Metasploit攻击渗透实践 一.实验内容 1.前期渗透操作 2.Vsftpd 源码包后门漏洞 3.Samba MS-RPC Shell 命令注入漏洞 4.Java RMI Server 命令执行漏洞 5.PHP CGI 参数执行注入漏洞 二.实验过程 2.1前期渗透操作 2.1.1主机发现(A -
20232314 2025-2026-1 《网络与系统攻防技术》实验六实验报告
一、实验内容 下载官方靶机Metasploitable2,完成下面实验内容。 (1)前期渗透 ①主机发现(可用Aux中的arp_sweep,search一下就可以use) ②端口扫描:可以直接用nmap,也可以用Aux中的portscan/tcp等。 ③选做:也可以扫系统版本、漏洞等。 (2)Vsf -
20232302 2025-2026-1 《网络与系统攻防技术》实验六实验报告
Metasploit攻击渗透实践 1.实验内容 下载官方靶机Metasploitable2,完成下面实验内容。(1)前期渗透(2)Vsftpd源码包后门漏洞(21端口)(3)SambaMS-RPC Shell命令注入漏洞(端口139)(4)Java RMI SERVER命令执行漏洞(1099端口)( -
数据采集与融合技术实践作业二
作业1 – 要求:在中国气象网(http://www.weather.com.cn)给定城市集的7日天气预报,并保存在数据库。 – 输出信息: Gitee文件夹链接 代码: from bs4 import BeautifulSoup from bs4 import UnicodeDammit imp -
实验3 类和对象基础编程2
实验任务1源代码: 1 #pragma once 2 #include <iostream> 3 #include <string> 4 class Button { 5 public: 6 Button(const std::string& label_); 7 const std::string -
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 -
实验3
作业1 #include <stdio.h> char score_to_grade(int score); int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_to_grade( -
高级语言程序设计课程第三次个人作业
班级连接:https://edu.cnblogs.com/campus/fzu/gjyycx 作业链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13574 学号:102500401 姓名:林含悦 一.编写并运行书本第4章4.8编程练习题目 -
高级语言程序设计课程第三次个人作业
  ![(3)] -
实验三
task.1 点击查看代码 #include <stdio.h> char score_to_grade(int score); int main(){ int score; int grade; while(scanf("%d",&score)!=EOF){ grade = score_to_gr -
20232325 2025-2026-1 《网络与系统攻防技术》实验六实验报告
Metasploitable2靶机渗透测试实验报告 1. 实验内容 1.1 前期渗透Metasploitable2靶机,发现靶机并进行端口、漏洞扫描 1.2 Metasploit攻击渗透方法实践 (1)Vsftpd源码包后门漏洞(21端口) (2)SambaMS-RPC Shell命令注入漏洞(端口 -
实验三
实验任务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 co