Built-In Variables

Hyperlyn has several built-in variables that you can plug into Parameter values and text payloads.

  • content.length — The size of the payload
  • content.type — The content type of the payload
  • cookies — The cookie string as it is sent in the Cookie header
  • cookies["name"] — The value of an individual cookie specified by name
  • date.iso8601 – Current date and time formatted using ISO 8601 specification
  • date.rfc822 – Current date and time formatted using RFC 822 specification
  • server — The name of the remote host and the port number, formatted as name:port
  • server.name — The name of the remote host
  • server.port — The port number for the remote host

Variables can be plugged in to Parameter values by enclosing them inside ${ and }. For instance, if you want to plug a date into a value use this expression: ${date.iso8601}.

Last updated on 2023-12-05