I was just wondering if anyones has a code for a file that when you start it, it sets a timer, that at that a specifik date and time it will send a large amount of packets to the target host.
been watching some of these files arround the net and seems pretty interesting, so i wanted a code to play with.
Packet sender timing??
- bad_brain
- Site Owner
- Posts: 11638
- Joined: 06 Apr 2005, 16:00
- 19
- Location: In your eye floaters.
- Contact:
here´s an example of a batch-file which sends pings to hosts specified in a .txt-file (and aslo saves the ping results in another file), should be no problem to modify it for your needs:
Code: Select all
cls
@echo off
if "%1" == "" (
echo iplist.txt
) ELSE (
FOR /F "eol=; tokens=1" %%a in (%1) do ping %%a >> pingresult.txt
echo done
)