summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole
Commit message (Collapse)AuthorAgeLines
* backport mozbug 1334776 - CVE-2017-7797 Header name interning leaks across ↵Gaming4JC2018-09-25-3/+3
| | | | | | | | | | | | | | | origins Potential attack: session supercookie. [Moz Notes](https://bugzilla.mozilla.org/show_bug.cgi?id=1334776#c5): "The problem is that for unknown header names we store the first one we see and then later we case-insensitively match against that name *globally*. That means you can track if a user agent has already seen a certain header name used (by using a different casing and observing whether it gets normalized). This would allow you to see if a user has used a sensitive service that uses custom header names, or allows you to track a user across sites, by teaching the browser about a certain header case once and then observing if different casings get normalized to that. What we should do instead is only store the casing for a header name for each header list and not globally. That way it only leaks where it's expected (and necessary) to leak." [Moz fix note](https://bugzilla.mozilla.org/show_bug.cgi?id=1334776#c8): "nsHttpAtom now holds the old nsHttpAtom and a string that is case sensitive (only for not standard headers). So nsHttpAtom holds a pointer to a header name. (header names are store on a static structure). This is how it used to be. I left that part the same but added a nsCString which holds a string that was used to resoled the header name. So when we parse headers we call ResolveHeader with a char*. If it is a new header name the char* will be stored in a HttpHeapAtom, nsHttpAtom::_val will point to HttpHeapAtom::value and the same strings will be stored in mLocalCaseSensitiveHeader. For the first resolve request they will be the same but for the following maybe not. At the end this nsHttpAtom will be stored in nsHttpHeaderArray. For all operation we will used the old char* except when we are returning it to a script using VisitHeaders."
* Remove support and tests for HSTS priming from the tree. Fixes #384Gaming4JC2018-05-26-6/+0
|
* Don't linkify data: or javascript: URLs in the web console.wolfbeast2018-05-15-1/+1
|
* [regression] DevTools - Web and Browser console - Added "Log request and ↵janekptacijarabaci2018-05-07-8/+41
| | | | | | response bodies" preference Issue #102
* [DevTools] Fix warnings: "Property contained reference to invalid variable"janekptacijarabaci2018-04-22-0/+2
| | | | Issue #121
* Remove unused variables (DevTools) in browser.jsjanekptacijarabaci2018-04-08-0/+1
| | | | Issue #95
* Part 5: Update devtools to follow displayName changejanekptacijarabaci2018-03-19-3/+3
| | | | Issue #87
* Bug 755821: Function() should use the parser's argument parsing codejanekptacijarabaci2018-03-16-1/+0
|
* JS - Object - "TypeError: setting a property that has only a getter" without ↵janekptacijarabaci2018-03-12-1/+1
| | | | mentioning file and property name
* DevTools - Browser Console - restore sessions (follow up)janekptacijarabaci2018-03-01-0/+1
| | | | https://github.com/MoonchildProductions/moebius/pull/112
* DevTools - Browser Console - restore sessionsjanekptacijarabaci2018-03-01-32/+96
| | | | https://github.com/MoonchildProductions/moebius/pull/112
* Add m-esr52 at 52.6.0Matt A. Tobin2018-02-02-0/+44898