Maybe something is very stupid here, but I'm having problems with automatic authentication through Tor.
I am using 32-bit ubuntu 12.04 with obfuscation bridges.
This should be all the relevant code, but let me know if there is anything else that would be helpful in debugging this problem:
import socket import socks import httplib def connectTor(): socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "127.0.0.1", 9050, True)
Whenever I run this, I get the following error:
515 Authentication failed: Password did not match HashedControlPassword value from configuration. Maybe you tried a plain text password
I tried using the -hash-password option and pasted it instead of the AUTHENTICATE line, but that just caused the script to hang. Thoughts?
source share