Securing a Socket.IO Websocket and restricting it to a domain
So I am an absolute beginner at Socket.IO, but I have a pre built application that needs to be secured in two ways: It needs to be transmitted over HTTPS and it needs to be restricted to only server...
View ArticleHow listen HTTPS and HTTP on same port depending on host with GO?
I'm writing a reverse proxy in go. I already have a basic setup working, but I want to be able to listen on a port and have it use TLS or not depending on the host. This is my current code:var...
View ArticleSecure Webscoket Connection using wss is never established
i want to build an architecture with wss, i implement my certificates and they work. But now, when i'm connect on the browser, my program create websocket and close it directly, i don't understand why,...
View ArticleWebsockets not working on WSS over https but works fine with ws over http
I am creating a function to interact with multiple projects.There are two projects in one there are applications to fill and in another project, all application response can be seen.I wanted to...
View ArticleNode.js + Express.js + Socket.io on port 443 (HTTPS TLS/SSL)
I have an app with Node.js, Express.js, and Socket.io that runs fine using ANY port except 443. The server is meant to only operate over HTTPS port 443 and likewise, the websocket should be encrypted...
View ArticleSSL certs on node.js servers running websockets secure (WSS)
So I have a bunch of express node servers that run websockets (ws) just fine and i am looking to transition into using wss (websockets secure). I've got the https server running and wss even works on...
View ArticleHow to run a websocket server on ws and wss at same time that they both...
My requirement is this that if some users connect through WS or WSS they can communicate with each other.Now if i run node server for WSS it does not run over HTTP and if run for WS then it does not...
View ArticleHTTPS Server on Android Device Using NanoHttpd
I am trying to run an HTTPS Server on an Android device using NanoHttpd (my final goal is to run WSS server on Android). I successfully ran HTTP Server and Websocket using NanoHttpd on Android. I...
View ArticleCannot create WSS connection with Chrome, other browser work
Almost for two years now Google Chrome does no longer support SSL over websocket.Now i don't know what really their problem is, other than that i heard they rewrote their WS protocols over SSL.. And...
View ArticleAndroid library for WSS (Secure Web Socket)
Im trying to connect to WSS (client+server certificate authentication + Corporate Proxy Authentication+Self Signed Certificate Chain) from Android.I tried Autobhan library, Koush AsyncIO,...
View ArticleIf I have already a HTTPS can I use wss, or I need to pay additional fee?
I'm wondering if I have to pay additional fee, if I already bought a HTTPS.
View ArticleCan't Get SSL to Work With NodeJS
I'm trying to setup a secure socket.io connection. I've setup a localhost apache server to run https on 443 but now I can't get the client-side socket.io to open a secure connection on port 9650.The...
View ArticleWSS support for C# .exe to work over https
I have .net .exe, which listens to web sockets. It works perfectly over http.When my sender shifted to WSS over https, my .exe is unable to decrypt the incoming request.My client receives byte array,...
View ArticleI have no idea how to connect server and client with https or wss
I am trying to deploy my web application and I am usingazure virtual machine for my serverazure app service for my clientThe problem is client page is given https:// but my server only support...
View ArticleHow to implement a socket client to *automatically* download and use a SSL...
I am writing my own client implementation in Java that uses SSLEngine with all its complexities to connect to a HTTPS server. So far so good, but I have to manually download the certificate and create...
View ArticleHow to determine if SocketIO is using SSL/Encryption?
PROBLEM: Before I start sending OAuth tokens back and forth, I want to test that my sockets are communicating over an encrypted SSL connection.My Setup: Since my hosting is done on Modulus, I have...
View ArticleHow do I fix SSL_verify_failed without bypass (verify=False)?
I am trying to get a cookie (and rest of the page) from a web site with cookie verification using requests library, but it fails on SSL certificate verification:HTTPSConnectionPool(host='***host***',...
View ArticleSSL Key Decryption
I am wondering if I can get the SSL Key given the following conditions:Encrypted Text is known Decrypted Text is knownAny ideas on how I can create a program that does this?
View ArticleI have received a TypeError (Uncaught TypeError: https.createServer is not a...
Im a new front end developer and I was trying to set up a new HTTPS environment. I followed the instruction from a link under https.createServer([options][, requestlistener]) section. But somehow it...
View ArticleCloudflare messing up nginx certbot SSL
Very very similar to issue here, but the solutions posted did not work for me.I am using nginx as a reverse proxy on my home network in order to host a couple of websites. I have been using Cloudflare...
View Article