Skip to content

Commit

Permalink
port to python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
savio-code committed Sep 25, 2019
1 parent 6f014b0 commit 7a8735e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fern-Wifi-Cracker/core/toolbox/bruteforce_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def login_http(self,username,password):
req = request.Request(self.target_url)
base64string = base64.encodestring('%s:%s' % (username, password)).replace('\n', '')
req.add_header("Authorization", "Basic %s" % base64string)
result = request.urlopen(request)
result = request.urlopen(req)



Expand Down

0 comments on commit 7a8735e

Please sign in to comment.