Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im getting more into preventing xss attacks and one of the ways I'm doing that is by finding and fixing exploits. I noticed that i see document.vulnerable in alot of the attacks I've logged.

I can't seem to find much documentation on this so I'm left wondering what does it do or what is it for?

share|improve this question
They're probably just setting a flag, document.vulnerable isn't a native JS property. – Snuffleupagus May 23 '12 at 19:48

3 Answers

up vote 4 down vote accepted

AFAIK it's just a way of testing if an attack works. You try to inject a script containing document.vulnerable = true into a page, then you go to the page and see if document.vulnerable is set.

share|improve this answer
ahh, that makes sense. Escpecially if you were using an automated script to to try and infect. Thanks. – Rooster May 23 '12 at 19:54

From what I can find it is just a flag set by the XSS vulnerability tests. I am basing this on all the tests I have seen and

...the resulting HTML page sets a specific JavaScript value (document.vulnerable=true) then the tool marks the page as vulnerable to the given XSS...

seen in the documentation for this FF add-on: https://addons.mozilla.org/en-US/firefox/addon/xss-me/

share|improve this answer

I don't think it does anything, it just sets a property on the document object called vulnerable.

When you see HTML code like: <IMG SRC="javascript:document.vulnerable=true;"> when looking at XSS attacks, it's just a way of saying "allowing JavaScript code to be inserted here is dangerous".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.