DedSecInside / TorBot

Dark Web OSINT Tool
Other
2.85k stars 525 forks source link

Connection Refused #11

Closed little-endian-0x01 closed 7 years ago

little-endian-0x01 commented 7 years ago

Hey guys! I really like your project and i was trying to run it on my Kali linux but even after configuring torrc file I'm getting "ConnectionRefusedError: [Errno 111] Connection refused".

There is no documentation. Can you please explain the configuration to run this project. Thank you!

This is the error thrown by running torBot.py -

Traceback (most recent call last): File "/usr/lib/python3.5/site-packages/stem/socket.py", line 398, in _make_socket control_socket.connect((self._control_addr, self._control_port)) ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):` File "torBot.py", line 12, in with Controller.from_port(port = 9051) as controller: File "/usr/lib/python3.5/site-packages/stem/control.py", line 998, in from_port control_port = stem.socket.ControlPort(address, port) File "/usr/lib/python3.5/site-packages/stem/socket.py", line 372, in init self.connect() File "/usr/lib/python3.5/site-packages/stem/socket.py", line 243, in connect self._socket = self._make_socket() File "/usr/lib/python3.5/site-packages/stem/socket.py", line 401, in _make_socket raise stem.SocketError(exc) stem.SocketError: [Errno 111] Connection refused

PSNAppz commented 7 years ago

@ConanKapoor Thanks for showing interest in this project. We are sorry that our documentation is still under development and thanks for reminding us.

Before you run the torBot make sure the following things are done properly:

Read more about torrc here : Torrc

If there is any other problem please feel free to open an issue.

little-endian-0x01 commented 7 years ago

@PSNAppz Thanks for your fast response. I implemented all the 3 steps above and still i am receiving the same error.

torrc file -

# This file was generated by Tor; if you edit it, comments will not be preserved
# The old torrc file was renamed to torrc.orig.1 or similar, and Tor will ignore it

DataDirectory /root/Downloads/tor-browser-linux64-7.0.1_en-US/tor-browser_en-US/Browser/TorBrowser/Data/Tor
GeoIPFile /root/Downloads/tor-browser-linux64-7.0.1_en-US/tor-browser_en-US/Browser/TorBrowser/Data/Tor/geoip
GeoIPv6File /root/Downloads/tor-browser-linux64-7.0.1_en-US/tor-browser_en-US/Browser/TorBrowser/Data/Tor/geoip6

ControlPort 9051
CookieAuthentication 1
HashedControlPassword 16:AE80E3930E42F7A3606823FA19CD0A3E721813EF8798ABFE86DB91DD09

Excerpt from torBot.py -

from stem import Signal
from stem.control import Controller

with Controller.from_port(port = 9051) as controller:
    controller.authenticate("16:AE80E3930E42F7A3606823FA19CD0A3E721813EF8798ABFE86DB91DD09")
    controller.signal(Signal.NEWNYM)

Error Received (When implementing python3 torBot.py) -

Traceback (most recent call last):
File "/usr/lib/python3.5/site-packages/stem/socket.py", line 398, in _make_socket
control_socket.connect((self._control_addr, self._control_port))
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):`
File "torBot.py", line 12, in
with Controller.from_port(port = 9051) as controller:
File "/usr/lib/python3.5/site-packages/stem/control.py", line 998, in from_port
control_port = stem.socket.ControlPort(address, port)
File "/usr/lib/python3.5/site-packages/stem/socket.py", line 372, in init
self.connect()
File "/usr/lib/python3.5/site-packages/stem/socket.py", line 243, in connect
self._socket = self._make_socket()
File "/usr/lib/python3.5/site-packages/stem/socket.py", line 401, in _make_socket
raise stem.SocketError(exc)
stem.SocketError: [Errno 111] Connection refused

I hope the information is sufficient from my side. I'm sorry if error is because of my stupidity somewhere. Thank you for your time!

agrepravin commented 7 years ago

@ConanKapoor Uncomment SOCKSPort 9051 Restart tor and try, Please

little-endian-0x01 commented 7 years ago

