Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
fuss:torrents [2018/12/30 17:31] officefuss:torrents [2020/05/17 15:16] – [Peer Block Lists] office
Line 12: Line 12:
 Note that any number of announce parameters (''-a'') are allowed and that they do not have to point to the same same domain. Note that any number of announce parameters (''-a'') are allowed and that they do not have to point to the same same domain.
  
-====== Peer Block Lists ======+====== Automate Peer Block List Updates ====== 
 + 
 +Torrent clients such as qBittorrent allow blocking p2p peers based on a provided blacklist. Since the blacklist may be updated periodically, it must be re-downloaded on a schedule. 
 + 
 +===== Windows ===== 
 + 
 +For Windows and using only native tools, the peer block list can be downloaded using the task scheduler and bitsadmin. The following Windows task can be saved to a file and them imported in "Task Scheduler": 
 +<file xml download-peerblock.xml> 
 +<?xml version="1.0" encoding="UTF-16"?> 
 +<Task version="1.3" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task"> 
 +  <RegistrationInfo> 
 +    <Date>2020-01-06T06:56:13.2286344</Date> 
 +    <Author>was\office</Author> 
 +    <Description>Download p2p Peer Blocklist</Description> 
 +  </RegistrationInfo> 
 +  <Triggers> 
 +    <CalendarTrigger> 
 +      <StartBoundary>2020-01-06T06:00:00Z</StartBoundary> 
 +      <Enabled>true</Enabled> 
 +      <ScheduleByDay> 
 +        <DaysInterval>1</DaysInterval> 
 +      </ScheduleByDay> 
 +    </CalendarTrigger> 
 +  </Triggers> 
 +  <Principals> 
 +    <Principal id="Author"> 
 +      <UserId>was\office</UserId> 
 +      <LogonType>InteractiveToken</LogonType> 
 +      <RunLevel>LeastPrivilege</RunLevel> 
 +    </Principal> 
 +  </Principals> 
 +  <Settings> 
 +    <MultipleInstancesPolicy>StopExisting</MultipleInstancesPolicy> 
 +    <DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries> 
 +    <StopIfGoingOnBatteries>false</StopIfGoingOnBatteries> 
 +    <AllowHardTerminate>true</AllowHardTerminate> 
 +    <StartWhenAvailable>false</StartWhenAvailable> 
 +    <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable> 
 +    <IdleSettings> 
 +      <StopOnIdleEnd>true</StopOnIdleEnd> 
 +      <RestartOnIdle>false</RestartOnIdle> 
 +    </IdleSettings> 
 +    <AllowStartOnDemand>true</AllowStartOnDemand> 
 +    <Enabled>true</Enabled> 
 +    <Hidden>true</Hidden> 
 +    <RunOnlyIfIdle>false</RunOnlyIfIdle> 
 +    <DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession> 
 +    <UseUnifiedSchedulingEngine>false</UseUnifiedSchedulingEngine> 
 +    <WakeToRun>false</WakeToRun> 
 +    <ExecutionTimeLimit>P3D</ExecutionTimeLimit> 
 +    <Priority>7</Priority> 
 +  </Settings> 
 +  <Actions Context="Author"> 
 +    <Exec> 
 +      <Command>C:\Scripts\download-peerblock.bat</Command> 
 +      <WorkingDirectory>C:\Users\office\Documents</WorkingDirectory> 
 +    </Exec> 
 +  </Actions> 
 +</Task> 
 +</file> 
 + 
 +The corresponding script file ''download-peerblock.bat'' is the following: 
 +<file dos download-peerblock.bat> 
 +bitsadmin /create download-peerblock 
 +bitsadmin /setnotifycmdline download-peerblock C:\Windows\System32\bitsadmin.exe "C:\Windows\System32\bitsadmin.exe /complete download-peerblock" 
 +bitsadmin /addfile download-peerblock http://omeglewarden.weebly.com/uploads/6/9/2/6/6926744/anti-p2p-companies.p2p C:\Users\office\Documents\anti-p2p-companies.p2p 
 +bitsadmin /resume download-peerblock 
 + 
 +</file> 
 + 
 +===== Linux ===== 
 + 
 +A file can be placed at ''/etc/cron.daily/peerblock'' with the following contents: 
 +<file bash peerblock> 
 +#!/bin/sh 
 + 
 +/usr/bin/wget -q -c -O /opt/peerblock/anti-p2p-companies.p2p http://omeglewarden.weebly.com/uploads/6/9/2/6/6926744/anti-p2p-companies.p2p 
 + 
 +</file> 
 +that will download the peer block file to the ''/opt/peerblock'' directory. 
  
-  * <nowiki>http://www.wael.name/wael.list.p2p.gz</nowiki> 

fuss/torrents.txt · Last modified: 2024/01/21 00:38 by office

Access website using Tor Access website using i2p Wizardry and Steamworks PGP Key


For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.