CTF(Capture The Flag,夺旗赛)包含 Web 网络攻防 、 RE 逆向工程 、 Pwn 二进制漏洞利用 、 Crypto 密码攻击 、 Mobile 移动安全 以及 Misc 安全杂项 这六个类别。 入门博客:CTF WiKi 入门书籍:从0到1:CTFer成长之路 ...
分类:
其他好文 时间:
2020-12-22 12:14:52
阅读次数:
0
在react写应用的时候,难免遇到跨组件通信的问题。现在已经有很多的解决方案。 react本身的Context Redux结合React-redux Mobx结合mobx-react React 的新的Context api本质上并不是React或者Mbox这种状态管理工具的替代品,充其量只是对Re ...
分类:
其他好文 时间:
2020-12-19 12:33:40
阅读次数:
1
from wsgiref.simple_server import make_server from webob import Response, Request, exc, dec import re, traceback, logging class Dict2Obj(object): def ...
分类:
Web程序 时间:
2020-12-18 13:11:36
阅读次数:
3
1 driver='未知司机(16.0)张三(7.0)' 2 3 #仅保留司机姓名 4 pattern=r'\(\d+.\d+\)' 5 print(re.split(pattern,driver)) #return ['未知司机', '张三', ''] 6 7 #仅保留司机趟次 8 9 patte ...
分类:
编程语言 时间:
2020-12-17 12:46:02
阅读次数:
1
1.安装 需先下载java环境 # 拉取库的配置到本地对应文件 0、wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo 1、wget https://pkg.jenkins.io/re ...
分类:
其他好文 时间:
2020-12-16 12:42:58
阅读次数:
2
最先使用是在验证用户名和密码的时候 局部钩子的使用 需要在form中使用 全局钩子的使用 这是在校验注册页面的两次密码是否一致 def clean(self): password = self.cleaned_data.get('password', '') re_password = self.c ...
分类:
其他好文 时间:
2020-12-15 12:19:08
阅读次数:
4
nginx官方文档说明:http://nginx.org/en/linux_packages.html#RHEL-CentOS 1.添加源 cd /etc/yum.repos.d/ vim nginx.repo #插入下面的内容 [nginx-stable] name=nginx stable re ...
分类:
其他好文 时间:
2020-12-14 12:51:06
阅读次数:
2
代码: 1 # -*- coding:utf-8 -*- 2 import re 3 # import Util.NEO4J.neo4j_util as Neo 4 import sys 5 import os 6 import time 7 sentence="" 8 num_zhang=[] 9 ...
分类:
编程语言 时间:
2020-12-10 11:00:26
阅读次数:
3
1.findall 2.search 3.match 同search,只是从头匹配 4.split 同str.split import re a = ' a bc ' print(a.split(' ')) print(re.split(' ', a)) import re print(re.spl ...
分类:
编程语言 时间:
2020-12-10 10:58:44
阅读次数:
4
Sent: Samstag, 8. Juli 2017 11:03 Subject: RE: have a quick discussion about why the CDS view has a bad performance displayed in ST05 or SAT but the t ...
分类:
数据库 时间:
2020-12-10 10:45:30
阅读次数:
4