Hey! @agrepravin.

Thanks for your reply :)

PSNAppz commented 7 years ago

@ConanKapoor

Try these:

little-endian-0x01 commented 7 years ago

@PSNAppz

I followed what you said and it totally removed the error. :) Although this error came up.

Error -

Traceback (most recent call last):
  File "torBot.py", line 18, in <module>
    socks.set_default_proxy(socks.SOCKS5, "127.0.0.1",SOCKS_PORT)
AttributeError: module 'socks' has no attribute 'set_default_proxy'

Which I fixed by changing -

socks.set_default_proxy(socks.SOCKS5, "127.0.0.1",SOCKS_PORT) to socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "127.0.0.1",SOCKS_PORT)

Still after running python3 torBot.py, I get following output (After banner) -

Tor Ip Address :
Traceback (most recent call last):
  File "torBot.py", line 100, in <module>
    main()
  File "torBot.py", line 92, in main
    a = readPage("https://check.torproject.org/")
  File "/root/Downloads/TorBoT-master/modules/pagereader.py", line 9, in readPage
    response = urllib.request.urlopen(req)
  File "/usr/lib/python3.5/urllib/request.py", line 163, in urlopen
    return opener.open(url, data, timeout)
  File "/usr/lib/python3.5/urllib/request.py", line 466, in open
    response = self._open(req, data)
  File "/usr/lib/python3.5/urllib/request.py", line 484, in _open
    '_open', req)
  File "/usr/lib/python3.5/urllib/request.py", line 444, in _call_chain
    result = func(*args)
  File "/usr/lib/python3.5/urllib/request.py", line 1297, in https_open
    context=self._context, check_hostname=self._check_hostname)
  File "/usr/lib/python3.5/urllib/request.py", line 1254, in do_open
    h.request(req.get_method(), req.selector, req.data, headers)
  File "/usr/lib/python3.5/http/client.py", line 1107, in request
    self._send_request(method, url, body, headers)
  File "/usr/lib/python3.5/http/client.py", line 1152, in _send_request
    self.endheaders(body)
  File "/usr/lib/python3.5/http/client.py", line 1103, in endheaders
    self._send_output(message_body)
  File "/usr/lib/python3.5/http/client.py", line 934, in _send_output
    self.send(msg)
  File "/usr/lib/python3.5/http/client.py", line 877, in send
    self.connect()
  File "/usr/lib/python3.5/http/client.py", line 1253, in connect
    super().connect()
  File "/usr/lib/python3.5/http/client.py", line 849, in connect
    (self.host,self.port), self.timeout, self.source_address)
  File "/usr/lib/python3.5/socket.py", line 703, in create_connection
    sock.connect(sa)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 392, in connect
    self.__negotiatesocks5(destpair[0],destpair[1])
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 199, in __negotiatesocks5
    self.sendall("\x05\x01\x00")
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 165, in sendall
    socket.socket.sendall(self, bytes)
  File "/usr/local/lib/python3.5/dist-packages/socks.py", line 163, in sendall
    if 'encode' in dir(bytes):
RecursionError: maximum recursion depth exceeded while calling a Python object

I think i am not able to make a proper connection to Tor. Looks like a problem on my part. Well let me know if i should close this issue?

PSNAppz commented 7 years ago

@ConanKapoor Are you sure you are using PySocks and NOT SocksiPy

Its a mistake from our side I guess.

Use this one pip3 install PySocks

If you think you can fix the error by yourself you can close the issue, other wise we will help you figure it out. :+1:

little-endian-0x01 commented 7 years ago

Everything is working fine after installing PySocks. Apologies from my side but i guess it was not included in requirements.txt. Really awesome project :)

PSNAppz commented 7 years ago

@ConanKapoor It was our mistake sorry for the trouble. If you like our project please put a star and feel free to contribute. :+1: Thank you.

Drunkbudha commented 3 years ago

