摘要: git clone https://github.com/iagox86/nbtool make 然后就可以按照下面的官方说明进行操作了。 我的感受:整体感觉这个工具不完善,失败率很高,传文件时候没有完整性校验,我自己测试时通过域名转发失败,可能是其特征过于明显导致(子域名里有dnscat关键字)。 阅读全文
posted @ 2017-12-14 17:58 bonelee 阅读(635) 评论(0) 推荐(0)
摘要: git clone https://github.com/cr0hn/dnscapy.git easy_install Scapy 服务端: python dnscapy_server.py a.friendsxxx.com 45.77.39.xxx 客户端: ssh -o ProxyCommand 阅读全文
posted @ 2017-12-14 14:57 bonelee 阅读(1141) 评论(0) 推荐(0)
摘要: sklearn的train_test_split train_test_split函数用于将矩阵随机划分为训练子集和测试子集,并返回划分好的训练集测试集样本和训练集测试集标签。 格式: X_train,X_test, y_train, y_test =cross_validation.train_t 阅读全文
posted @ 2017-12-14 09:14 bonelee 阅读(170552) 评论(3) 推荐(10)