python:使用OSX的原始套接字

时间:2015-10-31 02:24:50

标签: python macos sockets

我在网上找到了这个代码,发现它在OSX上没有用。没有使用第三方库,有没有人知道正确的方法?

class CahngeColumnInTablename < ActiveRecord::Migration
  def change
    change_column :tablename, :field, :string , default: <default_value>
  end
end

显然OSX没有AF_PACKET或PF_PACKET,AF_INET的水平太高了,我认为或者至少需要更多的重新编码而不是更换。

由于

1 个答案:

答案 0 :(得分:3)

好吧我想出了这个,在Mac上我必须使用pcap库。这是我提出的代码。

#!/usr/bin/env python2.7

import sys, binascii, subprocess
import dpkt, pcap, socket

cottonelle = 'f0272d8b52c0'

def main():
    name = pcap.lookupdev()
    try:
        pc = pcap.pcap(name)
    except:
        print pc.geterr()

    try:
        print 'listening on %s' % (pc.name)
        for ts, pkt in pc:
            eth = dpkt.ethernet.Ethernet(pkt)
            ip_hdr = eth.data
            if eth.type != dpkt.ethernet.ETH_TYPE_ARP:
                continue
            if binascii.hexlify(eth.src) == cottonelle:
                subprocess.call("/usr/local/bin/stopsim", shell=True)
    except Exception as e:
        print e, pc.geterr()

if __name__ == '__main__':
    main()