Mar. 03, 2013, 05:55 PM
hi there.
Proxomitron handles every request isolated and does not know any correlation between different requests by default. so it can not tunnel any information (except the referer) from one site to another. to make Proxomitron able to tunnel information to another site the filter have to do this work.
let's be more specific. imagine you visit 'a.com', click on a link on that site and get to 'b.com'. this site contains a script that loads the file 'c.com/x.file?ref=referer'. the word 'referer' is a variable and contains the value 'http://a.com/'. so Proxomitron sees a request with the url 'http://c.com/x.file?ref=http://a.com/'. if you use $OHDR(Referer:) here you get the value 'http://b.com/' and not 'http://a.com/' like the script did. they are different and that is why I would like to know a possibility, something like a wormhole, to get the value 'http://a.com/' when handling the last request with an outgoing header filter.
the only idea I have is to use $ADDLST and to store the wanted information in a list. for every site with an own entry like 'b.com/?Information=a.com'. but that's a slow solution. the size of this list will increase permanently.
does anybody have another idea?
Proxomitron handles every request isolated and does not know any correlation between different requests by default. so it can not tunnel any information (except the referer) from one site to another. to make Proxomitron able to tunnel information to another site the filter have to do this work.
let's be more specific. imagine you visit 'a.com', click on a link on that site and get to 'b.com'. this site contains a script that loads the file 'c.com/x.file?ref=referer'. the word 'referer' is a variable and contains the value 'http://a.com/'. so Proxomitron sees a request with the url 'http://c.com/x.file?ref=http://a.com/'. if you use $OHDR(Referer:) here you get the value 'http://b.com/' and not 'http://a.com/' like the script did. they are different and that is why I would like to know a possibility, something like a wormhole, to get the value 'http://a.com/' when handling the last request with an outgoing header filter.
the only idea I have is to use $ADDLST and to store the wanted information in a list. for every site with an own entry like 'b.com/?Information=a.com'. but that's a slow solution. the size of this list will increase permanently.
does anybody have another idea?