logo
GeekFormat

Forwarded Header Parser

Header Forwarded standard

Analizza la catena proxy RFC 7239 Forwarded e visualizza il valore di for / by / host / proto a ogni hop.

Hop #1
for203.0.113.43
protohttps
hostapp.geekformat.com
Hop #2
for10.0.0.9
byingress

Header compatibili X-Forwarded-*

Molti gateway utilizzano ancora X-Forwarded-For / Host / Proto. Questo analizza gli indirizzi client e proxy in ordine di catena.

2 nodo(i) X-Forwarded-ForQuesti header sono significativi solo in una catena proxy attendibile e non devono essere trattati come l'IP reale del client.
#1203.0.113.43
#210.0.0.9

Anteprima JSON

{
  "standardized": [
    {
      "index": 0,
      "pairs": {
        "for": "203.0.113.43",
        "proto": "https",
        "host": "app.geekformat.com"
      }
    },
    {
      "index": 1,
      "pairs": {
        "for": "10.0.0.9",
        "by": "ingress"
      }
    }
  ],
  "legacy": {
    "x-forwarded-for": [
      "203.0.113.43, 10.0.0.9"
    ],
    "x-forwarded-proto": [
      "https"
    ],
    "x-forwarded-host": [
      "app.geekformat.com"
    ]
  }
}