System.Net.WebException in simple HTTPS Request
I have got a problem with C# and a simple HTTPS-Request...I want to request this URL: https://api.sipgate.com/v1/ In a webbrowser it works fine, but my C#-Code doesn't work :( Has anybody an idea what...
View ArticleApache shows default page instead of https when using http
I'm trying to redirect all my foo.mydomain.com requests to https://foo.mydomain.com.My VirtualHost contains this:<VirtualHost *:443> ServerName foo.mydomain.com # Indexes + root dir...
View ArticleHow to find if a web site uses HSTS
I'm totally new to curl and am trying to ascertain if websites use Strict-Transport-Security.I'm running off advice. I've been told to check against Chrome's preloaded list and to run curl -D -...
View ArticleEnable HTTPS in Spring Boot and make use of the WINDOWS-ROOT trust store type
I am trying to enable HTTPS in my Spring Boot application and make use of the WINDOWS-ROOT trust store type.I need this so that my Spring Boot application will act as a client and call another...
View ArticleHow do I pass the client certificate with HTTP client?
I want to use mutual SSL authentication between service A and B. I'm currently implementing passing the client certificate from service A in Java. I'm using Apache DefaultHttpClient to execute my...
View ArticleJava HTTPS Proxy and Connect
My HTTPS Proxy should work like this:it should establish a Connection with Connectit should pass the traffic but should not be able to modify it. So it should not be able to read it. I have read now...
View ArticleHttp CONNECT request return empty respone
I want to read Https page using TcpClient. I use below code var client = new TcpClient(url, 443);//"127.0.0.1", 8888);// Fiddler portclient.SendTimeout = 30000;Stream responseStream =...
View ArticleHow to request OAuth2 token to kong plugin
i am following this tutorial https://medium.com/@far3ns/kong-oauth-2-0-plugin-38faf938a468 and when i request the tokens withHeaders: Content-Type:application/jsonHost:api.ct.idBody:{“client_id”:...
View ArticleUnable to host the application
I recently updated my ASP.NET web API from targeting .NET Framework 4.5.2 to 4.7. The application runs perfectly fine locally, but I'm facing issues when deploying it to a Windows Server 2022 VM.Here's...
View ArticleDoes libcpr CPP library support SOAP services
I a working on soap services (uses WSDL files), and i want to pass the SOAP services in the payload of HTTPs.so does libcpr CPP library support SOAP services and is it feasible to use?is this libcpr...
View ArticleWhat's the most appropriate HTTP status code for an "item not found" error page
I'm curious what's the most appropriate HTTP status code for an "item does not exist" page.If the page itself doesn't exist, I'll obviously use 404. However, one of my pages has a userid argument (it's...
View ArticleNavigating http/s links without full path/dir
This might be a stupid question but how do you go back to the previous directory with https links?For instance, I am athttps://example.com/dir1/dir2/dir3But I want to go back to dir1 and into a...
View ArticleHow can I parse the TLS handshake in NodeJS?
I want to know how to parse the TLS handshake data in NodeJs. I've been trying to calculate Ja3, Ja4 fingerprints from scratch by capturing the TLS client hello packet. But I don't know how to parse...
View ArticleProblem connecting to the server on node js + Nginx + SSL Cloudflare
I have the following problem.When I try to make a request from web flutter to a node js server I get the following error.(https://i.sstatic.net/YVudEBx7.png)When I go to https://techproguide.store I...
View ArticleCertificate error running a dockerized ASP.NET 5 Web app through https in...
I have an existing ASP.NET 5 application. I can start it normally in Visual Studio 2019 with F5. The app has https enabled.I add docker support to the app, using the Visual Studio tooling "Add Docker...
View ArticleCould not convert symbol to string error after adding https certificate
I am trying to fetch data from asp.net core api to svelte page. I got a self signed certificate error:TypeError: fetch failed at node:internal/deps/undici/undici:12500:13 at...
View ArticleHTTPS Post Request with ESP8266
I'm trying to send an HTTPS POST request with a ESP8266. I can make the request just fine with python and cURL just when I try it with the ESP it doesn't work. A segment of my code is belowconst char...
View ArticleConfigure HTTPS and Basic Auth for Alertmanager
I would like to secure my Alertmanager with tls and authentication, so that in my network, not everyone is able to access the public facing end point. I don't want to use nginx server for proxy.This...
View ArticleRequired to download all files and subfolders from a web directory which is...
I need to download all folder, sub-folders, files as per directory as it is for one of my project purpose. the directory domain is like https://subDom.mainDom.com:4434/subFolder/ and their are many...
View ArticleFlutter (dart) and Stripe. Is it safe to run https from device to get intent?
A simple question. I am adding Stripe to my flutter app. It is working for both Android and iPhone, but I was wondering, is it safe sending sending request with Id and amount as header to Stripe with...
View Article