Is it safe to use HTTP if no sensitive information is being transmitted? [duplicate]

In the interest of security, is it safe to use HTTP (and not HTTPS) on a website where no sensitive information is being transmitted?
On a website that is purely informational, for example, and doesn’t even have the option to make an accou… Continue reading Is it safe to use HTTP if no sensitive information is being transmitted? [duplicate]

How do I capture HTTPS requests with Python if I have full access to the user’s computer

Before any of you answer, "HTTPS is built on top of TLS and everything is encrypted"
I need to specify a very important note: I have FULL access to the client’s machine (Windows)
My requirement is that I need to capture HTTP(s) r… Continue reading How do I capture HTTPS requests with Python if I have full access to the user’s computer

Safe approach to HTTP request methods with a graphql/API application that only requires GET and POST

My application uses GET for requests for the main application and POST for the API route.
I’ve read here that best HEAD should be allowed in best practice as crawlers etc can use it and it is generally considered safe (in the way GET is as… Continue reading Safe approach to HTTP request methods with a graphql/API application that only requires GET and POST

Should an HTTP error 500 triggered by an XSS payload be reported as a potential vulnerability?

So, long story short, I was using an automated vulnerability scanner on a website (bounty hunting is allowed and encouraged,) and it works by injecting payloads in forms and URLs etc., to trigger responses that might indicate SQLi, XSS, CS… Continue reading Should an HTTP error 500 triggered by an XSS payload be reported as a potential vulnerability?

What is the technical reason why HTTP/3 is not available when certificate is from private CA? [closed]

If a company creates a self signed Root CA certificate and then install that in their computers’ store for trusted root certificates, then create a leaf certificate and install that on their internal server, then that certificate will be t… Continue reading What is the technical reason why HTTP/3 is not available when certificate is from private CA? [closed]