-
20232306 2025-2026-1 《网络与系统攻防技术》实验六实验报告
实验内容及要求 本实践目标是掌握metasploit的用法。 指导书参考Rapid7官网的指导教程。 https://docs.rapid7.com/metasploit/metasploitable-2-exploitability-guide/ 下载官方靶机Metasploitable2,完成下 -
实验4
1 问题1:连续 ,相同 问题2:连续,相同,16,一行差的总字节数 2 问1:input(int x[], int n);input(x,n) 问2:函数input的功能是输入并存储数组x中的n个数值;函数compute的功能是计算数组x中去掉最大值最小值后的平均值 3 问1:output(int -
实验4
任务1 #include<stdio.h> #define N 4 #define M 2 void test1(){ int x[N]={1,9,8,4}; int i; printf("sizeof(x)=%d\n",sizeof(x)); for(i=0;i<N;i++) printf("%p -
算法第三章作业
1.递归方程dp[i][j]= triangle[0][0](i=0,j=0)dp[i−1][0]+triangle[i][0](j=0)dp[i][i]=dp[i−1][i−1]+triangle[i][i](j=i) dp[i][j]=max(dp[i−1][j−1],dp[i−1][j])+t -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500415 姓名:林帅前 一.程序设计 1. -
实验二
task1: 代码组织: T.h 内容:类T的声明、友元函数声明 T.cpp 内容:类T的实现、友元函数实现 task1.cpp 内容:测试模块、main函数 T.h : #pragma once #include <string> // 类T: 声明class T { // 对象属性、方法 pub -
实验2 现代c++编程初体验
task1: 1 #pragma once 2 3 #include<string> 4 5 //类T声明 6 class T{ 7 public: 8 T(int x=0,int y=0);//普通构造函数 9 T(const T&t);//复制构造函数 10 T(T &&t);//移动构造函数 -
20232325 2025-2026-1 《网络与系统攻防技术》实验六实验报告
Metasploitable2靶机渗透测试实验报告 1. 实验内容 1.1 前期渗透Metasploitable2靶机,发现靶机并进行端口、漏洞扫描 1.2 Metasploit攻击渗透方法实践 (1)Vsftpd源码包后门漏洞(21端口) (2)SambaMS-RPC Shell命令注入漏洞(端口 -
实验三
任务一: 1.源代码: (1)button.hpp: #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::str -
OOP-实验3
实验任务1 源代码 button.hpp,window.hpp,task1.cpp 点击查看代码 button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std -
实验3
#include <stdio.h> char score_to_grade(int score); int main(){ int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_to_grade(score -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500411 姓名:陈鸿彬 一、一到十五题 总 -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500424 姓名:陈俊杰 本次作业对数组和指 -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx/ 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500414 姓名:陈树湘 (1)定义一个二维 -
实验03
实验一 button.hpp #pragma once #include<iostream> #include<string> class Button{ public: Button(const std::string &label_); const std::string &get_label( -
高级语言程序设计课程第七次个人作业
这个作业属于课程:课程链接 这个作业要求在:作业要求 学号:102500408 姓名:阮意舒 程序设计小题 练习1·按下标或指针处理二维数组 思路:利用指针p在每组int间与每组int内的移动实现遍历 练习2·构造螺旋方阵 思路:在需要转弯的边角处对行或列进行控制 练习3·计算并存储总分 思路:构造 -
c++ 3
##task 1 #代码 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button { 7 public: 8 Button(const std::string &label_); 9 const std: -
102302138 林楚涵 作业三
作业三 作业①:要求:指定一个网站,爬取这个网站中的所有的所有图片,例如中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 ① 核心代码与运行截图 * 点击查看代码 import requests import os import threading f -
102302114_比山布·努尔兰_作业3
作业1 指定一个网站,爬取这个网站中的所有的所有图片,例如中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取 作业代码 `import requests from bs4 import BeautifulSoup import os import thre -
实验3
实验任务1 源代码: button.hpp: #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string&