complexpotato / Faitagram

(Doesn't work anymore)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Runs first password fails even when correct, then: Error: Message: Cannot Connect to the Service Geckodriver

analjesus opened this issue · comments

Finally found a compatible configuration of dependencies for the script and got it to run. However, it only passes the first password in my list, and returns failed, regardless of whether its correct. Then, on the second run, the script returns "Error: Message: Can not connect to the Service geckodriver"

`Starting tor daemon...done.
[ ok ] Checking Account Existence

  • Bruteforce starting ( Delay = 1 sec ) -

    Password: pa88w0rd | Failed | IP : b'73.108.206.12'

Error : Message: Can not connect to the Service geckodriver`

I have the localhost in /etc/hosts. I removed the following:
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "127.0.0.1", 9050, True) socket.socket = socks.socksocket

This put me past the first password issue, even though it still failed the correct password, but ultimately blocked me out after 12 tries given that the proxy stopped rotating the IP. Anyone have a solution?

Got the script to run by replacing

socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "127.0.0.1", 9050, True) socket.socket = socks.socksocket
with
fp = webdriver.FirefoxProfile() fp.set_preference("network.proxy.socks","127.0.0.1") fp.set_preference("network.proxy.socks_port",int(9050))

Still not rotating IPs, however, and blocked me after 6 tries. First password, although correct, still failed as well.