Topic

#Networking

46 posts tagged “Networking”.

Chisato Chisato · · 4 min read

OCSP vs CRL: How Certificate Revocation Works

OCSP and CRL are the two mechanisms browsers use to check if a TLS certificate has been revoked before its expiry date. Here's how each works.

#Security #Cryptography #Networking
Chisato Chisato · · 4 min read

What Is a Watering Hole Attack?

A watering hole attack compromises a site its targets already trust, then waits for victims to visit — rather than phishing them directly.

#Security #Cybersecurity #Networking
Chisato Chisato · · 4 min read

What Is a Firewall? Network Security Explained

A firewall filters network traffic against a ruleset, blocking connections that don't match. How packet filters, stateful inspection, and NGFWs differ.

#Security #Networking
Chisato Chisato · · 5 min read

IDS vs IPS: Intrusion Detection vs Prevention

An IDS watches network traffic and alerts on threats; an IPS sits inline and blocks them automatically. How the two compare and when to use each.

#Security #Networking #Web Development
Chisato Chisato · · 4 min read

What Is a NAT Gateway?

A NAT gateway lets private-subnet resources reach the internet outbound while staying unreachable from it, translating private IPs to a public one.

#Cloud #Networking #DevOps
Chisato Chisato · · 5 min read

What Is DNS Cache Poisoning?

DNS cache poisoning tricks a resolver into storing a forged IP address for a domain, silently redirecting anyone who queries that resolver afterward.

#Security #Networking
Takina Takina · · 4 min read

HTTP Range Requests and Partial Content, Explained

HTTP range requests let a client ask for just part of a resource, enabling video seeking, resumable downloads, and partial file fetches over HTTP.

#Networking #Web Development #Performance
Chisato Chisato · · 5 min read

What Is a DDoS Attack? How It Works and How to Stop It

A DDoS attack floods a target with traffic from many sources at once, overwhelming it until real users can't get through. How it works, and how defenses respond.

#Security #Networking #Infrastructure
Chisato Chisato · · 4 min read

What Is Clickjacking? UI Redress Attacks Explained

Clickjacking tricks a user into clicking something they can't see, hidden inside an invisible iframe. How the attack works and how to stop it.

#Security #Web Development #Networking
Chisato Chisato · · 4 min read

What Is Subresource Integrity (SRI)?

Subresource Integrity lets a browser verify a fetched script or stylesheet matches an expected hash, blocking a tampered CDN asset from running.

#Security #Web Development #Networking
Takina Takina · · 5 min read

Gzip vs Brotli: HTTP Compression Compared

Gzip and Brotli both shrink HTTP responses before they hit the wire. How each algorithm works, and why Brotli usually compresses text tighter.

#Performance #Web Development #Networking
Chisato Chisato · · 4 min read

What Is DNS over HTTPS (DoH)? Encrypted DNS Explained

DNS over HTTPS encrypts domain name lookups inside HTTPS traffic, hiding queries from network eavesdroppers. How DoH works and how it differs from DNSSEC.

#Security #Networking #Web Development
Chisato Chisato · · 4 min read

What Is a Replay Attack?

A replay attack resends a captured, valid message to trick a system into repeating an action — and why timestamps, nonces, and signatures stop it.

#Security #Authentication #Networking
Takina Takina · · 4 min read

HTTP Status Codes Explained: A Practical Guide

HTTP status codes are three-digit responses that tell a client what happened to its request. A practical tour of the codes that actually matter.

#Web Development #Networking #Backend
Takina Takina · · 4 min read

HTTP/2 vs HTTP/3: What Actually Changed

HTTP/2 fixed request multiplexing but stayed on TCP; HTTP/3 moves to QUIC over UDP to kill head-of-line blocking at the transport layer. The real differences.

#Networking #Performance #Web Development
Chisato Chisato · · 4 min read

What Is a Buffer Overflow?

A buffer overflow happens when a program writes past the end of a fixed-size memory buffer, corrupting adjacent data. How it works and how modern systems defend against it.

#Security #Computer Science #Networking
Chisato Chisato · · 4 min read

What Is a VPC? Virtual Private Clouds Explained

A VPC is an isolated, software-defined network inside a public cloud. How subnets, routing, and security groups fit together to keep resources private.

#Cloud #Networking #DevOps
Takina Takina · · 5 min read

Server-Sent Events vs WebSockets: Which to Use

SSE streams one-way updates over plain HTTP; WebSockets open a full-duplex channel. How they differ and which fits your real-time feature.

#Web Development #JavaScript #Networking
Chisato Chisato · · 5 min read

SPF, DKIM, and DMARC Explained: Email Authentication

SPF authorizes sending servers, DKIM signs message content, and DMARC ties both together with a policy — the three DNS records that stop email spoofing.

#Security #Networking #Email
Chisato Chisato · · 4 min read

What Is Certificate Transparency? CT Logs Explained

Certificate Transparency is a public, tamper-evident log of every TLS certificate issued, letting anyone detect mis-issued or rogue certificates.

