Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>It's going to be difficult to filter your traffic using tcpdump, but it would be easier to accomplish by creating a page on the server which, when accessed, displays the headers it received from the client. <a href="http://blog.tonycode.com/tech-stuff/http-notes/dumping-http-headers" rel="nofollow">Tony Primerano's blog</a> has several examples -- I personally would do this using his PHP example. Just create a PHP page on the server and access the URL from your web browser. In the browser window, you'll see all the HTTP request options the web server received, including those you suspect the firewall has added.</p> <p>Here's Tony's code snippet:</p> <pre><code> &lt;?php foreach($_SERVER as $h=&gt;$v) if(ereg('HTTP_(.+)',$h,$hp)) echo "&lt;li&gt;$h = $v&lt;/li&gt;\n"; header('Content-type: text/html'); ?&gt; </code></pre> <p>And here's an <a href="http://www.tonycode.com/tools/showHTTPHeaders.php" rel="nofollow">example of his output</a>:</p> <blockquote> <ul> <li>HTTP_HOST = www.tonycode.com</li> <li>HTTP_USER_AGENT = Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0.1) Gecko/20100101 Firefox/8.0.1</li> <li>HTTP_ACCEPT = text/html,application/xhtml+xml,application/xml;q=0.9,<em>/</em>;q=0.8</li> <li>HTTP_ACCEPT_LANGUAGE = en-us,en;q=0.5</li> <li>HTTP_ACCEPT_ENCODING = gzip, deflate</li> <li>HTTP_ACCEPT_CHARSET = ISO-8859-1,utf-8;q=0.7,*;q=0.7</li> <li>HTTP_DNT = 1</li> <li>HTTP_REFERER = [referer URL here]</li> <li>HTTP_CONNECTION = close</li> </ul> </blockquote> <p>I know that wasn't your question, but hopefully it's a good answer.</p> <p>Hope that helps!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload