实验

实验2 字符串和列表

实验任务一: 实验源码: 1 # 字符串的基本操作 2 3 x = 'nba FIFA' 4 print(x.upper()) # 字符串转大写 5 print(x.lower()) # 字符串转小写 6 print(x.swapcase()) # 字符串大小翻转 7 print() 8 9 x = ......
字符串 字符

实验2

#task1源代码: x='nba FIFA' print(x.upper()) print(x.lower()) print(x.swapcase()) print() x='abc' print(x.center(10,'*')) print(x.ljust(10,'*')) print(x.r ......

实验2 字符串和列表

实验任务1 task1.py 实验源码: x = 'nba FIFA' print(x.upper()) print(x.lower()) print(x.swapcase()) print() x = 'abc' print(x.center(10, '*')) print(x.ljust(10, ......
字符串 字符

实验一 密码引擎-2-电子钥匙功能测试

0 参考附件中的视频 1 解压"资源"中“龙脉密码钥匙驱动实例工具等”压缩包 2 在Ubuntu中运行 “龙脉密码钥匙驱动实例工具等\mToken-GM3000\skf\samples\linux_mac”中例程,提交运行结果截图 3 加分项:运行“龙脉密码钥匙驱动实例工具等\mToken-GM30 ......
功能测试 钥匙 密码 功能 引擎

nfs实验步骤

1.yum install -y nfs-utils 查看是否安装nfs 2.vim /etc/sysconfig/network-scripts/ifcfg-eno16777736 编辑ip地址网关信息 3.systemctl restart network 重启网卡 4.ping www.bai ......
步骤 nfs

实验报告

......
报告

实验报告

......
报告

实验报告

......
报告

网络对抗实验二 后门原理与实践--20201313

《网络对抗技术》——Exp2 后门原理与实践 一、实验准备 1、实验要求 使用netcat获取主机操作Shell,cron启动 使用socat获取主机操作Shell, 任务计划启动 使用MSF meterpreter(或其他软件)生成可执行文件,利用ncat或socat传送到主机并运行获取主机She ......
后门 20201313 原理 网络

实验2 字符串和列表

task1: x = 'nba FIFA' print(x.upper()) print(x.lower()) print(x.swapcase()) print() x = 'abc' print(x.center(10,'*')) print(x.ljust(10,'*')) print(x.r ......
字符串 字符

实验2 字符串和列表

1.实验任务1 task1.py 1 #字符串的基础操作 2 3 x = 'nba FIFA' 4 print(x.upper()) #字符串转大写 5 print(x.lower()) #字符串转小写 6 print(x.swapcase()) #字符串大小写翻转 7 print() 8 9 x ......
字符串 字符

20201326_exp2_后门原理与实践_实验报告

20201326 EXP2-后门原理与实践 一、实验基础 实验目的 本次实验需要我们掌握后门的基础知识,学习使用nc实现Windows,Linux之间的后门连接,学习使用Metaspolit的msfvenom指令生成简单的后门程序,学会MSF POST模块的应用。 基础知识 后门 后门就是不经过正常 ......
后门 20201326 原理 报告 exp2

实验2.字符串和列表

# 字符串的基础操作 # 课堂上没有演示的一些方法 x = 'nba FIFA' print(x.upper()) # 字符串转大写 print(x.lower()) # 字符串转小写 print(x.swapcase()) # 字符串大小写翻转 print() x = 'abc' print(x. ......
字符串 字符

实验一 密码引擎-2-电子钥匙功能测试

一、任务详情 0 参考附件中的视频 1 解压"资源"中“龙脉密码钥匙驱动实例工具等”压缩包 2 在Ubuntu中运行 “龙脉密码钥匙驱动实例工具等\mToken-GM3000\skf\samples\linux_mac”中例程,提交运行结果截图 3 加分项:运行“龙脉密码钥匙驱动实例工具等\mTok ......
功能测试 钥匙 密码 功能 引擎

20201230张国强实验二

后门原理与实践 1.基础问题回答 (1)例举你能想到的一个后门进入到你系统中的可能方式? 1.插入带毒的U盘,或者别人趁我不注意,插入带毒的U盘; 2.下载盗版软件; 3.钓鱼网站链接,利用浏览器缓冲区溢出做后门; 4.SSH弱口令。不少机器都是开了SSH远程登录的,弱口令爆破。 (2)例举你知道的 ......
20201230

linux操作系统实验三-搭建vscode调试环境,进行start_kernal调试

实验三:debug mykernel 首先安装开发工具 sudo apt install build-essential sudo apt install qemu # install QEMU sudo apt install libncurses5-dev bison flex libssl-d ......
start_kernal 环境 kernal vscode 系统

实验二

task1x='nba FIFA' print(x.upper()) print(x.lower()) print(x.swapcase()) print() x='abc' print(x.center(10,'*')) print(x.center(10,'*')) print(x.ljust( ......

实验二 字符串和列表

task1 源代码: x = 'nba FIFA' print(x.upper()) print(x.lower()) print(x.swapcase()) print() x = 'abc' print(x.center(10, '*')) print(x.ljust(10, '*')) pri ......
字符串 字符

实验2 字符串和列表

1.实验任务1 1 x = 'nba FIFA' 2 print(x.upper()) 3 print(x.lower()) 4 print(x.swapcase()) 5 print() 6 7 x = 'abc' 8 print(x.center(10, '*')) 9 print(x.ljus ......
字符串 字符

实验2

task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define R1 568 #define R2 701 int main() { int number; int i; srand( time(0 ......

实验2 输入输出和控制语句应用编程

任务1 #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 #define R1 586 #define R2 701 int main() { int number; int i; srand( time(0) ); ......
语句

实验二

x = 'nba FIFA' print(x.upper()) print(x.lower()) print(x.swapcase()) print() x = 'abc' print(x.center(10, '*')) print(x.ljust(10, '*')) print(x.rjust( ......

实验2

task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define R1 586 #define R2 701 int main() { int number; int i; srand(time(0) ......

实验2 字符串和列表

task1 实验源码 #字符串的基础操作 x = 'nba FIFA' print(x.upper()) print(x.lower()) print(x.swapcase()) print() x = 'abc' print(x.center(10, '*')) print(x.ljust(10, ......
字符串 字符

实验二

实验任务一 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define R1 586 #define R2 701 int main() { int number; int i; srand(time(0) ......

实验2 字符串和列表

实验任务1: x='nba FIFA' print(x.upper()) print(x.lower()) print(x.swapcase()) print() x='abc' print(x.center(10,'*')) print(x.ljust(10,'*')) print(x.rjust ......
字符串 字符

实验2

1、实验任务1 task1.c #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define R1 586 #define R2 701 int main() { int number; int i; sra ......

实验2

task1 源代码 #include<stdio.h> #include<stdlib.h> #include<time.h> #include<math.h> #define N 5 #define R1 663 #define R2 701 int main() { int number, i; ......

实验2 字符串和列表

实验任务1 task1 1 x = 'nba FIFA' 2 print(x.upper()) 3 print(x.lower()) 4 print(x.swapcase()) 5 print() 6 7 x = 'abc' 8 print(x.center(10, '*')) 9 print(x. ......
字符串 字符

实验2

#include "stdafx.h" #include <stdlib.h> #include <stdio.h>int _tmain(int argc, _TCHAR* argv[]) { int a1, a2, a3; char c1, c2, c3; double x, y;scanf(" ......