Commit 4ca0bd85 by Marcin Bury

Removing double running module status.

parent 6ae68c48
...@@ -36,8 +36,6 @@ class Exploit(exploits.Exploit): ...@@ -36,8 +36,6 @@ class Exploit(exploits.Exploit):
credentials = [] credentials = []
def run(self): def run(self):
print_status("Running module...")
self.credentials = [] self.credentials = []
ftp = ftplib.FTP() ftp = ftplib.FTP()
try: try:
......
...@@ -34,8 +34,6 @@ class Exploit(exploits.Exploit): ...@@ -34,8 +34,6 @@ class Exploit(exploits.Exploit):
credentials = [] credentials = []
def run(self): def run(self):
print_status("Running module...")
self.credentials = [] self.credentials = []
ftp = ftplib.FTP() ftp = ftplib.FTP()
try: try:
......
...@@ -36,8 +36,6 @@ class Exploit(exploits.Exploit): ...@@ -36,8 +36,6 @@ class Exploit(exploits.Exploit):
credentials = [] credentials = []
def run(self): def run(self):
print_status("Running module...")
self.credentials = [] self.credentials = []
url = sanitize_url("{}:{}".format(self.target, self.port)) url = sanitize_url("{}:{}".format(self.target, self.port))
......
...@@ -33,8 +33,6 @@ class Exploit(exploits.Exploit): ...@@ -33,8 +33,6 @@ class Exploit(exploits.Exploit):
credentials = [] credentials = []
def run(self): def run(self):
print_status("Running module...")
self.credentials = [] self.credentials = []
url = sanitize_url("{}:{}".format(self.target, self.port)) url = sanitize_url("{}:{}".format(self.target, self.port))
......
...@@ -40,8 +40,6 @@ class Exploit(exploits.Exploit): ...@@ -40,8 +40,6 @@ class Exploit(exploits.Exploit):
invalid = {"min": 0, "max": 0} invalid = {"min": 0, "max": 0}
def run(self): def run(self):
print_status("Running module...")
self.credentials = [] self.credentials = []
url = sanitize_url("{}:{}{}".format(self.target, self.port, self.path)) url = sanitize_url("{}:{}{}".format(self.target, self.port, self.path))
......
...@@ -38,8 +38,6 @@ class Exploit(exploits.Exploit): ...@@ -38,8 +38,6 @@ class Exploit(exploits.Exploit):
invalid = {"min": 0, "max": 0} invalid = {"min": 0, "max": 0}
def run(self): def run(self):
print_status("Running module...")
self.credentials = [] self.credentials = []
url = sanitize_url("{}:{}{}".format(self.target, self.port, self.path)) url = sanitize_url("{}:{}{}".format(self.target, self.port, self.path))
......
...@@ -25,7 +25,6 @@ class Exploit(exploits.Exploit): ...@@ -25,7 +25,6 @@ class Exploit(exploits.Exploit):
def run(self): def run(self):
self.strings= [] self.strings= []
print_status("Running module...")
# todo: check if service is up # todo: check if service is up
......
...@@ -35,7 +35,6 @@ class Exploit(exploits.Exploit): ...@@ -35,7 +35,6 @@ class Exploit(exploits.Exploit):
def run(self): def run(self):
self.credentials = [] self.credentials = []
print_status("Running module...")
ssh = paramiko.SSHClient() ssh = paramiko.SSHClient()
try: try:
......
...@@ -34,7 +34,6 @@ class Exploit(exploits.Exploit): ...@@ -34,7 +34,6 @@ class Exploit(exploits.Exploit):
def run(self): def run(self):
self.credentials = [] self.credentials = []
print_status("Running module...")
ssh = paramiko.SSHClient() ssh = paramiko.SSHClient()
try: try:
......
...@@ -34,7 +34,6 @@ class Exploit(exploits.Exploit): ...@@ -34,7 +34,6 @@ class Exploit(exploits.Exploit):
def run(self): def run(self):
self.credentials = [] self.credentials = []
print_status("Running module...")
try: try:
tn = telnetlib.Telnet(self.target, self.port) tn = telnetlib.Telnet(self.target, self.port)
......
...@@ -34,7 +34,6 @@ class Exploit(exploits.Exploit): ...@@ -34,7 +34,6 @@ class Exploit(exploits.Exploit):
def run(self): def run(self):
self.credentials = [] self.credentials = []
print_status("Running module...")
try: try:
tn = telnetlib.Telnet(self.target, self.port) tn = telnetlib.Telnet(self.target, self.port)
......
...@@ -37,7 +37,6 @@ class Exploit(exploits.Exploit): ...@@ -37,7 +37,6 @@ class Exploit(exploits.Exploit):
def run(self): def run(self):
url = sanitize_url("{}:{}/cgi-bin/dget.cgi?cmd=wifi_AP1_ssid,wifi_AP1_hidden,wifi_AP1_passphrase,wifi_AP1_passphrase_wep,wifi_AP1_security_mode,wifi_AP1_enable,get_mac_filter_list,get_mac_filter_switch,get_client_list,get_mac_address,get_wps_dev_pin,get_wps_mode,get_wps_enable,get_wps_current_time&_=1458458152703".format(self.target, self.port)) url = sanitize_url("{}:{}/cgi-bin/dget.cgi?cmd=wifi_AP1_ssid,wifi_AP1_hidden,wifi_AP1_passphrase,wifi_AP1_passphrase_wep,wifi_AP1_security_mode,wifi_AP1_enable,get_mac_filter_list,get_mac_filter_switch,get_client_list,get_mac_address,get_wps_dev_pin,get_wps_mode,get_wps_enable,get_wps_current_time&_=1458458152703".format(self.target, self.port))
print_status("Running module...")
try: try:
r = requests.get(url) r = requests.get(url)
res = r.text res = r.text
......
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