Advertisement
Guest User

HDTS.Tracker

a guest
Jan 16th, 2015
1,103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.85 KB | None | 0 0
  1. <?xml version="1.0"?>
  2.     <!-- ***** BEGIN LICENSE BLOCK *****
  3.      - Version: MPL 1.1
  4.      -
  5.      - The contents of this file are subject to the Mozilla Public License Version
  6.      - 1.1 (the "License"); you may not use this file except in compliance with
  7.      - the License. You may obtain a copy of the License at
  8.      - http://www.mozilla.org/MPL/
  9.      -
  10.      - Software distributed under the License is distributed on an "AS IS" basis,
  11.      - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.      - for the specific language governing rights and limitations under the
  13.      - License.
  14.      -
  15.      - The Original Code is IRC Auto Downloader.
  16.      -
  17.      - The Initial Developer of the Original Code is
  18.      - David Nilsson.
  19.      - Portions created by the Initial Developer are Copyright (C) 2010, 2011
  20.      - the Initial Developer. All Rights Reserved.
  21.      -
  22.      - Contributor(s):
  23.      -
  24.      - ***** END LICENSE BLOCK ***** -->
  25.      
  26.     <trackerinfo
  27.     type="hdts"
  28.     shortName="HDTS"
  29.     longName="HD-Torrents"
  30.     siteName="www.hd-torrents.org">
  31.      
  32.       <settings>
  33.         <cookie_description text="FireFox -> Preferences -> Privacy -> Show Cookies and find the uid and pass cookies. Example: uid=1234; pass=asdf12347asdf13"/>
  34.         <cookie/>
  35.       </settings>
  36.      
  37.       <servers>
  38.         <server
  39.         network="P2P-NET"
  40.         serverNames="irc.p2p-network.net"
  41.         channelNames="#HD-Torrents.Announce"
  42.         announcerNames="AnnnnBot"
  43.         />
  44.       </servers>
  45.      
  46.       <parseinfo>
  47.         <linepatterns>
  48.           <extract>
  49.             <!--New Torrent in category [Movie/1080p/i] How High 2001 1080p WEB-DL AC3 x264-FraMeSToR (3.57 GB) uploaded! Download: https://hd-torrents.org/download.php?id=182b5da238288500414acb2170237c073b788a77-->
  50.             <regex value="^ New Torrent in category \[([^\]]*)\] (.*) \(([^\)]*)\) uploaded! Download\: https?\:\/\/([^\/]+\/).*[&amp;\?]id=([a-f0-9]+)"/>
  51.             <vars>
  52.               <var name="category"/>
  53.               <var name="torrentName"/>
  54.               <var name="torrentSize"/>
  55.               <var name="$baseUrl"/>
  56.               <var name="$torrentId"/>
  57.             </vars>
  58.           </extract>
  59.         </linepatterns>
  60.         <linematched>
  61.           <var name="torrentUrl">
  62.             <string value="http://"/>
  63.             <var name="$baseUrl"/>
  64.             <string value="/download.php?id="/>
  65.             <var name="$torrentId"/>
  66.             <string value="&amp;f="/>
  67.             <varenc name="torrentName"/>
  68.             <string value=".torrent"/>
  69.           </var>
  70.           <http name="cookie">
  71.             <var name="cookie"/>
  72.           </http>
  73.         </linematched>
  74.         <ignore>
  75.           <regex value="/download\.php" expected="false"/>
  76.         </ignore>
  77.       </parseinfo>
  78.     </trackerinfo>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement