上一页 1 ··· 138 139 140 141 142 143 144 145 146 ··· 273 下一页
摘要: # -*- coding: utf-8 -*- import networkx as nx import matplotlib.pyplot as plt iplist={} goodiplist={} #相似度 N=0.5 #黑客团伙IP最少个数 M=3 #黑客IP攻击目标最小个数 R=2 #jarccard系数 def get_len(d1,d2): ds1=set() ... 阅读全文
posted @ 2018-07-28 18:06 bonelee 阅读(769) 评论(0) 推荐(0)
摘要: Isolation Forest(以下简称iForest)算法是由南京大学的周志华和澳大利亚莫纳什大学的Fei Tony Liu, Kai Ming Ting等人共同提出,用于挖掘异常数据【Isolation Forest,Isolation-based Anomaly Detection】。该算法 阅读全文
posted @ 2018-07-25 20:01 bonelee 阅读(6614) 评论(1) 推荐(0)
摘要: https://legacy.gitbook.com/book/germey/net-security/details 网络安全 介绍 构建一个端口扫描器 利用Pexpect模拟SSH连接 利用Pxssh暴力破解SSH密码 构建SSH的僵尸网络 扫描并暴力破解FTP服务器 阅读全文
posted @ 2018-07-25 15:34 bonelee 阅读(773) 评论(0) 推荐(0)
摘要: 下面的内容说的不完全正确(尤其是DNS解析器,是用户可以设置的,例如为8.8.8.8,此时就不会走本地dns服务器,而直接到8.8.8.8)。不过因为比较直白,所以先看: DNS 查询以各种不同的方式进行解析。客户机有时也可通过使用从以前查询获得的缓存信息就地应答查询。DNS 服务器可使用其自身的资 阅读全文
posted @ 2018-07-25 11:51 bonelee 阅读(1106) 评论(0) 推荐(0)
摘要: 看下dns污染: 有没有发现每次返回的ip都是比较随机的。就算你指定dns服务器也会出现这个问题: DNS污染事件跟踪:为什么.cn和.org域名逃过一劫 2014年 关于中国境内用户访问.com 和.net 域名被解析到65.49.2.178 一事我又有新发现,我发现了为什么.cn 和.org 的 阅读全文
posted @ 2018-07-24 14:33 bonelee 阅读(2979) 评论(2) 推荐(0)
摘要: We want to use quad trees to store an N x N boolean grid. Each cell in the grid can only be true or false. The root node represents the whole grid. Fo 阅读全文
posted @ 2018-07-23 22:57 bonelee 阅读(1225) 评论(0) 推荐(0)
摘要: 6cw66eqf42i6mqbotomsi-.com []b6z8y0nh000ja.com []z308r66nlf9-.com []lc36ctvjbufpmnz30ktxm-2.com []dl-ykogu59hudr69omp.com []w9f4yhvray9y9eoj.com []jk6 阅读全文
posted @ 2018-07-23 19:43 bonelee 阅读(331) 评论(0) 推荐(0)
摘要: Given an integer n, return the number of trailing zeroes in n!. Example 1: Example 2: 思考这类问题还是要从上而下思考,先用递归思路去解,最后修改循环或者dp。 另外的解法: Example Three By giv 阅读全文
posted @ 2018-07-22 13:01 bonelee 阅读(268) 评论(0) 推荐(0)
摘要: Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length. Do not allocate extra spa 阅读全文
posted @ 2018-07-21 23:23 bonelee 阅读(323) 评论(0) 推荐(0)
摘要: Given a n-ary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest le 阅读全文
posted @ 2018-07-21 23:05 bonelee 阅读(819) 评论(0) 推荐(0)
上一页 1 ··· 138 139 140 141 142 143 144 145 146 ··· 273 下一页