summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared
Commit message (Collapse)AuthorAgeLines
* Escape '!' to '\041' in posix strings ($'...')Brian Grinstead2019-03-23-0/+1
|
* backport mozbug 1334776 - CVE-2017-7797 Header name interning leaks across ↵Gaming4JC2018-09-25-8/+8
| | | | | | | | | | | | | | | 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."
* [DevTools] Storage inspector throws an error when use arrow keysjanekptacijarabaci2018-04-28-1/+8
| | | | Issue #102
* [PALEMOON] [DevTools] Added support of the appmenu for DevTools menuitems ↵janekptacijarabaci2018-04-08-2/+18
| | | | | | | (follow up) Issue #96 Issue #102
* Copy as cURL (PATCH)janekptacijarabaci2018-03-04-1/+1
| | | | Issue #44
* moebius#350: Don't display storage-sidebar after deleting all cookiesjanekptacijarabaci2018-03-02-14/+24
| | | | | Issue #31 https://github.com/MoonchildProductions/moebius/pull/350
* moebius#342: Columns are not sorted correctly (Natural Sort algorithm)janekptacijarabaci2018-03-02-4/+113
| | | | | Issue #31 https://github.com/MoonchildProductions/moebius/pull/342
* moebius#339: Make it possible to add cookies, local and session storage entriesjanekptacijarabaci2018-03-02-1/+26
| | | | | Issue #31 https://github.com/MoonchildProductions/moebius/pull/339
* Bug 1320362: Move indexedDb storage type in the storage inspector into a new ↵janekptacijarabaci2018-03-02-0/+24
| | | | | | column Issue #31
* Bug 1146194: Multiple cookies with the same name not shownjanekptacijarabaci2018-03-02-7/+27
| | | | Issue #31
* DevTools - network - Copy as cURL (POST)janekptacijarabaci2018-03-01-1/+5
| | | | https://github.com/MoonchildProductions/moebius/pull/167
* Bug 1168376: Show transferred size in request summary instead of ↵janekptacijarabaci2018-02-28-3/+22
| | | | | | | decompressed size https://github.com/MoonchildProductions/moebius/pull/93 - without: DOMContentLoaded and load
* [regression] DevTools - network - Copy as cURL (http versions)janekptacijarabaci2018-02-12-1/+7
|
* Merge pull request #7 from janekptacijarabaci/devtools_inspector_cssColor4_1Moonchild2018-02-04-11/+23
|\ | | | | Support for css-color-4 (finish)
| * Support for css-color-4 (finish)janekptacijarabaci2018-02-02-11/+23
| | | | | | | | Issue #4
* | Add a "copy full CSS path" option to the inspector's menujanekptacijarabaci2018-02-02-0/+6
|/ | | | Issue #3
* Add m-esr52 at 52.6.0Matt A. Tobin2018-02-02-0/+136516