摘要: 我和黄琪凯搭档,查询了他的IP地址的多个端口 其中PORT STATE SERVICE中 只有22/tcp open ssh 阅读全文
posted @ 2021-12-11 15:43 20211428谷丰宇 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 代码: # encoding:utf-8 import tkinter as tk root = tk.Tk() root.title("Small Calculator") root.geometry('500x300') var1 = tk.DoubleVar() label1 = tk.Lab 阅读全文
posted @ 2021-12-11 15:00 20211428谷丰宇 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 作业信息 班级:2021-2022-1信息安全专业导论 作业要求 作业目的: 计算机网络 网络拓扑 云计算 网络安全 Web HTML,CSS,Javascript XML 作业正文 教材学习内容总结 计算机科学导论 第十七章: 1.各级安全 信息安全:用于确保正确访问数据的技术与政策。 保密性:确 阅读全文
posted @ 2021-12-11 13:55 20211428谷丰宇 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 我在范超名的虚拟机中建了两个文件夹:fanchaomingdajuandan fanchaomingdajuandanjuansiwobaqiuqiule 阅读全文
posted @ 2021-12-09 23:21 20211428谷丰宇 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 参考 https://www.cnblogs.com/mq0036/p/11187138.html,访问一个网站,抓包分析一次TCP三次握手,四次分手的过程。 提交截图或博客链接 三次握手: 四次分手: 阅读全文
posted @ 2021-12-09 19:32 20211428谷丰宇 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 作业信息 班级:2021-2022-1信息安全专业导论 作业要求 作业目的: 计算机网络 网络拓扑 云计算 网络安全 Web HTML,CSS,Javascript XML 作业正文 教材学习内容总结 计算机科学导论 第十五章: 1.联网 计算机网络:为了通信和共享资源而链接在一起的一组计算设备 无 阅读全文
posted @ 2021-12-04 21:40 20211428谷丰宇 阅读(32) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/2551042/202112/2551042-20211202231913010-614971853.png) ![](https://img2020.cnblogs.com/blog/2551042/202112/2551042-20211202231922061-453286102.png) ![](https://im 阅读全文
posted @ 2021-12-02 23:20 20211428谷丰宇 阅读(69) 评论(0) 推荐(0) 编辑
摘要: import random num1=random.randrange(1,10) num2=random.randrange(1,10) print(num1) print(num2) class PointLenth: def __init__(self,x1,y1,x2,y2): self.x 阅读全文
posted @ 2021-12-02 22:01 20211428谷丰宇 阅读(10) 评论(0) 推荐(0) 编辑
摘要: import datetime x = (datetime.datetime.now() + datetime.timedelta(days=28)) print("星期%d" % (x.weekday() + 1)) 阅读全文
posted @ 2021-11-30 16:36 20211428谷丰宇 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 代码: from transitions import Machine #定义一个我总自己的属性 class xqc(object): pass #创建我自己的一个对象 model = xqc() #对于状态的些定义 states = ['New', 'Ready', 'Waiting', 'Run 阅读全文
posted @ 2021-11-28 11:28 20211428谷丰宇 阅读(34) 评论(0) 推荐(0) 编辑