Some of this trackers already ceased in existence but its still useful for those to want to speed up their torrents
To use right click a torrent file >Properties > General
Paste the list to give your torrent a boost
credits to: Filesharefreak
http://tracker2.istole.it:60500/announce
http://inferno.demonoid.com:3400/announce
http://vip.tracker.thepiratebay.org/announce
http://track.sextorrent.to:2710/announce
http://tracker.deluxebits.to:3552/announce
http://denis.stalker.h3q.com:6969/announce
http://tracker.thepiratebay.org/announce
http://tracker.torrentbox.com:2710/announce
http://tracker.hexagon.cc:2710/announce
http://tracker.torrent.to:2710/announce
http://axxo.sladinki007.net:6500/announce
http://220.162.244.175:53880/announce
http://tpb.tracker.prq.to/announce
http://open.tracker.thepiratebay.org/announce
http://eztv.sladinki007.net:60500/announce
http://tv.tracker.prq.to/announce
http://218.145.160.136:8080/announce
http://tracker.prq.to/announce
http://tracker.torrenty.org:6969/announce
http://tpb.tracker.thepiratebay.org/announce
http://t.ppnow.net:2710/announce
http://www.torrentvideos.com:6969/announce
http://tracker.bitebbs.com:6969/announce
http://www.torrent-downloads.to:2710/announce
http://eztv.sladinki007.eu:60500/announce
http://www.ipmart-forum.com:2710/announce
http://tracker.ydy.com:83/announce
http://bt1.the9.com:6969/announce
http://tracker.sladinki007.net:6500/announce
http://tracker.ydy.com:102/announce
http://tracker.paradise-tracker.com:12000/announce
http://moviesb4time.biz/announce.php
http://tracker.deadfrog.us:42426/announce
http://mpggalaxy.mine.nu:6969/announce
http://www.sumotracker.org/announce
http://9.rarbg.com:2710/announce
http://nemesis.1337x.org/announce
http://genesis.1337x.org:1337/announce
http://tracker.bittorrent.am/announce
http://vtv.tracker.prq.to:80/announce
http://bttrack.9you.com:8080/announce
http://tracker.mightynova.com/announce
http://tracker.openbittorrent.com:80/announce
http://tracker.openbittorrent.com/announce
http://tracker.xpear.de:6969/announce
http://bittrk.appspot.com/announce
http://trackhub.appspot.com/announce
http://ultraluxx.appspot.com/announce
http://tracker.publicbt.com/announce
http://tracko.appspot.com/announce
http://tk.comicat.com/announce
http://torrent.ipnm.ru/announce
http://denis.stalker.h3q.com/announce
http://tracker4.finalgear.com/announce
http://betadoctor.appspot.com/announce
http://theninjahideout.appspot.com/announce
http://tracker.prq.to/announce
http://tracker.bittorrent.am/announce
http://nemesis.1337x.org/announce
http://tracker2.istole.it:60500/announce
http://inferno.demonoid.com:3400/announce
http://vip.tracker.thepiratebay.org/announce
http://track.sextorrent.to:2710/announce
http://tracker.deluxebits.to:3552/announce
http://denis.stalker.h3q.com:6969/announce
http://tracker.thepiratebay.org/announce
http://tracker.torrentbox.com:2710/announce
http://tracker.hexagon.cc:2710/announce
http://tracker.torrent.to:2710/announce
http://axxo.sladinki007.net:6500/announce
http://220.162.244.175:53880/announce
http://tpb.tracker.prq.to/announce
http://open.tracker.thepiratebay.org/announce
http://eztv.sladinki007.net:60500/announce
http://tv.tracker.prq.to/announce
http://218.145.160.136:8080/announce
http://tracker.prq.to/announce
http://tracker.torrenty.org:6969/announce
http://tpb.tracker.thepiratebay.org/announce
http://t.ppnow.net:2710/announce
http://www.torrentvideos.com:6969/announce
http://tracker.bitebbs.com:6969/announce
http://www.torrent-downloads.to:2710/announce
http://eztv.sladinki007.eu:60500/announce
http://www.ipmart-forum.com:2710/announce
http://tracker.ydy.com:83/announce
http://bt1.the9.com:6969/announce
http://tracker.sladinki007.net:6500/announce
http://tracker.ydy.com:102/announce
http://tracker.paradise-tracker.com:12000/announce
http://moviesb4time.biz/announce.php
http://tracker.deadfrog.us:42426/announce
http://mpggalaxy.mine.nu:6969/announce
http://www.sumotracker.org/announce
http://9.rarbg.com:2710/announce
http://nemesis.1337x.org/announce
http://genesis.1337x.org:1337/announce
http://tracker.bittorrent.am/announce
http://vtv.tracker.prq.to:80/announce
http://bttrack.9you.com:8080/announce
http://tracker.mightynova.com/announce
http://tracker.openbittorrent.com:80/announce
http://tracker.openbittorrent.com/announce
http://tracker.xpear.de:6969/announce
Friday, August 10, 2012
NMAP SELF STUDY GUIDE
1:) nmap default scan is a syn-scan
nmap.exe -sS <hostname>
2:) to specify the number of ports to be scanned use the -p flag
nmap.exe -p1-65535
3:) alternativily to scan individual ports just use the comma delimiter
nmap.exe -p20,23,22,8080,25,443,53
4:) NMAP as a network pingsweeper
nmap.exe -sP 192.168.4.0-255
nmap.exe -sP 192.168.0-255.0-255
5:) NMAP AS A UDP PORTSCANNER
nmap.exe -sU -p1-65536 <hostname>
6:) NMAP OS FINGERPRINTING
nmap.exe -O <hostname>
7:) NMAP SPECIAL SCAN TYPES
XMAS SCAN: nmap.exe -sX <hostname>
NULL SCAN: nmap.exe -sN <hostname>
ACK SCAN : nmap.exe -sA <hostname>
FIN SCAN : nmap.exe -F <hostname>
8:) TCP /UDP version scanning (gives the version of the running services on open ports in the target system)
nmap.exe -p1-1000 -sV <hostname>
9:) NMAP Specialized Ping Scanning with -PS option (PORT SPECIFY)
nmap.exe -PS80,8080,23,53
note:scans the target machines with the specified packet ports (Default is an ICMP request)
10:) NMAP output file
nmap.exe -oN <hostname> for human readable format
nmap.exe -oX <hostname> for XML format
nmap.exe -oG <hostname> for greppable format
11:) NMAP Verbosity
nmap.exe -vv <hostname>
note: creates a more detailed log file of the scan being performed
12:) NMAP SCAN SPEED
-T --AGGRESIVE 5
-T --INSANE 4
-T --PARANOID 3
-T --SNEAKY 2
-T --POLITE 1
note: The number determines the speed of scan
13:) PORT SERVICE VERSION
nmap.exe -p1-1000 -sV <hostname>
note:enumerates the version number of a service in a specified port of the target system
14:) RESUME SCANNING BY SPECIFYING A PREVIOUS LOGFILE
nmap.exe --resume "currentscan.txt"
nmap.exe -sS <hostname>
2:) to specify the number of ports to be scanned use the -p flag
nmap.exe -p1-65535
3:) alternativily to scan individual ports just use the comma delimiter
nmap.exe -p20,23,22,8080,25,443,53
4:) NMAP as a network pingsweeper
nmap.exe -sP 192.168.4.0-255
nmap.exe -sP 192.168.0-255.0-255
5:) NMAP AS A UDP PORTSCANNER
nmap.exe -sU -p1-65536 <hostname>
6:) NMAP OS FINGERPRINTING
nmap.exe -O <hostname>
7:) NMAP SPECIAL SCAN TYPES
XMAS SCAN: nmap.exe -sX <hostname>
NULL SCAN: nmap.exe -sN <hostname>
ACK SCAN : nmap.exe -sA <hostname>
FIN SCAN : nmap.exe -F <hostname>
8:) TCP /UDP version scanning (gives the version of the running services on open ports in the target system)
nmap.exe -p1-1000 -sV <hostname>
9:) NMAP Specialized Ping Scanning with -PS option (PORT SPECIFY)
nmap.exe -PS80,8080,23,53
note:scans the target machines with the specified packet ports (Default is an ICMP request)
10:) NMAP output file
nmap.exe -oN <hostname> for human readable format
nmap.exe -oX <hostname> for XML format
nmap.exe -oG <hostname> for greppable format
11:) NMAP Verbosity
nmap.exe -vv <hostname>
note: creates a more detailed log file of the scan being performed
12:) NMAP SCAN SPEED
-T --AGGRESIVE 5
-T --INSANE 4
-T --PARANOID 3
-T --SNEAKY 2
-T --POLITE 1
note: The number determines the speed of scan
13:) PORT SERVICE VERSION
nmap.exe -p1-1000 -sV <hostname>
note:enumerates the version number of a service in a specified port of the target system
14:) RESUME SCANNING BY SPECIFYING A PREVIOUS LOGFILE
nmap.exe --resume "currentscan.txt"
Subscribe to:
Posts (Atom)