Created
July 31, 2014 15:58
-
-
Save liyu1981/396e85fe4facca626782 to your computer and use it in GitHub Desktop.
torwget copied from https://malwarecookbook.googlecode.com/svn-history/r4/trunk/1/3/torwget.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# Copyright (C) 2010 Michael Ligh | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU General Public License for more details. | |
# | |
# You should have received a copy of the GNU General Public License | |
# along with this program. If not, see <http://www.gnu.org/licenses/>. | |
# | |
# [NOTES] ----------------------------------------------------------- | |
# 1) Tested on Linux (Ubuntu), Windows XP/7, and Mac OS X | |
# 2) If the script hangs, make sure you have TOR running on the | |
# specified TOR_PORT | |
#-------------------------------------------------------------------- | |
from optparse import OptionParser | |
import socket | |
import httplib | |
import urlparse | |
import socks | |
import random | |
import time | |
import os | |
user_agents = [ | |
'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; )', | |
'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-GB; rv:1.8.1.18) Gecko/20081029 Firefox/2.0.0.18', | |
'Opera/9.80 (Windows NT 5.1; U; cs) Presto/2.2.15 Version/10.00', | |
'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_5; en-us) AppleWebKit/525.26.2 (KHTML, like Gecko) Version/3.2 Safari/525.26.12', | |
'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser; Avant Browser; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)', | |
'Opera/9.51 (Macintosh; Intel Mac OS X; U; en)', | |
'Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2.1; MultiZilla v1.1.32 final) Gecko/20021130', | |
] | |
TOR_SERVER = "127.0.0.1" | |
TOR_PORT = 9050 | |
headers = { | |
'Accept' : '*/*', | |
} | |
def main(): | |
parser = OptionParser() | |
parser.add_option("-r", "--referrer", action="store", dest="referrer", | |
type="string", help="use this Referrer") | |
parser.add_option("-u", "--useragent", action="store", dest="useragent", | |
type="string", help="use this User Agent") | |
parser.add_option("-c", "--connect", action="store", dest="site", | |
type="string", help="Connection string (i.e. www.sol.org/a.txt)") | |
parser.add_option("-z", "--randomize", action="store_true", | |
dest="random", default=False, | |
help="Choose a random User Agent") | |
(opts, args) = parser.parse_args() | |
if opts.site == None: | |
parser.print_help() | |
parser.error("You must supply a connection string!") | |
if opts.referrer != None: | |
headers['Referrer'] = opts.referrer | |
if opts.useragent != None: | |
headers['User-Agent'] = opts.useragent | |
elif opts.random: | |
random.seed(time.time()) | |
headers['User-Agent'] = random.choice(user_agents) | |
else: | |
headers['User-Agent'] = user_agents[0] | |
# Override the socket object with a Tor+Socks socket | |
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, TOR_SERVER, TOR_PORT) | |
socket.socket = socks.socksocket | |
# Isolate the host name from the connection string | |
if not opts.site.lower().startswith('http://'): | |
opts.site = 'http://' + opts.site | |
url = urlparse.urlsplit(opts.site) | |
print "Hostname: %s" % (url.hostname) | |
print "Path: %s" % (url.path) | |
print "Headers: %s" % (headers) | |
try: | |
conn = httplib.HTTPConnection(url.hostname) | |
conn.request('GET', url.path, None, headers) | |
data = conn.getresponse().read() | |
except: | |
print "Cannot connect...network issue?" | |
return | |
if len(data) == 0: | |
print "Got 0 bytes...try again later." | |
return | |
outfile = url.hostname + os.sep + os.path.basename(opts.site) | |
print "Saving %d bytes to %s" % (len(data), outfile) | |
if not os.path.isdir(url.hostname): | |
os.mkdir(url.hostname) | |
FILE = open(outfile, "wb") | |
FILE.write(data) | |
FILE.close() | |
print "Done!" | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Will this still work with modern TOR? I don't see any issues, but I'm not a security professional.