Mechanize._response.httperror_seek_wrapper: HTTP Error 404: Not Found

I am trying to use the fbruteforcer.py program. I compiled it and it seems to work, but not at all.

The following works:

./wpbruteforcer.py -t www.pillolhacking.net -u admin -w wordlist 

But when I try to change the destination site and username, I get the following trace:

 Traceback (most recent call last): File "./fbruteforcer.py", line 253, in <module> main() File "./fbruteforcer.py", line 247, in main releaser() File "./fbruteforcer.py", line 183, in releaser bruteforce(word.replace("\n","")) File "./fbruteforcer.py", line 152, in bruteforce opensite = br.open(targetsite) File "/usr/local/lib/python2.7/dist-packages/mechanize/_mechanize.py", line 203, in open return self._mech_open(url, data, timeout=timeout) File "/usr/local/lib/python2.7/dist-packages/mechanize/_mechanize.py", line 255, in _mech_open raise response mechanize._response.httperror_seek_wrapper: HTTP Error 404: Not Found 

I tried to find a solution, but all I could find was this post .

Please help me understand what to do. Maybe I should download another mechanization package?

+6
source share
1 answer

looks like the first thing he does is try to connect to:

 "http://www."+target+"/wp-login.php" 

Where the goal is what you entered.

 http://www.google.com/wp-login.php does not exist, hence the 404 
+1
source

All Articles