1. 首页
  2. 数据库
  3. 其它
  4. python构造icmp echo请求和实现网络探测器功能代码分享

python构造icmp echo请求和实现网络探测器功能代码分享

上传者: 2021-01-22 10:06:19上传 PDF文件 51.1KB 热度 7次
python发送icmp echo requesy请求复制代码 代码如下:import socketimport struct def checksum(source_string): sum = 0 countTo = (len(source_string)/2)*2 count = 0 while count<countTo: thisVal = ord(source_string[count + 1])*256 + ord(source_string[count]) sum = sum + thisVal sum =
用户评论