Commit 901ed47f by BigNerd95

Fixed flake8 violations

parent 49df5b75
......@@ -4,7 +4,6 @@ from routersploit import (
exploits,
print_error,
print_success,
print_table,
http_request,
mute,
validators,
......@@ -50,7 +49,7 @@ class Exploit(exploits.Exploit):
if len(val):
url = "{}:{}/login.cgi".format(self.target, self.port)
payload = "pws="+val[0]+"&arc_action=login&action=Submit"
payload = "pws=" + val[0] + "&arc_action=login&action=Submit"
login = http_request(method="POST", url=url, data=payload)
if login is None:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment