EvilZone

Programming and Scripting => .NET Framework => : FlzedZ September 05, 2014, 01:52:52 AM

: C# networking
: FlzedZ September 05, 2014, 01:52:52 AM
Hi! Is there any book / GOOD tutorial (that actually says why they're writing code instead of letting me copy/paste) I can use to learn C# network related things?
Of course the purpose is to write backdoors, malware, brute forcers, and so on.
Don't yell at me because C# isn't the best language to do this! I know. I'll start coding in C in a few months, but I want to this right now with C#.
: Re: C# networking
: repara December 08, 2014, 05:29:21 AM
Hows it going. I can't say any good books pop into my mind, but the .NET source reference (http://referencesource.microsoft.com/#System/net/System/Net/Sockets/Socket.cs,c84007a498b38b5f.) is where I learnt to write "fast"/"stable" managed TCP clients/servers. The comments can be educational. This is the managed wrapper for WinSock. Stay away from tcplistener/client it has a lot of magic/bloat code, make your own wrapper. Sorry I've got nothing on C# malware.