Can a TLS-terminating reverse proxy be transparent?
I am using an AWS application load balancer as a TLS-terminating reverse proxy in front of my HTTP services. In case of simple requests and responses the web client doesn't know that it is actually...
View ArticleAndroid: SSLHandshakeException when connecting to my https server
The https connection to my API hosted on my gandi.net https server SUDDENLY no longer works (the problem probably started on April 1st 2024). This problem only occurs when the connection is made from...
View ArticleConsuming HTTPS web services
We needed to consume MOSS out of the box web services hosted on HTTPS protocol from a Java application running on WebLogic server. Do we need to import SSL certificate of the MOSS website into WebLogic...
View ArticleHow to bypass cloudflare ddos or redirect after 5 seconds using JSOUP?
I'm trying to get anime-list in this site, https://ww1.gogoanime.iothis is the code,org.jsoup.Connection.Response usage = Jsoup.connect("https://ww1.gogoanime.io/anime-list-A") .header("accept",...
View ArticleHow to bypass SSL handshake for SSLContext?
I am modifying a test which previously used a HTTP call to an external api. There is a new endpoint which now uses HTTPS and so I am trying to modify the test to be able to work with this.The issue im...
View ArticleHow can I enable https requests in a spring boot API?
I configired my spring boot API to receive https requests through a SSL self-signed certificate. When I request via postman its works, but when our frontend application(with SSL certificate too) makes...
View ArticleIs there a way to log AWS Lambda response https handshake status?
I am serving an API using AWS Lambda with ALB in front to it.@Overridepublic APIGatewayProxyResponseEvent handleRequest(APIGatewayProxyRequestEvent input, Context context) { ... return responseEvent =...
View ArticleWhat is the role of https.Agent in Node?
In the Node https module docs,regarding https.request, an example is shown:const options = { hostname: 'encrypted.google.com', port: 443, path: '/', method: 'GET', key:...
View ArticleNetwork request failed from my mobile device
I am developing a mobile app using React Native and axios for network request.When I send Post request it says [TypeError: Network request failed]But when I send same request from Postman it works. But...
View ArticleGetting Forbidden (403) CSRF verification failed
I am using Django, DRF , docker, Nginx and AWS EC2 instance for my personal project, application is working fine when it is using HTTP , once i changed to HTTPS i am getting CSRF Verification...
View ArticleAz login urllib3 [Errno 11001] getaddrinfo failed
I am trying to log into Azure on Powershell using "az login". However, I get the following error:<urllib3.connection.HTTPSConnection object at 0x04B37760>: Failed to establish a new connection:...
View ArticleHow to perform login in mobile app using web API
My colleague and I are planning to develop a web and mobile application. The web application will be built using Django, and we'll also create an API using Django REST Framework. The mobile application...
View ArticleAdd https on sharepoint 2013 on premise [closed]
I got a problem when adding ssl to my sharepoint 2013 on premise (Windows server 2012). The website works well with http, and I followed some instructions as following:Create self-signed SSLGo to the...
View ArticleTraefik https setting with AWS acm returns 404 not found error
I'm using traefik as a Reverse Proxy for my web service in AWS EKS environment.ingressClass: enabled: true isDefaultClass: true fallbackApiVersion: v1ingressRoute: dashboard: enabled: trueproviders:...
View ArticleNodeJs Application can't establish https request using cellular network
I am working on a node application where i am establishing a https request on TWILIO api, when i use cellular network i get this errorError: connect ENETUNREACH 52.5.19.32:443 at createConnectionError...
View ArticleHow to Download All Files From a Website Folder which is not accessible?
My problem is, I can access/download the files on some website folder if I know the files' names, but I do not have the permission to access the folder directly. So the question is, how do I download...
View ArticleHTTP URL Redirect for a Proxy server
I am trying to use a HTTP redirect rules to redirect a URL to an appended version. I want to redirect from /test/go to /test/go/#/XXXXX where XXXXX is a random page name in a reverse proxy server.This...
View Article(Tauri) API request with ignoring the SSL certificate (https)
I creating a Tauri app that makes a request via https protocol to the controller with required SSL certificate.Now I can ignore the certificate, but in the future I will need to support it and be able...
View ArticlePage loaded over HTTPS but requested an insecure XMLHttpRequest endpoint
I have a page with some D3 javascript on. This page sits within a HTTPS website, but the certificate is self-signed.When I load the page, my D3 visualisations do not show, and I get the error:Mixed...
View ArticleReact native Http server
I made React Native app. I want in app to share data between the app and a laptop(laptop user just need to write localhost address in web browser) and both are connected to same wifi but i can't host a...
View Article