Hello i followed everything mentioned upstairs but still having the same problem as him Traceback (most recent call last): File "/usr/local/lib/python3.8/dist-packages/stem/socket.py", line 398, in _make_socket control_socket.connect((self._control_addr, self._control_port)) ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "crawl.py", line 3, in from crawl_bot import Crawl_bot File "/home/jesus/Desktop/TorScrapper-master/Modules/Crawler/crawl_bot.py", line 18, in with Controller.from_port(port=9051) as controller: File "/usr/local/lib/python3.8/dist-packages/stem/control.py", line 998, in from_port control_port = stem.socket.ControlPort(address, port) File "/usr/local/lib/python3.8/dist-packages/stem/socket.py", line 372, in init self.connect() File "/usr/local/lib/python3.8/dist-packages/stem/socket.py", line 243, in connect self._socket = self._make_socket() File "/usr/local/lib/python3.8/dist-packages/stem/socket.py", line 401, in _make_socket raise stem.SocketError(exc) stem.SocketError: [Errno 111] Connection refused

Fankaren commented 2 years ago

Environment

Ubuntu20.04.3 LTS Python3.9.0 pre-built package to install tor TORBOT v2.2

Torrc

services && ports OK

## The directory for keeping all the keys/etc. By default, we store
## things in $HOME/.tor on Unix, and in Application Data\tor on Windows.
DataDirectory /var/lib/tor
GeoIPFile /usr/share/tor/geoip
GeoIPv6File /usr/share/tor/geoip6

## The port on which Tor will listen for local connections from Tor
## controller applications, as documented in control-spec.txt.
ControlPort 9051
## If you enable the controlport, be sure to enable one of these
## authentication methods, to prevent attackers from accessing it.
HashedControlPassword 16:4FD84B3FD0725E5C607415xxxxxxxxxxxx54D969B830CF6DE7A59C2C42
CookieAuthentication 1

I can see the ports bind already. Using netstat -ano| grep 9050 9051

TorBot Error

This is the first error I get:

abc@abc:~/Downloads/TorBot-2.0.0/src$ python3 torBot.py 

                           __  ____  ____  __        ______
                          / /_/ __ \/ __ \/ /_  ____/_  __/
                         / __/ / / / /_/ / __ \/ __ \/ /
                        / /_/ /_/ / _, _/ /_/ / /_/ / /
                        \__/\____/_/ |_/_____/\____/_/  V2.0.0

                    #######################################################
                    #  TorBot - An OSINT Tool for Dark Web                #
                    #  GitHub : https://github.com/DedsecInside/TorBot    #
                    #  Help : use -h for help text                        #
                    #######################################################
                                  LICENSE: GNU Public License v3

usage: See torBot.py -h for possible arguments.
Attempting to connect to https://check.torproject.org/
Traceback (most recent call last):
  File "/usr/local/lib/python3.8/dist-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/usr/local/lib/python3.8/dist-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/usr/local/lib/python3.8/dist-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/lib/python3.8/dist-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/usr/local/lib/python3.8/dist-packages/urllib3/connectionpool.py", line 392, in _make_request
    conn.request(method, url, **httplib_request_kw)
  File "/usr/lib/python3.8/http/client.py", line 1256, in request
    self._send_request(method, url, body, headers, encode_chunked)
  File "/usr/lib/python3.8/http/client.py", line 1302, in _send_request
    self.endheaders(body, encode_chunked=encode_chunked)
  File "/usr/lib/python3.8/http/client.py", line 1251, in endheaders
    self._send_output(message_body, encode_chunked=encode_chunked)
  File "/usr/lib/python3.8/http/client.py", line 1011, in _send_output
    self.send(msg)
  File "/usr/lib/python3.8/http/client.py", line 951, in send
    self.connect()
  File "/usr/local/lib/python3.8/dist-packages/urllib3/connection.py", line 187, in connect
    conn = self._new_conn()
  File "/usr/local/lib/python3.8/dist-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f4d9d86c580>: Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/lib/python3.8/dist-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/usr/local/lib/python3.8/dist-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/usr/local/lib/python3.8/dist-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='localhost', port=8081): Max retries exceeded with url: /ip (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f4d9d86c580>: Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "torBot.py", line 234, in <module>
    main()
  File "torBot.py", line 109, in main
    link_io.print_tor_ip_address()
  File "/home/ctfd/Downloads/TorBot-2.0.0/src/modules/link_io.py", line 19, in print_tor_ip_address
    ip_string = color(GoTor.get_ip(), 'yellow')
  File "/home/ctfd/Downloads/TorBot-2.0.0/src/modules/api.py", line 39, in get_ip
    resp = requests.get(url)
  File "/usr/local/lib/python3.8/dist-packages/requests/api.py", line 76, in get
    return request('get', url, params=params, **kwargs)
  File "/usr/local/lib/python3.8/dist-packages/requests/api.py", line 61, in request
    return session.request(method=method, url=url, **kwargs)
  File "/usr/local/lib/python3.8/dist-packages/requests/sessions.py", line 530, in request
    resp = self.send(prep, **send_kwargs)
  File "/usr/local/lib/python3.8/dist-packages/requests/sessions.py", line 643, in send
    r = adapter.send(request, **kwargs)
  File "/usr/local/lib/python3.8/dist-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8081): Max retries exceeded with url: /ip (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f4d9d86c580>: Failed to establish a new connection: [Errno 111] Connection refused'))

