F5F Stay Refreshed Power Users Networks Convert HTTPS traffic to HTTP securely.

Convert HTTPS traffic to HTTP securely.

Convert HTTPS traffic to HTTP securely.

Pages (3): Previous 1 2 3 Next
C
craftingsami
Member
98
08-08-2023, 11:01 PM
#11
Exactly that but without any encryption between Nginx and the web browser.
C
craftingsami
08-08-2023, 11:01 PM #11

Exactly that but without any encryption between Nginx and the web browser.

M
Mochi_Crunch
Junior Member
23
08-15-2023, 01:49 AM
#12
The setup involves a browser connecting to a web server via an HTTPS connection, which then routes through a reverse proxy or SSL terminator before reaching the actual web application. This flow ensures encrypted traffic remains secure. Nginx is designed for web serving and proxying, not for handling SSL termination directly.
M
Mochi_Crunch
08-15-2023, 01:49 AM #12

The setup involves a browser connecting to a web server via an HTTPS connection, which then routes through a reverse proxy or SSL terminator before reaching the actual web application. This flow ensures encrypted traffic remains secure. Nginx is designed for web serving and proxying, not for handling SSL termination directly.

_
_MadMarco_
Junior Member
22
08-15-2023, 09:43 AM
#13
I understand your request. Let me help you with the setup.
_
_MadMarco_
08-15-2023, 09:43 AM #13

I understand your request. Let me help you with the setup.

L
Lighter256
Junior Member
44
08-15-2023, 11:29 AM
#14
For development needs, these resources are useful:
- Telerik Fiddler: https://www.telerik.com/fiddler
- Charles Proxy: https://www.charlesproxy.com/
L
Lighter256
08-15-2023, 11:29 AM #14

For development needs, these resources are useful:
- Telerik Fiddler: https://www.telerik.com/fiddler
- Charles Proxy: https://www.charlesproxy.com/

D
Dj_raptor100
Junior Member
37
08-17-2023, 01:55 AM
#15
Yes, configuring the setup so all parts run on the device means HTTP will be used on the client side for everything.
D
Dj_raptor100
08-17-2023, 01:55 AM #15

Yes, configuring the setup so all parts run on the device means HTTP will be used on the client side for everything.

R
Reltdeast
Member
151
09-04-2023, 12:15 PM
#16
When an app like a browser links to HTTPS, it expects a secure reply with a trusted certificate. You can't just decrypt and send it back. If the site uses HSTS, the browser should block redirects to unencrypted pages. Typically, you must set up a proxy such as Fiddler and add its certificate to your browser so it recognizes it. Fiddler decrypts the data, records it, then re-encrypts it before forwarding, requiring the client to accept the valid certificate. If DNS CAA is in place, the connection might still be blocked because the certificate isn't issued by the expected authority.
R
Reltdeast
09-04-2023, 12:15 PM #16

When an app like a browser links to HTTPS, it expects a secure reply with a trusted certificate. You can't just decrypt and send it back. If the site uses HSTS, the browser should block redirects to unencrypted pages. Typically, you must set up a proxy such as Fiddler and add its certificate to your browser so it recognizes it. Fiddler decrypts the data, records it, then re-encrypts it before forwarding, requiring the client to accept the valid certificate. If DNS CAA is in place, the connection might still be blocked because the certificate isn't issued by the expected authority.

G
Gustavgurra03
Posting Freak
815
09-05-2023, 04:32 PM
#17
I suggested sending everything through a proxy without using HTTPS. It functioned as described, though it wasn't exactly what I needed. Now I want the device to display something like www.google.com using HTTP instead of HTTPS.
G
Gustavgurra03
09-05-2023, 04:32 PM #17

I suggested sending everything through a proxy without using HTTPS. It functioned as described, though it wasn't exactly what I needed. Now I want the device to display something like www.google.com using HTTP instead of HTTPS.

Z
ZiGsOn
Junior Member
5
09-13-2023, 08:01 AM
#18
Thankfully it isn't that simple due to security measures. Google employs a HSTS header with a maximum age of 31,536,000 seconds (about 365 days), ensuring browsers only connect through HTTPS. Once the header is detected, your browser will automatically switch to HTTPS for a full year before allowing any HTTP attempts without an automatic redirect. Google would immediately handle this and the browser would see the header again. Additionally, some software—like mobile apps—may be pre-set to always use HTTPS and ignore redirects, while others might enforce certificate pinning to reject any unauthorized certificates.
Z
ZiGsOn
09-13-2023, 08:01 AM #18

Thankfully it isn't that simple due to security measures. Google employs a HSTS header with a maximum age of 31,536,000 seconds (about 365 days), ensuring browsers only connect through HTTPS. Once the header is detected, your browser will automatically switch to HTTPS for a full year before allowing any HTTP attempts without an automatic redirect. Google would immediately handle this and the browser would see the header again. Additionally, some software—like mobile apps—may be pre-set to always use HTTPS and ignore redirects, while others might enforce certificate pinning to reject any unauthorized certificates.

_
_mooch
Member
52
09-16-2023, 06:54 AM
#19
You might want to eliminate those protections because they add unnecessary complexity or risk. Removing them can simplify operations and reduce potential vulnerabilities.
_
_mooch
09-16-2023, 06:54 AM #19

You might want to eliminate those protections because they add unnecessary complexity or risk. Removing them can simplify operations and reduce potential vulnerabilities.

Y
Yoshi_445
Member
105
09-21-2023, 11:52 AM
#20
The connection between the client and proxy was set up using a LANAC. Initially, using Fiddler helped, but since everything was HTTPS, caching wasn't possible. The goal was to make the LANAC act like a full Internet cache rather than being restricted to only HTTP traffic.
Y
Yoshi_445
09-21-2023, 11:52 AM #20

The connection between the client and proxy was set up using a LANAC. Initially, using Fiddler helped, but since everything was HTTPS, caching wasn't possible. The goal was to make the LANAC act like a full Internet cache rather than being restricted to only HTTP traffic.

Pages (3): Previous 1 2 3 Next