Reputation: 993
In general could anything coming from the server be correlated? All unique values being recorded could be correlated as long as it is created server side and passed in the server response? Spesific for correlating values in the http headers returned from the server one would use "scope=headers" right? What kind of other values could "scope" have? I know of body, but are there others?
It is not possible to correlate values generated client side by i.e. a JavaScript?
Upvotes: 0
Views: 539
Reputation: 5692
Correlated values are returned from the server inside of the HTTP response stream. If you need a value from Javascript then you have a couple of paths
Upvotes: 1