摘要: 1 慢慢从黑盒测试转白盒审计了,尽量多产出一些cve编号和cnvd证书。 2 bug bounty国外超过一万刀 3 挖一个一万刀的漏洞 4 其他的待续 阅读全文
posted @ 2022-07-08 20:04 si1encely 阅读(56) 评论(0) 推荐(0)
摘要: 1 java基础 韩顺平老师 https://www.bilibili.com/video/BV1fh411y7R8?spm_id_from=333.337.search-card.all.click 2 框架 动力节点 王鹤老师 mybatis+spring+spring mvc springbo 阅读全文
posted @ 2022-07-08 20:00 si1encely 阅读(111) 评论(0) 推荐(0)
摘要: f = open("foo.txt") # 返回一个文件对象 line = f.readline() # 调用文件的 readline()方法 while line: a='http://'+line print(a, end = '') line = f.readline() with open( 阅读全文
posted @ 2020-11-21 14:30 si1encely 阅读(345) 评论(0) 推荐(0)
摘要: #coding=utf-8 class Triangle: def __init__(self,x,y,z): self.a=x self.b=y self.c=z def area(self): s=(self.a+self.b+self.c)/2 return(s*(s-self.a)*(s-s 阅读全文
posted @ 2020-11-05 23:21 si1encely 阅读(79) 评论(0) 推荐(0)
摘要: import requests url='http://www.baidu.com' res=requests.get(url) print(res.cookies) 阅读全文
posted @ 2020-10-16 22:28 si1encely 阅读(50) 评论(0) 推荐(0)
摘要: import urllib.request import urllib.parse # url='http://www.baidu.com/' # r=urllib.request.urlopen(url) # print(r.geturl()) # url='http://tieba.baidu. 阅读全文
posted @ 2020-10-16 21:56 si1encely 阅读(89) 评论(0) 推荐(0)
摘要: import urllib.request import re url='https://www.huya.com/' r=urllib.request.urlopen(url) a=re.findall(r'target="_blank">(\w*?)</a>',r.read().decode(' 阅读全文
posted @ 2020-10-14 21:05 si1encely 阅读(61) 评论(0) 推荐(0)
摘要: import re a=re.compile('asd') # b=a.search('ASDASDasd') # b=a.match('ASDASDasd') # b=a.findall('ASDASDasd') # a=re.findall('asd','ASasdDASDasd') # a=r 阅读全文
posted @ 2020-10-14 20:48 si1encely 阅读(64) 评论(0) 推荐(0)
摘要: # coding:UTF-8 import requests import time def get_exchange(): list = [] for i in range(1,3): Bi_API = "https://dncapi.bqrank.net/api/v2/exchange/web- 阅读全文
posted @ 2020-10-14 13:22 si1encely 阅读(483) 评论(0) 推荐(0)
摘要: # coding:UTF-8import requestsimport timeBi_API="https://api.bilibili.com/x/relation/stat?vmid=99999"def get_fans(): http_data=requests.get(url=Bi_API) 阅读全文
posted @ 2020-10-13 22:35 si1encely 阅读(295) 评论(0) 推荐(0)