The Un-Official Proxomitron Forum

Full Version: Referer of Referer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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?
no answer is also an answer. so I guess the $ADDLST way is the most effective. Cheers

thinking about it it should be possible to bypass the Same Origin Policy and create a bot. not just for the referer, any information on a site should be able this way to be accessed on any other site. could be usefull.
Reference URL's