C# - a userland TCP stack in Windows XP SP III - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T22:25:48Z http://stackoverflow.com/feeds/question/725536 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/725536/c-a-userland-tcp-stack-in-windows-xp-sp-iii 0 C# - a userland TCP stack in Windows XP SP III cl102 2009-04-07T12:48:57Z 2009-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#725553 0 Answer by Yossarian for C# - a userland TCP stack in Windows XP SP III Yossarian 2009-04-07T12:53:17Z 2009-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#725587 1 Answer by sipwiz for C# - a userland TCP stack in Windows XP SP III sipwiz 2009-04-07T13:02:57Z 2009-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>