Terminology Index

Glossary

1801 terms

Open concept maps

Showing 1313-1344 of 1801 terms

R
32

Request

An HTTP message sent by a client to a server asking for a resource or to perform an action. Defenders read requests to understand what users and attackers are doing on web applications.

An HTTP request comprises a method, URL, headers, and (often) a body, sent by a client (browser, app, attacker tool) to a server. It carries the user's intent: which resource, which action, with what data. Reading requests, in logs, captures, or proxies, is foundational to web defense: detecting attacks (injection payloads, abuse patterns), investigating user behavior, and understanding the application surface attackers target. Requests pair with responses to make up the protocol of the web.

Introduced in: Defensive Web Fundamentals

Examples

  • A GET request fetching a web page with headers and query parameters.
  • Spotting an injection payload in a POST request body in logs.
  • Reading requests to understand exactly what a client asked for.

No related terms linked yet.