-
实验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(scor -
实验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(score) -
实验3
实验任务1 任务1 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> char score_to_grade(int score); int main(){ int score; char grade; while (scanf("%d", &sco -
实验三
/*实验1*/ 1 #include<stdio.h> 2 char score_to_grade(int score); 3 int main(){ 4 int score; 5 char grade; 6 while(scanf("%d",&score)!=EOF){ 7 grade=score -
实验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(score -
实验报告3
实验1 #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_t -
实验二
实验任务1 代码: T.h: #pragma once #include <string> class T { public: T(int x = 0, int y = 0); T(const T& t); T(T&& t); ~T(); void adjust(int ratio); void d -
实验3
#include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_to_gr -
实验2
一、实验任务1 源代码task1 1 #pragma once 2 3 #include <string> 4 5 // 类T: 声明 6 class T { 7 // 对象属性、方法 8 public: 9 T(int x = 0, int y = 0); // 普通构造函数 10 T(const -
20232417 2025-2026-1 《网络与系统攻防技术》实验二实验报告
1.实验内容 本次实验系统掌握了后门技术的实现与应用,通过netcat、socat和MSF meterpreter等工具成功建立了反向Shell连接,实现了文件传输、系统监控等后门功能,并在实践过程中深入理解了网络配置、权限提升、安全防护等关键技术要点,全面提升了网络攻防实战能力。 2.实验过程 2 -
实验二
实验一 源代码 T.cpp #include "T.h" #include <iostream> #include <string> // 类T实现 // static成员数据类外初始化 const std::string T::doc{"a simple class sample"}; const -
实验2
实验任务1 程序源代码如下: T.h 1 #pragma once 2 #include <string> 3 4 class T{ 5 public: 6 T(int x = 0,int y = 0); 7 T(const T &t); 8 T(T &&t); 9 ~T(); 10 11 void -
实验二
C++実験第二弾 -
实验二
task1 T.h 1 #pragma once 2 3 #include <string> 4 5 // 类T: 声明 6 class T { 7 // 对象属性、方法 8 public: 9 T(int x = 0, int y = 0); // 普通构造函数 10 T(const T &t); -
OOP-实验2
实验任务1 源代码task1 1 // 类T的声明、友元函数声明 2 3 #pragma once 4 5 #include <string> 6 7 // 类T: 声明 8 class T 9 { 10 // 对象属性、方法 11 public: 12 T(int x = 0, int y = 0 -
20232428 2025-2026-1 《网络与系统攻防技术》实验二实验报告
实验内容 学习内容: (1)从狭义上理解了后门的原理、后门一般通过什么方式被安装、安装后门后如何应用、以及如何预防后门 (2)常用后门工具的使用,例如:netcat,socat,MSF meterpreter (3)使用上述工具对后门进行实践攻击的方法 回答问题: (1)例举你能想到的一个后门进入到 -
20232416 2025-2026-1《网络与系统攻防技术》实验二实验报告
20232416 2025-2026-1《网络与系统攻防技术》实验二实验报告 1.实验内容 (1)使用nc实现win,Linux间的后门连接 (2)meterpreter的应用 (3)MSF POST模块的应用 2.实验目标 学习Netcat、Socat、Meterpreter生成等技术,最终可以达 -
# 20232429 马成栋 2025-2026-1 《网络与系统攻防技术》实验二实验报告
1.实验内容 掌握后门原理及免杀技术 回答问题 (1)例举你能想到的一个后门进入到你系统中的可能方式? 通过一些恶意链接,在用户点击进去之后就给系统自动安装后门 (2)例举你知道的后门如何启动起来(win及linux)的方式? 在注册表里面设置为开机自启动 (3)Meterpreter有哪些给你映像 -
20232421 2025-2026-1 《网络与系统攻防技术》实验二实验报告
1.实践内容 1.1 实践目标 使用netcat获取主机操作Shell,cron启动某项任务(任务自定) 使用socat获取主机操作Shell, 任务计划启动 使用MSF meterpreter(或其他软件)生成可执行文件(后门),利用ncat或socat传送到主机并运行获取主机Shell 使用MS -
实验2 现代C++编程初体验
任务一: T.h: 1 #pragma once 2 3 #include <string> 4 5 // 类T: 声明 6 class T { 7 // 对象属性、方法 8 public: 9 T(int x = 0, int y = 0); // 普通构造函数 10 T(const T &t);