2
votes
1answer
30 views

Is RabbitMQ Authentification secure without SSL?

We are using RabbitMQ, we'll expose the server over the internet. We'll have multiple clients from multiple computers accessing the server. Our first instinct would be to enable SSL but this seems ...
0
votes
0answers
15 views

SSL/TLS error using Cefsharp embedded in .Net Winforms app

I have a javascript application running in a Cefsharp (Chromium Embedded Framework) browser embedded in a .Net winforms app. When making an AJAX request to a node.js REST service there is an error. ...
0
votes
1answer
22 views

Login security of web application

I have a basic login (index.asp send a form to login.asp to verify the credentials) and I recently discovery that I can make POSTs (XMLHTTP with classic ASP) from another domain to my login.asp. I ...
0
votes
2answers
25 views

Which store to use when installing an x509 certificate

Ok, so my app needs to interact with a 3rd party web app that uses client certificates to authenticate the user. (I just need to open a window with a web browser control, and navigate to the site). ...
0
votes
0answers
51 views

breaking connection when calling web-service through https

I'm trying to call web service (written in java) from .NET client app. I'm calling this web-service in a loop and with every call it is returning packets of data. I monitor traffic with fiddler. When ...
0
votes
1answer
53 views

IE10 HttpContext.Current.Request.IsSecureConnection Not Working

Has anyone been experiencing issues with HttpContext.Current.Request.IsSecureConnection working correctly on IE10? For some reason this keeps returning false even when I'm on a page in SSL.
0
votes
1answer
34 views

TLS-SRP server library in .NET

I need to implement TLS-SRP in my server which is written in C#. I am looking for .NET library that already does that so I can avoid reinventing the wheel. I don't want to use unmanaged libraries ...
0
votes
0answers
26 views

TLS handshake with a smartcard fails randomly

I have a Windows Service which periodically connects to a host using the .NET Socket class. It's a standard TCP/IP Connection using the SMTP protocol. The Connection is secured with a certificate ...
0
votes
1answer
53 views

Check from code if web browser support 256bit encryption

My client wants to block users from accessing the website if their browser does not support 256bit encryption. Is it possible to check it somehow from client / server code? Website will be running on ...
1
vote
0answers
47 views

How to create certificate for SslStream.AuthenticateAsServer()?

I’m trying to write a server application that uses SSL to communicate. After accepting a connection, I believe I have to call SslStream.AuthenticateAsServer. However, this expects a certificate and I ...
0
votes
0answers
34 views

OAuth hash-based security over SSL

I’ve looked into a number of OAuth libraries, primarily .NET Framework based, including OAuth.Net. These libraries generally allow consuming clients to hash the HTTP request as it’s sent, and ...
2
votes
1answer
113 views

How do I inspect the SQL Server side SSL certificate used in SqlConnection?

I use SqlConnection class to connect to a SQL Server using a connection string with "encrypt data" set. I want to access the server side SSL certificate and find when it expires. If I used ...
4
votes
3answers
278 views

FTPS Server using .NET SslStream

I'm developing a FTP server in C#, I just finished implementing FTPS explicit mode functionality using SslStream class and everything goes almost ok. I'm having problems using fileZilla > 3.0.11 as ...
1
vote
0answers
21 views

Did .NET 4 change how the Certificate Request frame is answered in TLS

I am connecting to a web service that is hosted in Win2008 (IIS7) requiring certificate based mutual authentication. When the service is called by a client running on the .NET 2.0 runtime, the ...
-1
votes
1answer
92 views

Do I absolutely have to encrypt the PayPal data if my site uses SSL encryption at all times? [closed]

My site has an SSL certificate, and I force https: upon entry, to avoid man-in-the-middle attacks. Since everything is encrypted by this, do I still need to use additional encryption to use PayPal ...
1
vote
1answer
267 views

System.Runtime.InteropServices.COMException (0x8000500C) occuring while committing changes to DirectoryEntry in .Net

Below is a code in C# where I am trying to add SSL binding of an existing certificate to "Default Website" in IIS Server. But I keep getting System.Runtime.InteropServices.COMException ...
0
votes
1answer
95 views

How do I make my WCF service accept soap message with Content-type of “text/xml”?

