opentracker – An open and free bittorrent tracker
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
318 B

18 years ago
#!/bin/sh
while true; do
18 years ago
request_string="GET /announce?info_hash=0123456789012345678%$(printf %02X $(( $RANDOM & 0xff )) )&\
ip=10.1.1.$(( $RANDOM & 0xff ))&port=$(( $RANDOM & 0xff )) HTTP/1.0\n"
18 years ago
echo -e $request_string
echo
18 years ago
echo -e $request_string | nc 213.73.88.214 6969 | tr -C "[:print:]" _
18 years ago
echo
done