Closed
Bug 1463151
Opened 7 years ago
Closed 7 years ago
JavaScript: EMail dialog overload
Categories
(Firefox :: Untriaged, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 167475
People
(Reporter: gabrielbeutler, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0
Build ID: 20180517141400
Steps to reproduce:
Recently I was working on a website. On this page was a link for an e-mail address (href="mailto:example@example.com"). I accidentally clicked twice on the link and I saw that there are two dialogs (aka. there is no default email client) and after a few more clicks I realized that there is no limit for this type of dialog.
Actual results:
The Problem now is, we're able to create a only by the ram limited amount of warning dialogs with only 3 lines of JavaScript code:
while(true){
window.location.href = "mailto:example@example.com";
}
The result is: The PC will crash.
Expected results:
Only one "No default email client" dialog instance should be allowed.
Updated•7 years ago
|
Group: firefox-core-security
Status: UNCONFIRMED → RESOLVED
Closed: 7 years ago
Resolution: --- → DUPLICATE
Updated•7 years ago
|
QA Contact: Virtual
You need to log in
before you can comment on or make changes to this bug.
Description
•