摘要: ###0x01 简陋代码是,获取(.*?)的字符串 #coding:utf-8 from requests import * import re headers = { "accept":"text/html,application/xhtml+xml,application/xml;", "acc 阅读全文
posted @ 2020-06-27 11:39 VoltCary 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 一、re.match(),从字符串的起始位置开始匹配,比如hello,匹配模式第一个字符必须为 h 1、re.match(),模式'^hello.*Demo$',匹配字符串符合正则的所有内容 import re content= "hello 123 4567 World_This is a reg 阅读全文
posted @ 2020-06-26 22:13 VoltCary 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 1、基本语法 update test.test_table set username='admin123',password=000 where id=1; update test.test_table set username='admin000''aaaaa,password=000 where 阅读全文
posted @ 2020-06-26 20:30 VoltCary 阅读(266) 评论(0) 推荐(0) 编辑