AWS ELB -> Backend Server over HTTPS with Self-Signed Certificate
I already have HTTPS in place to terminate external HTTPS connections at my AWS ELB. I'm now attempting to secure my connections between my ELB and my backend NGINX servers on EC2 using HTTPS with a...
View ArticleHow do I validate localhost certificate to run ASP.NET Web App in my browser?
ASP.NET Web API in VS is unable to run in my browser due to NET::ERR_CERT_INVALID error (Your connection isn't private)Before I ran my application, VS promted me to download the localhost certificate....
View Articlehttps problem with Android application local testing
I'm trying to test my android app locally.The app has to fetch data from 192.168.1.16.The local server certificate is a self signed certificate, so I did what I found here and there on stackoverflow...
View ArticleUnable to setup HTTPS using Nginx, Certbot and Docker
I am currently working to setup Docker in order to deploy the website I created. However, I'm stuck at the level of configuring https with Nginx and Certbot.Here is everything I did :Bought a domain...
View ArticleTrouble to setup tls with kubernetes: "ERR_SSL_PROTOCOL_ERROR"
I'm trying to setup tls/https for my kubernetes-pod. I configured an ingress rule and I've a got service as loadbalancer. I obtained my certificate from my provider. Not sure, how important that is:...
View ArticleCan I use CSP to limit requests to both https: AND 'self'?
I originally had this in my CSP header: default-src 'self';, which limits sources to only my domain, but it says nothing about the scheme/protocol. From what I can gather, this will allow sources to be...
View ArticleHTTPS request using AT commands on SIM900 fails with 601
I have an Arduino UNO setup with a SIM900 Shield. I want to make http/s requests using AT commands. I can already perform GET requests via http. But i can't get them to work with https. Please help me...
View ArticleUnable to connect to web server 'https' in Visual Studio 2022
I have two projects for the API and UI side of my project.On the UI side, I want to see the change I made with "ctrl + shift + w" on index.cshtml, but I get the error in the screenshot below.There are...
View ArticleNode.js mTLS authentication using Windows Certificate Store
Normally for mTLS HTTP requests in Node.js, you do the following:const fs = require('fs');const https = require('https');const req = https.request( { hostname: 'server.com', port: 443, path: '/',...
View ArticleSSH and HTTPS Keys don't work for my Eclipse when trying to connect to GitHub
I'm trying to connect my Eclipse with GitHub by SSH.In Eclipse, I've generated an RSA key, saved it, and apply.I also added the SSH to my Github account.But I still got the following:Nor would HTTPS...
View ArticleGoogle Cloud CDN json resource ETag missing from response headers
The ETags are missing from the response headers. Currently, I am using Google Cloud CDN to deliver the resources from Google Cloud Storage (bucket). When the resource is read directly from the bucket,...
View ArticleOnline proxy site like Croxyproxy but on python [closed]
I need something like a croxyproxy but in python! I tried the code from AI, but it didn’t work correctly, I also tried to write it myself! The code from AI and my could not load videos from YouTube and...
View ArticleFailed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request - OAuth...
I am working with YouTube APIs for my college project, and I keep getting an error. Here I send them to the authorisation page to log in, when they allow access it sends the $_GET['code'] string back....
View ArticleHow do I deal with certificates using cURL while trying to access an HTTPS url?
I am getting the following error using curl:curl: (77) error setting certificate verify locations: CAfile: /etc/ssl/certs/ca-certificates.crt CApath: noneHow do I set this certificate verify locations?
View ArticleNode.js/Express Error: connect ECONNREFUSED 127.0.0.1:5000
OS - Windows 10 ProNode.js - ver 5.9.1 Hi,So I'm getting the above mentioned error message when running my app under nodeJS/Express.My server/app.js file is as follows:'use strict';// Set default node...
View ArticleIntercept outgoing NodeJS https request calls in a application and fetch the...
My application uses NodeJS https request (https://nodejs.org/api/https.html) to make outgoing calls.I need to intercept it and first fetch the request body. Once the request is fetched, I'm preparing a...
View ArticleFacebook Debugger Not Scraping Page With SSL Certificate
I recently installed a SSL certificate on my domain and now Facebook is unable to scrape my webpages for open graph content. When I go to https://developers.facebook.com/tools/debug/og/object/ and...
View ArticleHow to reconfigure Kestrel after start application
I have method for Kestrel configuration before starting asp.net core minimal API like this:var clientCertificateThumbprint = "XYZ";var clientCertificateMode =...
View ArticleDetect HTTP or HTTPS then force HTTPS in JavaScript
Is there any way to detect HTTP or HTTPS and then force usage of HTTPS with JavaScript?I have some codes for detecting the HTTP or HTTPS but I can't force it to use https: .I'm using the...
View ArticleTomcat HTTPS Redirect when IIS also Running
I have 2 apache tomcat applications that I want to redirect to HTTPS, but I also have an IIS application running on the same server which I do not want to redirect. If I place a security constraint...
View Article