Closed
Bug 379150
Opened 19 years ago
Closed 14 years ago
Javascript can put the entire system into swap
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: linux2.6, Unassigned)
References
(
URL
)
Details
User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.1.2) Gecko/20061023 SUSE Firefox/2.0.0.2
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.1.2) Gecko/20061023 SUSE Firefox/2.0.0.2
By issuing "s='_';while(1)s+=s" site owner (or anyone in case of XSS on that site) can make a DoS attack by putting entire system into swap.
Reproducible: Always
Steps to Reproduce:
1. Enable swap in your operating system.
2. Make a HTML with Javascript code <script type="text/javascript">s='_';while(1)s+=s"</script>.
3. Open this page in Firefox.
Actual Results:
System hangs up.
Expected Results:
Script would terminate when it got too much memory.
| Reporter | ||
Comment 1•19 years ago
|
||
It would be even better if Firefox would ask user (should it continue or terminate a script) when page uses 10 MB of memory (then 20 MB, 30 MB, ...).
Comment 2•19 years ago
|
||
Confirmed on
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9a5pre) Gecko/20070515 Minefield/3.0a5pre
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9a5pre) Gecko/20070515 SeaMonkey/1.5a
mcsmurf had his trunk build terminate the script automatically with "Out of memory" in Error console. Probably it poses some limit on the scripts, but it depends on the RAM amount.
Status: UNCONFIRMED → NEW
Component: Security → JavaScript Engine
Ever confirmed: true
Product: Firefox → Core
Version: unspecified → Trunk
Comment 3•19 years ago
|
||
*RAM _and_ swap (I have 1.5Gb swap partition and 1Gb of RAM, so it's not easy to stop the program if I let it fill all the RAM)
Updated•16 years ago
|
Assignee: nobody → general
QA Contact: firefox → general
Comment 4•14 years ago
|
||
js> s='_';while(1)s+=s
typein:2: InternalError: allocation size overflow
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•