<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Send hand-crafted Ethernet Frames in Python (ARP for example)</title>
	<atom:link href="http://www.larsen-b.com/Article/206.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.larsen-b.com/Article/206.html</link>
	<description>Titanium Exposé</description>
	<lastBuildDate>Mon, 23 Jan 2012 10:13:29 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Paul Hoffman</title>
		<link>http://www.larsen-b.com/Article/206.html/comment-page-1#comment-8012</link>
		<dc:creator>Paul Hoffman</dc:creator>
		<pubDate>Mon, 23 May 2011 21:34:55 +0000</pubDate>
		<guid isPermaLink="false">#comment-8012</guid>
		<description>For those tripping into this topic late, the web site for Scapy is now http://www.secdev.org/projects/scapy/</description>
		<content:encoded><![CDATA[<p>For those tripping into this topic late, the web site for Scapy is now <a href="http://www.secdev.org/projects/scapy/" rel="nofollow">http://www.secdev.org/projects/scapy/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: khazaie01</title>
		<link>http://www.larsen-b.com/Article/206.html/comment-page-1#comment-7778</link>
		<dc:creator>khazaie01</dc:creator>
		<pubDate>Thu, 15 Apr 2010 12:20:03 +0000</pubDate>
		<guid isPermaLink="false">#comment-7778</guid>
		<description>Is this code on Windows will work?</description>
		<content:encoded><![CDATA[<p>Is this code on Windows will work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bsdpunk</title>
		<link>http://www.larsen-b.com/Article/206.html/comment-page-1#comment-7723</link>
		<dc:creator>bsdpunk</dc:creator>
		<pubDate>Sat, 19 Dec 2009 18:32:09 +0000</pubDate>
		<guid isPermaLink="false">#comment-7723</guid>
		<description>Err BPF not BSD....I feel retarded for leaving so many comments, but I don&#039;t know how to merge them.</description>
		<content:encoded><![CDATA[<p>Err BPF not BSD&#8230;.I feel retarded for leaving so many comments, but I don&#8217;t know how to merge them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bsdpunk</title>
		<link>http://www.larsen-b.com/Article/206.html/comment-page-1#comment-7722</link>
		<dc:creator>bsdpunk</dc:creator>
		<pubDate>Sat, 19 Dec 2009 18:29:54 +0000</pubDate>
		<guid isPermaLink="false">#comment-7722</guid>
		<description>It appears that BSD(and OSX, since it is built with the same networking stack) can not be used with PF_PACKET it has to use BSD


http://lists.apple.com/archives/darwin-development/2003/Jun/msg00235.html
http://en.wikipedia.org/wiki/Berkeley_Packet_Filter


Anyone has any solutions for this please let me know

Bsdpunk at gmail dot com</description>
		<content:encoded><![CDATA[<p>It appears that BSD(and OSX, since it is built with the same networking stack) can not be used with PF_PACKET it has to use BSD</p>
<p><a href="http://lists.apple.com/archives/darwin-development/2003/Jun/msg00235.html" rel="nofollow">http://lists.apple.com/archives/darwin-development/2003/Jun/msg00235.html</a><br />
<a href="http://en.wikipedia.org/wiki/Berkeley_Packet_Filter" rel="nofollow">http://en.wikipedia.org/wiki/Berkeley_Packet_Filter</a></p>
<p>Anyone has any solutions for this please let me know</p>
<p>Bsdpunk at gmail dot com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bsdpunk</title>
		<link>http://www.larsen-b.com/Article/206.html/comment-page-1#comment-7721</link>
		<dc:creator>bsdpunk</dc:creator>
		<pubDate>Sat, 19 Dec 2009 18:03:23 +0000</pubDate>
		<guid isPermaLink="false">#comment-7721</guid>
		<description>On my centos server, everything works perfectly, however on my mac I get this error, similar to the BSD and Windows error others have been reporting:

Traceback (most recent call last):
  File &quot;arp-flood.py&quot;, line 74, in 
    s = socket.socket(socket.PF_PACKET, socket.SOCK_RAW)
AttributeError: &#039;module&#039; object has no attribute &#039;PF_PACKET&#039;


Is this because in Mac OS X, raw sockets are not allowed like in windows, or is it something else? Does anyone know a work around?</description>
		<content:encoded><![CDATA[<p>On my centos server, everything works perfectly, however on my mac I get this error, similar to the BSD and Windows error others have been reporting:</p>
<p>Traceback (most recent call last):<br />
  File &#8220;arp-flood.py&#8221;, line 74, in<br />
    s = socket.socket(socket.PF_PACKET, socket.SOCK_RAW)<br />
AttributeError: &#8216;module&#8217; object has no attribute &#8216;PF_PACKET&#8217;</p>
<p>Is this because in Mac OS X, raw sockets are not allowed like in windows, or is it something else? Does anyone know a work around?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: boat</title>
		<link>http://www.larsen-b.com/Article/206.html/comment-page-1#comment-7682</link>
		<dc:creator>boat</dc:creator>
		<pubDate>Mon, 21 Sep 2009 14:23:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-7682</guid>
		<description>hello 
I have project send/recive ARP with python on linux(fedora10).
I can&#039;t use Ex. code. 
If you help me or teach me , Thanks

nattapong__@hotmail.com</description>
		<content:encoded><![CDATA[<p>hello<br />
I have project send/recive ARP with python on linux(fedora10).<br />
I can&#8217;t use Ex. code.<br />
If you help me or teach me , Thanks</p>
<p><a href="mailto:nattapong__@hotmail.com">nattapong__@hotmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tero</title>
		<link>http://www.larsen-b.com/Article/206.html/comment-page-1#comment-605</link>
		<dc:creator>Tero</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-605</guid>
		<description>&lt;p&gt;Did you look at &lt;a class=&quot;reference&quot; href=&quot;http://www.cartel-securite.fr/pbiondi/projects/scapy/&quot;&gt;scapy&lt;/a&gt;?  It got some nice shortcuts like &lt;tt class=&quot;docutils literal&quot;&gt;&lt;span class=&quot;pre&quot;&gt;sendp()&lt;/span&gt;&lt;/tt&gt; for sending ethernet frames.  Very nice tool!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Did you look at <a class="reference" href="http://www.cartel-securite.fr/pbiondi/projects/scapy/">scapy</a>?  It got some nice shortcuts like <tt class="docutils literal"><span class="pre">sendp()</span></tt> for sending ethernet frames.  Very nice tool!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jkx</title>
		<link>http://www.larsen-b.com/Article/206.html/comment-page-1#comment-606</link>
		<dc:creator>Jkx</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-606</guid>
		<description>&lt;p&gt;Yes, i know scapy but it&#039;s a interactive tool, and i need something that be cron-ed. And second thing, I want to learn how to do that too:)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Yes, i know scapy but it&#8217;s a interactive tool, and i need something that be cron-ed. And second thing, I want to learn how to do that too:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tero</title>
		<link>http://www.larsen-b.com/Article/206.html/comment-page-1#comment-607</link>
		<dc:creator>Tero</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-607</guid>
		<description>&lt;p&gt;For some reason the page shows only interactive sessions but it can be scripted too.  I&#039;ve used scapy to automate testing of an IP host for an embedded target, the suite being run under the control of unittest.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>For some reason the page shows only interactive sessions but it can be scripted too.  I&#8217;ve used scapy to automate testing of an IP host for an embedded target, the suite being run under the control of unittest.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dgram</title>
		<link>http://www.larsen-b.com/Article/206.html/comment-page-1#comment-608</link>
		<dc:creator>dgram</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-608</guid>
		<description>&lt;p&gt;ive been trying to figure out how to send ethernet frames in python for a couple of days now, thanks&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>ive been trying to figure out how to send ethernet frames in python for a couple of days now, thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
