摘要: HIDS-基于主机的入侵系统 Host-based Intrusion Detection System NIDS-基于网络的入侵系统 Network Intrusion Detection System 阅读全文
posted @ 2021-12-23 10:20 IT-Farmer 阅读(130) 评论(0) 推荐(0)
摘要: ping大侠的-非标操作1 DNS代理,具体干什么呢,大家自行百度,这里只讲解,本人工作中遇到的非标场景! 1,某公司有一台web服务器有域名www.xx.com 并解析成公网IP 11.11.11.11,服务器还有一个私网IP 192.168.1.100 2,如果公司内部能访问www.xx.com 阅读全文
posted @ 2021-12-10 11:54 IT-Farmer 阅读(90) 评论(0) 推荐(0)
摘要: msg = "你好,世界" print(type(msg),msg) msg1= msg.encode(encoding="utf-8") #转换成bytes print(type(msg1),msg1) print(msg1.decode(encoding="utf-8")) #转换成str 阅读全文
posted @ 2018-03-15 08:50 IT-Farmer 阅读(100) 评论(0) 推荐(0)
摘要: name = input("name:")age = int(input("age:") ) #integerprint(type(age) , type( str(age) ))sex= input("sex:") info1=''' info of '''+name+''' name: '''+ 阅读全文
posted @ 2018-02-27 16:16 IT-Farmer 阅读(175) 评论(0) 推荐(0)
摘要: #!/usr/bir/env python# -*- coding:utf-8 -*-#Author: It Farmarprint("hello word!") #学习python的仪式感 阅读全文
posted @ 2018-02-27 15:55 IT-Farmer 阅读(50) 评论(0) 推荐(0)