Commit e13bfd38 by fwkz

Fixing linting issues.

parent 03a99eac
import socket
import paramiko import paramiko
from routersploit import ( from routersploit import (
exploits, exploits,
print_status,
print_error, print_error,
print_success, print_success,
mute, mute,
...@@ -16,7 +16,8 @@ class Exploit(exploits.Exploit): ...@@ -16,7 +16,8 @@ class Exploit(exploits.Exploit):
""" """
__info__ = { __info__ = {
'name': 'Huawei HG630a Default Credentials', 'name': 'Huawei HG630a Default Credentials',
'description': 'Module exploits default SSH credentials Huawei HG630a and HG630a-50 devices. If the target is vulnerable it is possible to authenticate through SSH service.', 'description': 'Module exploits default SSH credentials Huawei HG630a and HG630a-50 devices. '
'If the target is vulnerable it is possible to authenticate through SSH service.',
'authors': [ 'authors': [
'Murat Sahin (@murtshn)', # vulnerability discovery 'Murat Sahin (@murtshn)', # vulnerability discovery
'Marcin Bury <marcin.bury[at]reverse-shell.com>', # routersploit module 'Marcin Bury <marcin.bury[at]reverse-shell.com>', # routersploit module
...@@ -58,5 +59,3 @@ class Exploit(exploits.Exploit): ...@@ -58,5 +59,3 @@ class Exploit(exploits.Exploit):
return False # target is not vulnerable return False # target is not vulnerable
else: else:
return True # target is vulnerable return True # target is vulnerable
return False # target not vulnerable
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