mirror of git://erdgeist.org/opentracker
erdgeist
18 years ago
2 changed files with 3 additions and 2 deletions
@ -1,12 +1,12 @@ |
|||||||
#!/bin/sh |
#!/bin/sh |
||||||
|
|
||||||
while true; do |
while true; do |
||||||
request_string="GET /announce?info_hash=0123456789012345678%$(printf %02X $(( $RANDOM & 0xff )) )&\ |
request_string="GET /announce?info_hash=0123456789012345678%$(printf %02X $(( $RANDOM & 0xf )) )&\ |
||||||
ip=10.1.1.$(( $RANDOM & 0xff ))&port=$(( $RANDOM & 0xff )) HTTP/1.0\n" |
ip=10.1.1.$(( $RANDOM & 0xff ))&port=$(( $RANDOM & 0xff )) HTTP/1.0\n" |
||||||
|
|
||||||
# echo -e $request_string |
# echo -e $request_string |
||||||
# echo |
# echo |
||||||
echo -e $request_string | nc 127.0.0.1 6969 >/dev/null & |
echo -e $request_string | nc 127.0.0.1 6969 >/dev/null |
||||||
# echo |
# echo |
||||||
|
|
||||||
done |
done |
||||||
|
Loading…
Reference in new issue