rootblog.thc.org·Feb 3, 2025Practical HTTPS InterceptionTL;DR: An attacker can trick Let's Encrypt (LE) to issue new TLS certificates for any domain that the attacker intercepts traffic for. The attacker can then decrypt the TLS traffic. This one thing that TLS is supposed to prevent from happening. The f...1.9K readsTLS
Rohitrohitwrites.hashnode.dev·Jan 28, 2025why https:// : TLS / SSL explainedHave you ever visited any site and seen the settings in it. Or Have you noticed the https://. HTTP refers to Hypertext Transfer Protocol, which is a protocol for exchanging messages over the internet. But what does the s at the last means ? and why d...1 likeChaiCode
Vinay Bhardwajbhardwajvinay004.hashnode.dev·Jan 26, 2025From Browsers to Servers: The Journey of Your DataIntroduction Look at the current era, everything looks like is revolving around the internet. Billions of people on our earth communicate, interact and socialize with each other through internet access everyday despite how far away they are. The data...10 likesChaiCode
Sujeet Agraharisujeet-agrahari.hashnode.dev·Jan 26, 2025Understanding SSL/TLS: Your Guide to Secure CommunicationIntroduction SSL (Secure Sockets Layer) was designed to secure online data through encryption, ensuring confidentiality and trust. However, its vulnerabilities necessitated the development of TLS (Transport Layer Security), a more secure and efficien...10 likesSSL
Maulik Gajipara 🏌️exploring-http-methods-and-their-functions.hashnode.dev·Jan 22, 2025HTTP vs HTTPS, SSL/TLS Security, Status Codes, and Methods ExplainedHTTP vs HTTPS: UnderStanding Secure Communication. HTTP stands for Hypertext Transfer Protocol, a standard protocol for transferring data on the internet, while HTTPS (Hypertext Transfer Protocol Secure) is essentially the same protocol but with an a...http
Sumit Raskarwhat-is-httphttps-protocols.hashnode.dev·Jan 18, 2025Understanding HTTP and HTTPS Protocols and SSL/TLS Security.HTTP Hypertext Transfer Protocol or HTTP is the backbone of Internet communication. Hypertext is nothing but refers to hyperlinks to other resources on the page. HTTP functions as a Request-Response Cycle in a client-server architecture, without HTTP...ChaiCode
Syed Hussain Saberosi-layers.hashnode.dev·Jan 14, 2025OSI Layers in Computer NetworksOSI - stands for Open Systems Interconnection. It is a structure or layout which describes how the data is transferred across a network. A network is a group of devices (servers, laptops, phones, etc.) interconnected via cables, wires or even wireles...1 like·27 readsOSI Model
Harshit Sahuharshitsahu2311.hashnode.dev·Jan 9, 2025Understanding HTTP and HTTPs - CKABefore managing TLS certificates in Kubernetes, it's essential to understand how HTTP, HTTPS, SSL, and TLS work. This knowledge is fundamental for ensuring secure communication over the internet. In today's interconnected world, securing communicatio...Certified Kubernetes Administratorhttp
Uche Ozoemenaincodethismeans.hashnode.dev·Jan 3, 2025Server Management for the Faint of Heart, Featuring CaddyIntroduction Caddy is an awesome piece of software that puts SSL cert management on cruise-control, provides approachable yet flexible reverse proxying, and offers a powerful and configurable HTTP server, with some extra goodies for static files. And...26 readsCaddy
Syed Mahmood Alisyedmahmoodali.hashnode.dev·Dec 11, 2024Kubernetes and TLS: A Symphonic IntegrationToday, I'll demonstrate the process of issuing and approving a certificate for a new user in a Kubernetes cluster. STEP 1: Generate a private key using the following command openssl genrsa -out myuser.key 2048 STEP 2: Generate a CSR (certificate sig...Kubernetes