栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

如何在Python中使用原始套接字?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

如何在Python中使用原始套接字?

您可以这样操作:

首先,您禁用网卡的自动校验和:

sudo ethtool -K eth1 tx off

然后从python 2发送您的躲避帧(您必须自己转换为Python 3):

#!/usr/bin/env pythonfrom socket import socket, AF_PACKET, SOCK_RAWs = socket(AF_PACKET, SOCK_RAW)s.bind(("eth1", 0))# We're putting together an ethernet frame here, # but you could have anything you want instead# Have a look at the 'struct' module for more # flexible packing/unpacking of binary data# and 'binascii' for 32 bit CRCsrc_addr = "x01x02x03x04x05x06"dst_addr = "x01x02x03x04x05x06"payload = ("["*30)+"PAYLOAD"+("]"*30)checksum = "x1ax2bx3cx4d"ethertype = "x08x01"s.send(dst_addr+src_addr+ethertype+payload+checksum)

做完了



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/669471.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号