Closed
Bug 810673
Opened 13 years ago
Closed 12 years ago
Deal with removal of SSL-related warning prompts
Categories
(SeaMonkey :: Security, defect)
SeaMonkey
Security
Tracking
(Not tracked)
RESOLVED
FIXED
seamonkey2.16
People
(Reporter: neil, Unassigned)
References
Details
Attachments
(3 files)
|
7.22 KB,
patch
|
Details | Diff | Splinter Review | |
|
7.34 KB,
patch
|
Details | Diff | Splinter Review | |
|
10.94 KB,
patch
|
iannbugzilla
:
review+
philip.chee
:
feedback+
iannbugzilla
:
feedback+
|
Details | Diff | Splinter Review |
Bug #799009 removed the following prompts:
1. Warning, you are about to enter a secure site
2. Warning, you are about to leave a secure site
3. Warning, you are about to submit a form to an insecure site, when you are already on an insecure site.
4. Warning, you are viewing a site with mixed content.
| Reporter | ||
Comment 1•13 years ago
|
||
| Reporter | ||
Comment 2•13 years ago
|
||
| Reporter | ||
Comment 3•13 years ago
|
||
(Includes the insecure form submission prompt, notificationbox version)
This is still an alert but I was thinking that I could convert it into a notification in a followup bug.
Attachment #680870 -
Flags: feedback?(philip.chee)
Attachment #680870 -
Flags: feedback?(iann_bugzilla)
Comment 4•12 years ago
|
||
Comment on attachment 680870 [details] [diff] [review]
Possible patch
> + <method name="notify">
> + <parameter name="aFormElement"/>
> + <parameter name="aWindow"/>
> + <parameter name="aURI"/>
How about aActionURI ?
(tested on https://bug90392.bugzilla.mozilla.org/attachment.cgi?id=43175)
> + if (!aFormElement || ! aWindow || !aURI)
Extraneous space.
> + try {
> + uri = aFormElement.nodePrincipal.URI;
> + } catch (e) {}
When does this throw?
WFM so f=me
Attachment #680870 -
Flags: feedback?(philip.chee) → feedback+
| Reporter | ||
Comment 5•12 years ago
|
||
(In reply to Philip Chee from comment #4)
> (From update of attachment 680870 [details] [diff] [review])
> > + try {
> > + uri = aFormElement.nodePrincipal.URI;
> > + } catch (e) {}
> When does this throw?
I was just porting the PSM code, it checks the nsresult.
Comment 6•12 years ago
|
||
Bug 799009 says that the warning about leaving a secure site (#2) is "outdated".
I'm not convinced this is the case. Of course, this warning was effectively useless, since it occurred at a point where the action could no longer be prevented. As such there's no point keeping it indeed. However, having the ability to stop that action would be good (bug 289847).
There are sites out there that pass sensitive information (or authentication tokens) from an HTTPS page to an HTTP page (possibly relying on a subsequent automatic redirection to HTTPS), sometimes in an explicit link, sometimes just by changing window.location.href via JavaScript. Such behaviour should be warned against, and should also be preventable by the user.
Without any browser warnings, and more particularly when automatic redirections from HTTP to HTTPS are present on the site, information leakage can go completely unnoticed (including for the site developer).
Attachment #680870 -
Flags: feedback?(iann_bugzilla) → feedback+
| Reporter | ||
Comment 7•12 years ago
|
||
Comment on attachment 680870 [details] [diff] [review]
Possible patch
Bah, why didn't I just request r? in the first place...
Oh yeah, in case you wanted to go with attachment 680485 [details] [diff] [review].
I assume from the f+ that you are happy with this approach.
Attachment #680870 -
Flags: review?(iann_bugzilla)
Attachment #680870 -
Flags: review?(iann_bugzilla) → review+
(In reply to neil@parkwaycc.co.uk from comment #7)
> Comment on attachment 680870 [details] [diff] [review]
> Possible patch
>
> Bah, why didn't I just request r? in the first place...
>
> Oh yeah, in case you wanted to go with attachment 680485 [details] [diff] [review]
> [review].
>
> I assume from the f+ that you are happy with this approach.
r=me with the already mentioned nits fixed.
| Reporter | ||
Comment 9•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → seamonkey2.16
You need to log in
before you can comment on or make changes to this bug.
Description
•