巡风源码阅读与分析---nascan.py - Zhengjim zhengjim 7 years 1 month ago Nascan是巡风主要是做目标的资产识别(信息收集)。 nascan.py 文件位于 nascan/nascan.py # coding:utf-8 # author:wolf@YSRC import thread from lib.common import * from lib.start im Zhengjim
Datacenter Traces The Akamai Blog 7 years 1 month ago In our research we use actual traces, collected from different production datacenters. Akamai
Apps Are Like Onions; They Have Layers F5 Labs 7 years 1 month ago It’s critical for security professionals to understand all the components of modern web apps so they can be prepared to fend off attacks at multiple tiers.
巡风源码阅读与分析--querylogic函数 - Zhengjim zhengjim 7 years 1 month ago 文件位置:views/lib/QueryLogic.py Querylogic() # 搜索逻辑 def querylogic(list): query = {} if len(list) > 1 or len(list[0].split(':')) > 1: for _ in list: if _ Zhengjim
巡风源码阅读与分析---AddPlugin()方法 - Zhengjim zhengjim 7 years 1 month ago 文件位置:view/view.py AddPlugin() # 新增插件异步 @app.route('/addplugin', methods=['get', 'post']) @logincheck @anticsrf def AddPlugin(): result = 'fail' f = re Zhengjim