Proxy HTTPS with HTTP in Node.js express
I wrote an express app as an HTTP proxy, to intercept and analyse some of the network traffic. The parts of traffic my app is interested in are all HTTP, however I still want my app to proxy HTTPS so...
View ArticleCaddy reverse proxy configuration without ACME, with strict SNI
I want to use Caddy as a reverse proxy for my system. The system contains a backend running on localhost:8080 to which all traffic is redirected. The proxy listens for HTTP traffic on :80 and for HTTPS...
View ArticleHow to use http request headers in Got?
I have a very simple goal in mind. I want to make an API request from an API known as Zomato from my node.js server application. I'm using an https request framework known as Got, which is supposed to...
View ArticleThis site can’t be reached — ERR_HTTP2_PROTOCOL_ERROR when running ASP.NET...
when I run my .net MVC project, the following error message show on the browser: "This site can’t be reached."The webpage at https://localhost:44382/weatherforecast might be temporarily down, or it may...
View ArticleAuthorization Code with PKCE flow - http redirections
I have an OKTA client configured for Web Flow Login (Single Page App, Authorization Code Flow with PKCE). My URIs for redirection uses http, not https. Now before redirection to OKTA for...
View ArticleHTTP vs HTTPS performance
Are there any major differences in performance between http and https? I seem to recall reading that HTTPS can be a fifth as fast as HTTP. Is this valid with the current generation webservers/browsers?...
View ArticleNginx error https . curl: (35) error:1408F10B:SSL...
Nginx. I cant access my NodeJs app listening in port 3000 via https. I can do through http.https://www.modelistas.tk:3000/api/status throws error. I tried with curlVerbose...
View ArticleHow to proxy an HTTPS request with encryption still in JavaScript
I have a web dashboard that needs to make requests to an edge API that has a self signed certificate. Obviously we can’t make requests directly to it because browsers today block it unless you install...
View ArticleIs it possible to extract/generate private key from captured SSL traffic?
I'm quite new so there's a deal and If anyone could help me with this i would be so grateful, 'cause I have been looking for answer since Thursday and didn't find anything : I have captured SSL traffic...
View ArticleHow to download nightly builds from a Github repository using curl?
I would like to automate the downloading of a nightly build from a git repository using the curl command.For example, in yazi I have to click on Assets->yazi-x86_64-unknown-linux-gnu.zip. However...
View ArticleHttpGet with HTTPS : SSLPeerUnverifiedException
Using HttpClient, I receive the following error when attempting to communicate over HTTPS:Exception in thread "main" javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated.Here is my code:URI...
View ArticleHTTP Error 403: Forbidden when reading HTML
I would like to read the following html"import pandas as pddaily_info=pd.read_html('https://www.investing.com/earnings-calendar/',flavor='html5lib')print(daily_info)Unfortunately this error...
View ArticleCookies stopped working over time despite literally no change to the web...
I have a Node.js/Express webapp deployed on a VPS using Dokku with two containers, one frontend, one backend. Recently got an https licence acquired for it and so I reconfigured both the frontend and...
View ArticleConfused of "https" with "http post method " in RESTful api [closed]
Https sends and retrieves data from the server in secure way(Hypertext Transfer Protocol Secure), Http(Hypertext Transfer Protocol) or Https(Hypertext Transfer Protocol Secure) with RESTful post method...
View ArticleSSLException: Unrecognized SSL message, plaintext connection? error while...
I'm trying to connect to a external https endpoint using camel https4 component through proxy.For this I setup squid proxy in linux (18.04).According to the references...
View ArticleHow to resolve SSLPeerUnverifiedException: Hostname not verified in...
My NET.MAUI Android app is throwing SSLPeerUnverifiedException: Hostname 192.168.100.2 not verified when sending POST request to a PHP script located on my desktop's IIS localhost, as shown below.await...
View ArticleSet up localhost https using mkcert [closed]
I am struggling trying to get https working on my development site having moved to a new m/c.I am running Ubuntu 24 as a virtual m/c under Windows 11 Hyper-V host.So far....Installed mkcert and ran...
View ArticleHow do I trust a self signed certificate from an electron app?
I have an electron app that syncs with a server I own at a https://XXX.XX.XX.XXX:port that has a self signed certificate. How can I trust that certificate from my electron app? Right now I get: Failed...
View ArticleLocal network HTTPS with IP address
I have a small REST server running on a local network, with a bunch of client applications connected (via IP address).I want to secure this traffic so that access tokens cannot be sniffed. According to...
View ArticleCheck whether the URL scheme is HTTP or HTTPS
I'm using the following code to add http:// to the URL.(substr(strtolower($url), 0, 7) == 'http://'?"":"http://").$urlbut how can I check whether the original URL contains https? I don't want to use an...
View Article