I try to modify modules/api.py. change all port from 8081 to 9050. It comes up new error:

abc@abc:~/Downloads/TorBot-2.0.0/src$ python3 torBot.py -u https://github.com/ -i -m

                           __  ____  ____  __        ______
                          / /_/ __ \/ __ \/ /_  ____/_  __/
                         / __/ / / / /_/ / __ \/ __ \/ /
                        / /_/ /_/ / _, _/ /_/ / /_/ / /
                        \__/\____/_/ |_/_____/\____/_/  V2.0.0

                    #######################################################
                    #  TorBot - An OSINT Tool for Dark Web                #
                    #  GitHub : https://github.com/DedsecInside/TorBot    #
                    #  Help : use -h for help text                        #
                    #######################################################
                                  LICENSE: GNU Public License v3

Attempting to connect to https://check.torproject.org/
Tor IP Address: <html>
<head>
<title>This is a SOCKS Proxy, Not An HTTP Proxy</title>
</head>
<body>
<h1>This is a SOCKs proxy, not an HTTP proxy.</h1>
<p>
It appears you have configured your web browser to use this Tor port as
an HTTP proxy.
</p><p>
This is not correct: This port is configured as a SOCKS proxy, not
an HTTP proxy. If you need an HTTP proxy tunnel, use the HTTPTunnelPort
configuration option in place of, or in addition to, SOCKSPort.
Please configure your client accordingly.
</p>
<p>
See <a href="[https://www.torproject.org/documentation.html">https://www.torproject.org/documentation.html</a>](https://www.torproject.org/documentation.html%22%3Ehttps://www.torproject.org/documentation.html%3C/a%3E) for more information.
</p>
</body>
</html>

Traceback (most recent call last):
  File "torBot.py", line 234, in <module>
    main()
  File "torBot.py", line 113, in main
    handle_json_args(args)
  File "torBot.py", line 130, in handle_json_args
    email_json = link_io.print_emails(args.url)
  File "/home/ctfd/Downloads/TorBot-2.0.0/src/modules/link_io.py", line 90, in print_emails
    email_list = GoTor.get_emails(url)
  File "/home/ctfd/Downloads/TorBot-2.0.0/src/modules/api.py", line 52, in get_emails
    return resp.json()
  File "/usr/local/lib/python3.8/dist-packages/requests/models.py", line 898, in json
    return complexjson.loads(self.text, **kwargs)
  File "/usr/lib/python3/dist-packages/simplejson/__init__.py", line 518, in loads
    return _default_decoder.decode(s)
  File "/usr/lib/python3/dist-packages/simplejson/decoder.py", line 370, in decode
    obj, end = self.raw_decode(s)
  File "/usr/lib/python3/dist-packages/simplejson/decoder.py", line 400, in raw_decode
    return self.scan_once(s, idx=_w(s, idx).end())
simplejson.errors.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

Could anyone help? Please.