2023年3月23日

摘要: 1.字符串 >>> ''.join('3') '3' 2.列表 >>> ''.join(['3','9']) '39' 3.字典 4.>>> [''.join(str(i)) for i in range(5)] ['0', '1', '2', '3', '4'] 5.如果join前面的字符串已经有 阅读全文
posted @ 2023-03-23 12:05 《=》 阅读(133) 评论(0) 推荐(0) 编辑

2023年1月2日

摘要: django.views.geneic :django.视图.通用的 有时候编写视图是一种很繁重的任务,在django.views中存在的generic 刚好可以解决这个问题。减少工作量,主要的是List 1.首先看几个实例 #models.py class Post(models.Model): 阅读全文
posted @ 2023-01-02 19:25 《=》 阅读(29) 评论(0) 推荐(0) 编辑

2022年10月14日

摘要: $c=(array)json_decode(@$_GET['c']); //数组里面包含元素m:2023 n是array的元素个数为0 第0个元素是array if(is_array($c) && !is_numeric(@$c["m"]) && $c["m"] > 2022){ if(is_arr 阅读全文
posted @ 2022-10-14 19:03 《=》 阅读(26) 评论(0) 推荐(0) 编辑

2022年8月27日

摘要: 1. metasploit 首先启动postgresql服务 安装 apt-get install metasploit-framework serice 服务名称 start / stop msfconsole 2. 代理: 正向代理 :对客户端进行代理 结构:内部 >代理 >外网 作用:访问无法 阅读全文
posted @ 2022-08-27 16:27 《=》 阅读(24) 评论(0) 推荐(0) 编辑

2022年8月24日

摘要: 1.报错提示 Unable to establish SSL connection. 2.解决: 后缀不检查证书即可 --no-check-certificat 阅读全文
posted @ 2022-08-24 22:53 《=》 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1.一步一步来的版本 def wx(request): try: signature = request.GET.get('signature') timestamp = request.GET.get('timestamp') nonce = request.GET.get('nonce') ec 阅读全文
posted @ 2022-08-24 20:42 《=》 阅读(61) 评论(0) 推荐(0) 编辑

2022年8月20日

摘要: 1. python基础 c语言 计算机网络基础 计算机组成原理 编译原理 算法和数据结构 2. web漏洞精通 爬虫精通 ctf比赛 渗透测试成熟 3.你说培训机构的人,那他妈的也不行啊 ,牛逼的人早被安全公司拉拢了。 阅读全文
posted @ 2022-08-20 21:30 《=》 阅读(5) 评论(0) 推荐(0) 编辑

2022年8月17日

摘要: 考试内容 百分比 备注 计算机网络基础知识 5% 以《构建中小企业网络 V7.1》中的内容为主。 路由协议与以太网交换技术 35% 以《构建中小企业网络 V7.1》及《H3C 大规模网络路由技术 V2.1》、《构建 H3C 高性能园区网络 V2.1》中的内容为主。 H3C 云计算技术 20% 以《部 阅读全文
posted @ 2022-08-17 15:45 《=》 阅读(81) 评论(0) 推荐(0) 编辑

2022年8月14日

摘要: Installing: To install the Unity Hub on a Debian or Ubuntu Linux distribution, you need to add the Unity Hub Debian repository along with the public s 阅读全文
posted @ 2022-08-14 20:10 《=》 阅读(50) 评论(0) 推荐(0) 编辑
摘要: json也称为 javascript object notation 格式如下所示: >>> my_json={'name':'Python','address':{'porvince':'吉林','city':['长春','吉林']}}>>> my_json{'name': 'Python', ' 阅读全文
posted @ 2022-08-14 00:14 《=》 阅读(10) 评论(0) 推荐(0) 编辑