ummm....
5 times ?
Printable View
I dont think all these are going to help much....
i use PG and ipfilter for utorrent
better than nothing
But you can use the encryption from utorrent too
Of course it is possible. The difference of danger is clearly one of size and access. Of course they could probably infiltrate FTN, but they are more likely to go after What & Waffles, or Bitsoup or TorrentLeech or Scenetorrents. I doubt they are on every single private tracker, though I bet they are on most of those I mention.
I think we will see, sooner rather than later, a major takedown of torrent sites. The last few years they have been chasing many trackers from host to host, and it is only a matter of time before a sysop doesn't run fast enough or a host doesn't defend hard enough.
Just done some research and found out this page http://www.teckh.com/?p=185 with script to automatically download files from internet. Did some modifications to rename the file after downloading.
Script:
'===DemoGetImageStream.vbs===
'
'Requires:
'
' - IE 5+ for "Microsoft.XMLHTTP"
' - ADO 2.5+ for "adodb.stream"
'
sSrcUrl = "http://www.bluetack.co.uk/config/"
sDestFolder = "d:\"
sImageFile = "nipfilter.dat.gz"
set oHTTP = WScript.CreateObject("Microsoft.XMLHTTP")
oHTTP.open "GET", sSrcUrl & sImageFile, False
oHTTP.send
set oStream = createobject("adodb.stream")
Const adTypeBinary = 1
Const adSaveCreateOverWrite = 2
oStream.type = adTypeBinary
oStream.open
oStream.write oHTTP.responseBody
oStream.savetofile sDestFolder & sImageFile, adSaveCreateOverWrite
set oStream = nothing
set oHTTP = nothing
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.MoveFile "d:\nipfilter.dat.gz" , "d:\ipfilter.dat"
WScript.Echo "Done..."
Just copy script to notepad and save as script.vbs (or some other name). Use scheduler to run it every week. Just change folders to one uTorrent uses.