Tagged Questions
6
votes
3answers
7k views
Using SSL and SslStream for peer to peer authentication?
I need to provide secure communication between various processes that are using TCP/IP sockets for communication. I want both authentication and encryption. Rather than re-invent the wheel I would ...
5
votes
1answer
105 views
What level of thread-safety can I expect from System.Net.Security.SslStream?
I have an application which uses SslStream to send and receive data with its own fixed-length framing. The stream is created by wrapping the NetworkStream returned from TcpClient.GetStream() like so:
...
3
votes
2answers
490 views
SSL certificate setup for SslStream
I have a situation where I need to generate SSL certificates for clients using SslStream as a server.
I know how to do that (makecert.exe), but I run into a problem when trying to ensure that both ...
2
votes
1answer
34 views
Sending GET Commands over SSLStream in C#?
I am writing an http automation framework and my problem is communicating with an authenticated http secured connection. After doing some research, I discovered the SslStream object in C# which made ...
2
votes
1answer
549 views
Connecting to .NET Sslstream x.509 socket with Python or Ruby or Perl
I have a weird requirement. I am trying to communicate with a server written in C#. It looks like this basically:
SslStream sslStream = new SslStream(client.GetStream(), true,
...
2
votes
2answers
804 views
Raw FTP SSL with C#
I'm trying to understand how SSL works. In my wish to make a small FTP client which supports SSL I've run into some problems:
TcpClient FtpConnection = new TcpClient(FtpServer, FtpPort);
...
1
vote
2answers
35 views
How to Create a TCP Client connection with a Client Certificate in Powershell
With Following code i can establish a SSL Connection:
$cert = dir cert:\CurrentUser\My | where {$_.Subject -like "*Alice*"}
$computerName = "google.com"
$port = "443"
$socket = ...
1
vote
0answers
190 views
SslStream - Verify Remote X509Certificate using CA Certificate File
I've generated a CA and multiple certificates (signed by CA) using OpenSSL (Although, I've generated many different ones by using CA.pl, XCA, TinyCA2 etc.) and I have a .NET/C# client and server both ...
1
vote
3answers
48 views
Transport Layer Security in the .NET framework
I've been asked a question by the boss and actually I can't find any sort of coherent / comprehensive answer out there!
So I turn to you, the wise and all-knowing collective of StackOverflow :)
The ...
1
vote
2answers
428 views
C# SSL secure sockets
I have fine, working communicator application, written in C#. Now I've got to implement secure connection to server. I tried change Socket and TcpClient objects into SslStream, but I got few errors.
...
1
vote
4answers
339 views
Connect to Server via SSL with various Cipher strengths and algorithms in C#
Searched around a bit, found different tools to check weak ciphers. How can I determine what ciphers/alogrithms the Server supports via .net/c#?
I can test sslv2, sslv3 and tls via ...
1
vote
1answer
562 views
Client/Server Authentication with SSLStream
I have a client and server application which use SSLStream to communicate over port 80. Both the client and the server are running as Windows Services.
Everything works in my test environment (my ...
1
vote
2answers
167 views
SslStream Delays after inactivity
I have written a client app to talk to a third party server app. Its comms is over a custom port with SSL usng the SslStream class.
The server allows permanent connections however I've found I have ...
1
vote
2answers
881 views
Using intermediate certificates with SslStream and X509Certificate2 in a server app
I am working on a .Net server application that uses SslStream to provide its SSL sockets. It works with some clients (such as those based on libcurl), but other clients throw errors due to the lack ...
1
vote
1answer
1k views
SslStream on TCP Server fails to validate client certificate with RemoteCertificateNotAvailable
This question is all about solving a SslPolicyError.RemoteCertificateNotAvailable error.
I have developed a TCP Server with SSLStream and a TCP Client for the other end.
I authenticate the server ...
0
votes
1answer
43 views
Why does sslStream.AuthenticateAsServer require no UAC and alternatives
While tweaking a web proxy code, I noticed that if I run the code in an app with UAC (User Access Control) I get an exception
Here is the location where the exception is thrown:
...
0
votes
0answers
62 views
.NET: Async SSL Socket
I recently ported all my NetworkStream code to async Sockets (the SocketAsyncEventArgs model). Now that's finally done, I wanted to port all the SSLStream code to async SSL Sockets, only to find out ...
0
votes
2answers
566 views
Asking SslStream to accept ONLY a certificate signed by a particular public key
I have a working implementation of this but want to make sure it is secure. The goal is to use SSLStream and only accept SSL certificates from the server that are signed by a particular RSA key.
...
0
votes
1answer
250 views
SslStream AuthenticateAsClient using PFX file
I'm trying to connect to a server using an SslStream. I've been given a PFX file from the owner of the server and I've installed it on my client but I'm not sure how to access the certificate from my ...
0
votes
2answers
298 views
C# SslStream with GZipStream
Is it possible to use GZipStream passing an SslStream in C#? i.e. can you do
GZipStream stream = new GZipStream(sslStream, CompressionMode.Compress);
stream.Write(...);
...
GZipStream stream = new ...
0
votes
1answer
381 views
Does SslStream use LocalCertificateSelectionCallback when acting as a server?
If I create a SslStream instance like this:
secureStream = new SslStream(stream, true, tlsRemoteCallback, tlsLocalCallback);
And then I use one of the AuthenticateAsServer or ...