How do I make a WCF service accept soap message with Content-type of "text/xml" instead of "application/soap+xml". I have to host the service on SSL. Hence I'm using wsHttpBinding with security mode ...
0
votes
3answers
335 views

Can I setup SSL on Azure for a regular Website? (Not WCF or MVC)

The question says it all: Can I setup SSL on Azure for a regular .net Website? (Not WCF or MVC)? I see lots of articles telling me to update the service configuration file etc. But I dont have those ...
-1
votes
2answers
37 views

MS Windows Service and https [closed]

I have web site that has installed SSL so it is working under HTTPS with FirstData.com Now I have to create MS Windows Service that should do the same things like website does under SSL. So my ...
0
votes
2answers
122 views

Requirehttps for DEVELOPMENT and LIVE websites

I have some ASP .NET MVC4 website which I have to put first to DEVELOPMENT place to test. And development website doesn't have SSL but the LIVE has it. Well. I have to use [Requirehttps] inside of ...
1
vote
1answer
166 views

SSL and ASP .NET MVC

I don't need to put the whole website under SSL(https://) but the Payment Controller only. Is it okay to use [RequireHttps] for that controller only or should it be applied to each controller? ...
0
votes
1answer
92 views

SslStream slow depending on wrapping of BufferedStream

I recently debugged a performance issue with how I was using SslStream. The client is C#/.NET and had the following Stream configuration Raw Socket/NetStream Wrapped by BufferedStream Wrapped by ...
2
votes
0answers
68 views

SMTP with TLS “by hand” in .NET

I want to send email through an SMTP server but don't want to use the built-in SmtpClient class because it doesn't provide much control over the email headers. I found an example of sending SMTP mail ...
0
votes
0answers
132 views

Using client certificates with HttpListener

I'm using HttpListener to implement a simple web server. I'm binding to port 44430 -- I'm not port sharing with IIS. I've configured the server certificate by using netsh: netsh http add sslcert ...
1
vote
4answers
460 views

How to get Thumbprint or Public Key of Issuer Certificate?

We have created a self signed CA certificate which we use to sign other certificates for SSL purposes. These certificates will be installed in other servers which we do not have access to and will be ...
1
vote
0answers
69 views

Certificate Pinning on .NET

I want to limit my .NET application to accept only known certificates. So how can I enforce certificate pinning on .NET? What is the best practice? Is it OK to just validate thumb print?
1
vote
1answer
66 views

Redirect to https after ensuring ssl availability

I'm using this code to redirect If Not Request.IsSecureConnection Then Dim url As String = Request.Url.ToString().Replace("http:", "https:") Response.Redirect(url) Exit Sub ...
1
vote
2answers
222 views

.net WCF GET HTTPS 400 Bad Request but woks fine with Http

I have a WCF on a windows Server 2008 R2. I have a SSL certificate. With IE, the http URL working fine (I get my data) but with Https I have a 400 Bad Request. Could you help me please? below the ...
0
votes
0answers
143 views

.NET request was aborted with HttpWebRequest

We have a .NET 3.5 based middle tier application that makes outbound HTTPS requests to another server using HTTPWebRequest. Occasionally we have request timeout and errors in our.NET trace logging: ...
1
vote
1answer
202 views

How to get and install a root CA certificate

I'm having a problem with SslStream.AuthenticateAsClient taking a "long time" (~15s). This is a known issue, and is explained in this MSDN blog post. It gives two possible solutions Summing up, ...
2
votes
1answer
80 views

How do I secure my service using SSL for Services created using Service stack?

I would like to secure my REST service implemented over the Service Stack, by means of X509 certificates? I will be hosting my service in a .NET application. I can build the service and it seems to ...
0
votes
2answers
127 views

Where can I find the “targetHost” of my X509 certificate?

While trying to set up an SslStream, the example has a call in the client: sslStream.AuthenticateAsClient(targetHost); For AuthenticateAsClient, the documentation states "The value specified for ...
3
votes
1answer
104 views

Theoretical: Implementing MSMQ using SSL to send message

I have to create a demo app (desktop application) which send messages from modules (within one application) using SSL. I thought about using MSMQ is it possible to do so? I cannot find any ...
4
votes
1answer
302 views

