parent
bf7cfb66c2
commit
d19aca3c05
|
@ -75,7 +75,7 @@ class connection(object):
|
||||||
self.args = args
|
self.args = args
|
||||||
self.db = db
|
self.db = db
|
||||||
self.hostname = host
|
self.hostname = host
|
||||||
self.port = None
|
self.port = self.args.port
|
||||||
self.conn = None
|
self.conn = None
|
||||||
self.admin_privs = False
|
self.admin_privs = False
|
||||||
self.password = ""
|
self.password = ""
|
||||||
|
|
|
@ -14,7 +14,6 @@ class ftp(connection):
|
||||||
super().__init__(args, db, host)
|
super().__init__(args, db, host)
|
||||||
|
|
||||||
def proto_logger(self):
|
def proto_logger(self):
|
||||||
self.port = self.args.port
|
|
||||||
self.logger = NXCAdapter(
|
self.logger = NXCAdapter(
|
||||||
extra={
|
extra={
|
||||||
"protocol": "FTP",
|
"protocol": "FTP",
|
||||||
|
|
|
@ -153,8 +153,6 @@ class ldap(connection):
|
||||||
connection.__init__(self, args, db, host)
|
connection.__init__(self, args, db, host)
|
||||||
|
|
||||||
def proto_logger(self):
|
def proto_logger(self):
|
||||||
# self.logger = nxc_logger
|
|
||||||
self.port = self.args.port
|
|
||||||
self.logger = NXCAdapter(
|
self.logger = NXCAdapter(
|
||||||
extra={
|
extra={
|
||||||
"protocol": "LDAP",
|
"protocol": "LDAP",
|
||||||
|
|
|
@ -50,7 +50,6 @@ class mssql(connection):
|
||||||
self.call_cmd_args()
|
self.call_cmd_args()
|
||||||
|
|
||||||
def proto_logger(self):
|
def proto_logger(self):
|
||||||
self.port = self.args.port
|
|
||||||
self.logger = NXCAdapter(
|
self.logger = NXCAdapter(
|
||||||
extra={
|
extra={
|
||||||
"protocol": "MSSQL",
|
"protocol": "MSSQL",
|
||||||
|
|
|
@ -94,7 +94,6 @@ class rdp(connection):
|
||||||
# self.call_cmd_args()
|
# self.call_cmd_args()
|
||||||
|
|
||||||
def proto_logger(self):
|
def proto_logger(self):
|
||||||
self.port = self.args.port
|
|
||||||
self.logger = NXCAdapter(
|
self.logger = NXCAdapter(
|
||||||
extra={
|
extra={
|
||||||
"protocol": "RDP",
|
"protocol": "RDP",
|
||||||
|
|
|
@ -173,7 +173,6 @@ class smb(connection):
|
||||||
connection.__init__(self, args, db, host)
|
connection.__init__(self, args, db, host)
|
||||||
|
|
||||||
def proto_logger(self):
|
def proto_logger(self):
|
||||||
self.port = self.args.port
|
|
||||||
self.logger = NXCAdapter(
|
self.logger = NXCAdapter(
|
||||||
extra={
|
extra={
|
||||||
"protocol": "SMB",
|
"protocol": "SMB",
|
||||||
|
|
|
@ -24,7 +24,6 @@ class ssh(connection):
|
||||||
super().__init__(args, db, host)
|
super().__init__(args, db, host)
|
||||||
|
|
||||||
def proto_logger(self):
|
def proto_logger(self):
|
||||||
self.port = self.args.port
|
|
||||||
self.logger = NXCAdapter(
|
self.logger = NXCAdapter(
|
||||||
extra={
|
extra={
|
||||||
"protocol": "SSH",
|
"protocol": "SSH",
|
||||||
|
|
|
@ -39,7 +39,6 @@ class vnc(connection):
|
||||||
self.call_cmd_args()
|
self.call_cmd_args()
|
||||||
|
|
||||||
def proto_logger(self):
|
def proto_logger(self):
|
||||||
self.port = self.args.port
|
|
||||||
self.logger = NXCAdapter(
|
self.logger = NXCAdapter(
|
||||||
extra={
|
extra={
|
||||||
"protocol": "VNC",
|
"protocol": "VNC",
|
||||||
|
|
|
@ -51,7 +51,6 @@ class wmi(connection):
|
||||||
connection.__init__(self, args, db, host)
|
connection.__init__(self, args, db, host)
|
||||||
|
|
||||||
def proto_logger(self):
|
def proto_logger(self):
|
||||||
self.port = self.args.port
|
|
||||||
self.logger = NXCAdapter(extra={'protocol': 'WMI',
|
self.logger = NXCAdapter(extra={'protocol': 'WMI',
|
||||||
'host': self.host,
|
'host': self.host,
|
||||||
'port': self.port,
|
'port': self.port,
|
||||||
|
|
Loading…
Reference in New Issue