Monthly Archives: January 2022

How to disable http3 in Mozilla Firefox

The http3 protocoll is enabled by default in Mozilla Firefox since version 88, but it may cause problems. You can turn off the http3 communication with the following steps: Type “about:config” into the search/URL bar of the browser. Type “network.http.http3.enabled” in the configuration page Set the value from “true” to “false” Restart the browser.

curl without password in command line

https://stackoverflow.com/questions/20803339/basic-authorization-command-for-curl Another way is to get Base64 encoded token of “username:password” from any online website like – https://www.base64encode.org/ and pass it as Authorization header of curl as follows: Here, dXNlcm5hbWU6cGFzc3dvcmQ= is Base64 encoded token of username:password.