-
# 20252920 2025-2026-2 《网络攻防实践》实践7报告
1.实践内容 (1)使用Metasploit进行Linux远程渗透攻击 任务:使用Metasploit渗透测试软件,攻击Linux靶机上的Samba服务Usermap_script安全漏洞,获取目标Linux靶机的主机访问权限。实践步骤如下: ①启动Metasploit软件,可根据个人喜好使用msf -
20251911 2025-2026-2 《网络攻防实践》实践7报告
1.实践内容 任务一:使用 Metasploit 框架对 Linux 靶机的 Samba 服务进行远程渗透。通过 usermap_script 漏洞模块,配置合适的远程 Shell 载荷,设置目标与监听参数,完成漏洞利用,最终获取靶机的主机访问权限并验证权限级别。 任务二:进行攻防对抗模拟。攻击方在 -
20252808 2025-2026-2 《网络攻防实践》第七次作业
20252808 2025-2026-2 《网络攻防实践》第七次作业 一. 实验内容 1.1 实验内容概述 (1)使用Metasploit进行Linux远程渗透攻击 使用Metasploit渗透测试软件,攻击Linux靶机上的Samba服务Usermap_script安全漏洞,获取目标Linux靶机 -
20253917 2025-2026-2 《网络攻防实践》实践10报告
SQL注入 一、SELECT注入登录 进入SEEDLAB Ubuntu 16.04 在浏览器输入以下网址并进入(http://www.seedlabsqlinjection.com/)也可以在火狐浏览器的书签中找到 这是一个登陆界面,我们需要通过注入的方式登录到该管理系统中去。 注入方式如下在Use -
20252816 2025-2026-2 《网络攻防实践》第八次作业
20252816 2025-2026-2 《网络攻防实践》第八次作业 >.< 相关概念 恶意代码:Malware,或Malicious Code,指的是使计算机按照攻击者的意图执行以达到恶意目标的指令集。恶意代码类型恶意代码可以根据其执行方式、传播方式和对攻击目标的影响分为计算机病毒、蠕虫、恶意移动 -
20252812 2025-2026-2 《网络攻防实践》实践七报告
20252812 2025-2026-2 《网络攻防实践》实践七报告 1.实践内容 1.1 本周学习内容 1.1.1 Linux概述 Linux系统在服务器、安全敏感部门、移动终端市场上有重要地位。Linux之所以能成为目前最受关注的系统之一,是因为其开放性与免费性。Linux具有开放性是因为它的源 -
20252307 实验三 《Python程序设计》 实验报告
学号 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2523 姓名: 万书林 学号:20252307 实验教师:王志强 实验日期:2026年4月27日 必修/选修: 公选课 1.实验内容 (1)使用 Python 语言基于 TCP Socket -
20253421 实验三《Python程序设计》实验报告
课程:《Python程序设计》 班级: 2534 姓名: 林资恒 学号:20253421 实验教师:王志强 实验日期:2026年4月25日 必修/选修: 公选课 1.实验内容 创建服务端和客户端,服务端在特定端口监听多个客户请求。客户端和服务端通过Socket套接字(TCP/UDP)进行通信。 (1 -
实验四
1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof(x) = %d -
实验4
任务1 源代码: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 10 printf("sizeof(x) = %d\n", siz -
实验4
task1 源代码 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof -
实验四
任务一 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof(x) -
实验4
任务1 1 #include<stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = { 1,9,8,4 }; 7 int i; 8 9 //输出数组x占用的内存字节数 10 printf("sizeof(x)=%d\ -
实验4
一、实验结论 1.task1 代码 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = { 1, 9, 8, 4 }; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\ -
实验四-C语言数组应用编程
任务一 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof(x) -
实验四
实验四 实验任务1(验证) 源代码 点击查看代码 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) -
实验报告4
task1 源代码: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("siz -
实验四
task1 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof(x -
实验4
实验任务1 源代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 #define M 2 5 6 void test1(){ 7 int x[N] = {1,9,8,4}; 8 int i; 9 10 printf("sizeof( -
实验4
任务1 点击查看代码 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = { 1, 9, 8, 4 }; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", siz