Jump to content

Get all the requests headers from open browser


 Share

Recommended Posts

in general you can get this information thru a bookmarklet/favlet in your addressbar (most browsers support this) with a simple (short) javascript

1.type javascript:   (if you copy paste you probably lose javascript:)

2. paste this behind: var req = new XMLHttpRequest();req.open('GET', document.location, false);req.send(null);var headers = req.getAllResponseHeaders().toLowerCase();alert(headers);void(0);

this will give it in a popup which you can read (more advanced is by adding a textbox first to your html page and put the output in there)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...