The request was aborted: Could not create SSL/TLS secure channel - SecurityProtocol behavior

After installing certificate into Local Computer storage of Trusted Root Certification Authorities the .NET WebRequest still throws: The request was aborted: Could not create SSL/TLS secure channel ...
-1
votes
1answer
98 views

HTTPS is not working in IIS after SSL certification [closed]

We certified last year from Verisign and that time https worked but from last two days it is coming only http. How to overcome this one ?
3
votes
1answer
346 views

Using a X509 Certificate in .Net Compact Framework for Client Authentication HTTPRequest

I'm working in Windows Mobile 6 and would like to have client authentication when talking to a Apache webserver. I have a certificate in my local certificate store and it should be rather ...
0
votes
1answer
215 views

C# SSL Implementation Issues

I'm currently trying to add SSL to a project that I'm working on so I checked MSDN for an SSL stream example server. http://msdn.microsoft.com/en-us/library/system.net.security.sslstream.aspx I've ran ...
3
votes
1answer
624 views

HttpWebRequest doesn't seem to be sending a client SSL certificate

I'm attempting to use an HttpWebRequest to query a remote server running nginx. I need to provide a client certificate to complete the connection. I'm doing the following: Dim Request As ...
2
votes
0answers
105 views

X509Chain seems to be ignoring RevocationMode and VerificationFlags

I'm having issues using a client certificate to authenticate an HttpWebRequest. (The client certificate isn't being sent). After some investigation, this seems to be because the certificate isn't ...
1
vote
0answers
37 views

Assigning client certificates to users

We are trying to authenticate users from a particular group with client certificates installed on their machines in addition to user credentials. I followed the steps in this article - ...
0
votes
2answers
932 views

SignalR - connection.hubName is undefined

I have the following SignalR hub class (only the top is shown): [HubName("DataServiceHub")] public class DataServiceHub : Hub, IDataServiceHub, IDisconnect, IConnected { . . I'm then self ...
0
votes
1answer
1k views

“Could not establish trust relationship for the SSL/TLS secure channel” with valid certificate

I have a WCF service running on an Amazon cloud server. Sometimes on some clients - which are long-running processes which poll the service every 5 minutes - the following exception occurs: ...
1
vote
0answers
120 views

Can HTTPS requests be made via proxy server?

Dim Request As HttpWebRequest = WebRequest.Create("https://www.mysite.com/mysecurepage.php") Request.Method = "POST" Request.ContentType = "application/x-www-form-urlencoded" Request.Proxy = New ...
2
votes
0answers
177 views

Failed on consuming a SSL Https 443 non IIS/.NET Webservice via a C# .NET client.

If you ever thought you can consume a webservice running on a server that only runs HTTPS using .NET...give it up: Is not possible, the proxy files created by the VS, spread all over the XML config ...
0
votes
1answer
135 views

PHP CURL and ssl authentication basic

I like to get content of file protected with authentication basic and ssl , using this code: <?php $ch=curl_init(); ...
0
votes
1answer
371 views

Access to the path --— is denied - vb.net

I have a website which usually creates and stores all the invoices on the server, but yesterday i added SSL to the website www.accessorix.com, from then when we are trying to create invoices we are ...
2
votes
1answer
372 views

X509Certificate2 ctor with cer file

I'm facing some issue with 2-way ssl configuration in .Net. Somehow, when I create X509Certificate2 object using .cer file and password in the constructor, the password is ignored (I gave wrong ...
1
vote
0answers
290 views

SOAP client “Could not create SSL/TLS secure channel”

A bit of background I am developing a webpage that connects to a web service using SOAP. I get this error when I am call a method on the web service: The request was aborted: Could not create SSL/TLS ...
0
votes
0answers
122 views

SSL client SSPI error on Windows 7

I wrote a SSL client by C#.NET 4.0 Win-Forms. I added my certificate (public key) to system root store (by .NET code or manually via Internet Explorer, both works) and it works fine on Windows XP , ...
2
votes
0answers
603 views

ServerCertificateValidationCallback Being Ignored

I have the following code, which results in a WebException and I can't figure out why for the life of me. VS2012 / .Net 4.5 RTM on Windows 8 RTM. ServicePointManager.CertificatePolicy = null; ...

1 2 3 4 5 6