C# - a userland TCP stack in Windows XP SP III - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T22:25:48Zhttp://stackoverflow.com/feeds/question/725536http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/725536/c-a-userland-tcp-stack-in-windows-xp-sp-iii0C# - a userland TCP stack in Windows XP SP IIIcl1022009-04-07T12:48:57Z2009-04-07T13:02:57Z
<p>Hi!</p>
<p>I'm trying to create an application to craft packets to be able to debug some gateways here, and to experiment with TCP DoS situations.
Nevertheless this should be very easy, I didn't find a way to implement this for a Windows application.</p>
<p>I started using <a href="http://oss.coresecurity.com/projects/impacket.html" rel="nofollow">Impacket</a> from Core Security in Python on a Unix box, but I want to avoid this for now. First of all Impacket doesn't work for Windows, and it doesn't seem to do exactly what I want.</p>
<p>Does anyone know how to get a simple raw-socket like behavior in Windows? I know that there're no Raw sockets any more. But is there something similar? Any C# library I can use... I didn't find anything jet. </p>
<p>Thanks ;)</p>
http://stackoverflow.com/questions/725536/c-a-userland-tcp-stack-in-windows-xp-sp-iii/725553#7255530Answer by Yossarian for C# - a userland TCP stack in Windows XP SP IIIYossarian2009-04-07T12:53:17Z2009-04-07T12:53:17Z<p>Try to use libpcap (winpcap), it can work under the tcp/ip stack, just on raw packet level.</p>
http://stackoverflow.com/questions/725536/c-a-userland-tcp-stack-in-windows-xp-sp-iii/725587#7255871Answer by sipwiz for C# - a userland TCP stack in Windows XP SP IIIsipwiz2009-04-07T13:02:57Z2009-04-07T13:02:57Z<p>There's not a lot to creating the socket.</p>
<pre><code>using System.Net.Sockets;
Socket rawSocket = new Socket(AddressFamily.InterNetwork, SocketType.Raw, ProtocolType.Raw);
</code></pre>
<p>or if it's custom TCP packets you're after:</p>
<pre><code>Socket rawSocket = new Socket(AddressFamily.InterNetwork, SocketType.Raw, ProtocolType.IP);
</code></pre>
<p>If you're planning on sending IP or higher layer packets that's not exposed by the .Net framework. However IP and TCP packets are pretty simple to put together and if you're testing malformed packets you'll most likely need to customise the packets anyway.</p>