#Security #Web Development #Networking
Chisato Chisato · · 5 min read

What Is Certificate Pinning?

Certificate pinning hardcodes which certificate or public key an app should trust, blocking attacks that rely on a rogue but validly signed certificate.

#Security #Web Development #Networking
Chisato Chisato · · 4 min read

What Is a Honeypot in Cybersecurity?

A honeypot is a decoy system built to look like a real target, luring attackers so defenders can observe their techniques and catch intrusions early.

#Security #Cybersecurity #Networking
Chisato Chisato · · 4 min read

What Is a Bastion Host?

A bastion host is a hardened server that acts as the single controlled entry point into a private network, shrinking the attack surface for admins.

#Security #Cloud #Networking
Chisato Chisato · · 4 min read

Encryption at Rest vs Encryption in Transit

Encryption at rest protects stored data on disk; encryption in transit protects data moving over a network. Why production systems need both.

#Security #Web Development #Networking
Chisato Chisato · · 4 min read

What Is the Same-Origin Policy? Web Security Basics

The same-origin policy stops a script from one site reading data loaded from another. How origins are compared, and how CORS and cookies fit in.

#Security #Web Development #Networking
Chisato Chisato · · 4 min read

What Is a Man-in-the-Middle Attack?

A man-in-the-middle attack secretly intercepts traffic between two parties. How MITM attacks work, common variants, and the defenses that stop them.

#Security #Networking #Web Development
Chisato Chisato · · 4 min read

What Is a VPN? How Virtual Private Networks Work

A VPN encrypts traffic between your device and a remote server, tunneling it through an untrusted network. How VPN tunneling and encryption work.

#Security #Networking #Web Development
Chisato Chisato · · 4 min read

How the TLS Handshake Works

The TLS handshake is how a browser and server agree on encryption and verify identity before any data is exchanged. Here's each step explained.

#Security #Web Development #Networking
Takina Takina · · 5 min read

HTTP Caching Headers: Cache-Control and ETag Explained

Cache-Control and ETag are the two headers that control HTTP caching — how long a response stays fresh and how to revalidate it cheaply, explained.

#Web Development #Performance #Networking
Chisato Chisato · · 4 min read

What Is SSRF? Server-Side Request Forgery Explained

SSRF tricks a server into requesting unintended destinations, reaching internal systems attackers couldn't otherwise touch. How it works and how to stop it.

#Security #Web Development #Networking
Chisato Chisato · · 4 min read

What Is a WAF? Web Application Firewalls Explained

A WAF is a filter sitting in front of a web app that inspects HTTP traffic for attack patterns like SQL injection and blocks malicious requests.

#Security #Web Development #Networking
Chisato Chisato · · 4 min read

What Is mTLS? Mutual TLS Authentication Explained

mTLS is TLS where both client and server present certificates, so each side cryptographically proves its identity before any data is exchanged.

#Security #Networking #Authentication
Chisato Chisato · · 5 min read

What Is a Reverse Proxy? How It Works, Explained

A reverse proxy sits in front of servers, forwarding client requests and hiding backend topology. TLS termination, caching, and load balancing explained.

#Networking #Cloud #DevOps
Chisato Chisato · · 4 min read

Anatomy of an Outage: The Day Facebook Vanished

On October 4, 2021, Facebook, Instagram, and WhatsApp vanished for six hours. How one network command and a DNS safety mechanism took it all down.

#Networking #DNS #Reliability
Takina Takina · · 4 min read

What Is WebRTC? Real-Time Audio, Video, and Data

WebRTC lets browsers stream audio, video, and data directly between peers — no plugins. How getUserMedia, RTCPeerConnection, and ICE/STUN/TURN fit together.

#Web Development #Networking #JavaScript
Chisato Chisato · · 5 min read

HTTPS Explained: What Happens When You Visit a Site

The padlock in your address bar hides a clever handshake. Here's what actually happens when you load an HTTPS site — encryption, certificates, and trust.

#Security #Networking #Web Development
The Lycoris Team The Lycoris Team · · 7 min read

What Is a Load Balancer? How It Works, Explained

A load balancer distributes traffic across servers to prevent overload and downtime. Layer 4 vs Layer 7, routing algorithms, health checks, and TLS.

#Networking #Cloud #Performance
Chisato Chisato · · 3 min read

What Is gRPC? High-Performance APIs, Explained

gRPC is a high-performance RPC framework from Google that uses HTTP/2 and Protocol Buffers for fast, typed, cross-language service communication.

#API #Developer Tools #Networking
Takina Takina · · 4 min read

What Is a WebSocket? Real-Time, Two-Way Web Communication

A WebSocket is a protocol for full-duplex, persistent communication over a single TCP connection. Learn how it works, when to use it, and what the alternatives are.

#Web Development #JavaScript #Networking
Takina Takina · · 4 min read

What Is HTTP/3? The QUIC-Powered Web

HTTP/3 runs over QUIC instead of TCP, cutting head-of-line blocking and speeding up connections with built-in TLS 1.3. What changed and why it matters.

#Networking #Performance #Web Development

← All topics