09 2023 档案

摘要:基础小知识 hex(m)[2:] #m为十进制,hex(m)将十进制转成十六进制,用[2:]截去0x bytes.fromhex(m) #m为十六进制,十六进制转字符串 t=open("data.txt","r").readlines() result=[] for i in t: i=i.stri 阅读全文
posted @ 2023-09-30 21:18 willingyut 阅读(31) 评论(0) 推荐(0) 编辑
摘要:\s* 匹配零个或多个空白字符。\d*匹配并捕获零个或多个数字(\d 表示数字)。\d+匹配一个或多个数字 阅读全文
posted @ 2023-09-21 16:30 willingyut 阅读(6) 评论(0) 推荐(0) 编辑
摘要:1.字符串拼接绕过【PHP>=7】 适合绕过具体关键字 payload: (sy.(st).em)(who.ami); 2.字符串转义绕过【PHP>=7】 字符串转十六进制、八进制、unicode脚本 # -*- coding:utf-8 -*- def hex_payload(payload): 阅读全文
posted @ 2023-09-08 21:14 willingyut 阅读(505) 评论(0) 推荐(0) 编辑
摘要:将abc写入xxx.txt nmap "abc" -oG xxx.txt 阅读全文
posted @ 2023-09-04 18:35 willingyut 阅读(5) 评论(0) 推荐(0) 编辑
摘要:` ~ ! @ # $ % ^ & * ( ) - _ = + [ ] { } | \ ; : ' " , . < > / ? -- --+ /**/ && || <> !(<>) and or xor if not select sleep union from where order by co 阅读全文
posted @ 2023-09-03 22:48 willingyut 阅读(105) 评论(0) 推荐(0) 编辑