摘要: TCP 报文格式(rfc793) 各个Field说明: 源端口(Source Port):长度为16 bits(2个字节)。源端口。 目的端口(Destination Port):长度为16 bits(2个字节)。目的端口。 序列号(Sequence Number):长度为32 bits(4个字节) 阅读全文
posted @ 2020-12-09 15:49 Kin23 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 学 号201821430024 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 冯琨杰 年级 18 区队 网实 指导教师 高见 信息技术与网络安全学院 2020年12月3日 实验任务总纲 阅读全文
posted @ 2020-12-03 10:54 Kin23 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 桥接模式(记住静态IP上不了网,在更换局域网后重配或者设置成自动获取): 仅主机模式:可通过设置共享主机网卡来上网,虚拟机的网关设置为主机VM0的IP地址。 NAT模式: 网卡没有显示 选择还原默认配置即可,桥接模式是没有显示的 阅读全文
posted @ 2020-11-30 21:01 Kin23 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 实验报告 三 学 号201821430024 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 冯琨杰 年级 18 区队 网实 指导教师 高见 信息技术与网络安全学院 2020年11月19日 阅读全文
posted @ 2020-11-19 11:11 Kin23 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 冯琨杰 年级 18 区队 网实 指导教师 高见 信息技术与网络安全学院 2020年11月5日 实验任务总纲 2020—2021 学年 第  阅读全文
posted @ 2020-11-16 10:45 Kin23 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 学 号201821430024 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 冯琨杰 年级 18 区队 网实 指导教师 高见 信息技术与网络安全学院 2020年10月22日 实验任 阅读全文
posted @ 2020-10-26 20:35 Kin23 阅读(1197) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include <windows.h>#include <stdlib.h> int average(int a,int b,int c) { int av; av=(a+b+c)/3; return av; } int 阅读全文
posted @ 2019-06-20 11:49 Kin23 阅读(138) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>/*void select_sort(int a[],int n) { for(int i=0; i<n-1; i++) { int max_index = i; for(int j=i+1; j<n; j++) { if(a[j] > a[max_index]) 阅读全文
posted @ 2019-06-20 11:46 Kin23 阅读(149) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>/*int add(int a,int b){ return a+b;}int minus(int a,int b){ return a-b;}int multip(int a,int b){ return a*b;}int quotient(int a,int 阅读全文
posted @ 2019-06-06 15:10 Kin23 阅读(101) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<math.h>int main()/*{ long int i,s=0; for(i=22;i<=1002;i+=20){ s+=i; } printf("%ld\n",s); return 0;}{long int i=22,s=0; while 阅读全文
posted @ 2019-05-09 15:17 Kin23 阅读(125) 评论(0) 推荐(0) 编辑