Skip to content

Instantly share code, notes, and snippets.

@joshgachnang
Forked from alex/gist:367e23d220d68266881d
Created August 14, 2014 20:19
Show Gist options
  • Save joshgachnang/c9819baa055e1dce974a to your computer and use it in GitHub Desktop.
Save joshgachnang/c9819baa055e1dce974a to your computer and use it in GitHub Desktop.
import socket
s = socket.socket(socket.AF_PACKET, socket.SOCK_RAW)
s.bind(("eth0", 0x88CC))
while True:
print repr(s.recv(8192))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment