摘要:
TCP 报文格式(rfc793) 各个Field说明: 源端口(Source Port):长度为16 bits(2个字节)。源端口。 目的端口(Destination Port):长度为16 bits(2个字节)。目的端口。 序列号(Sequence Number):长度为32 bits(4个字节) 阅读全文
摘要:
学 号201821430024 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 冯琨杰 年级 18 区队 网实 指导教师 高见 信息技术与网络安全学院 2020年12月3日 实验任务总纲 阅读全文
摘要:
桥接模式(记住静态IP上不了网,在更换局域网后重配或者设置成自动获取): 仅主机模式:可通过设置共享主机网卡来上网,虚拟机的网关设置为主机VM0的IP地址。 NAT模式: 网卡没有显示 选择还原默认配置即可,桥接模式是没有显示的 阅读全文
摘要:
实验报告 三 学 号201821430024 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 冯琨杰 年级 18 区队 网实 指导教师 高见 信息技术与网络安全学院 2020年11月19日 阅读全文
摘要:
中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 冯琨杰 年级 18 区队 网实 指导教师 高见 信息技术与网络安全学院 2020年11月5日 实验任务总纲 2020—2021 学年 第 阅读全文
摘要:
学 号201821430024 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 冯琨杰 年级 18 区队 网实 指导教师 高见 信息技术与网络安全学院 2020年10月22日 实验任 阅读全文
摘要:
#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 阅读全文
摘要:
#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]) 阅读全文
摘要:
#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 阅读全文