Skip to content

Commit 43c1d33

Browse files
committed
Replaced DEPRECATED with REMOVED
1 parent 24ad5e6 commit 43c1d33

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

nxc/modules/dfscoerce.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class NXCModule:
22
name = "dfscoerce"
3-
description = "[DEPRECATED] Module to check if the DC is vulnerable to DFSCoerce, credit to @filip_dragovic/@Wh04m1001 and @topotam"
3+
description = "[REMOVED] Module to check if the DC is vulnerable to DFSCoerce, credit to @filip_dragovic/@Wh04m1001 and @topotam"
44
supported_protocols = ["smb"]
55
opsec_safe = True
66
multiple_hosts = True
@@ -17,4 +17,4 @@ def options(self, context, module_options):
1717
self.listener = module_options["LISTENER"]
1818

1919
def on_login(self, context, connection):
20-
context.log.fail('[DEPRECATED] This module moved to the new module "coerce_plus"')
20+
context.log.fail('[REMOVED] This module moved to the new module "coerce_plus"')

nxc/modules/petitpotam.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class NXCModule:
22
name = "petitpotam"
3-
description = "[DEPRECATED] Module to check if the DC is vulnerable to PetitPotam, credit to @topotam"
3+
description = "[REMOVED] Module to check if the DC is vulnerable to PetitPotam, credit to @topotam"
44
supported_protocols = ["smb"]
55
opsec_safe = True
66
multiple_hosts = True
@@ -18,4 +18,4 @@ def options(self, context, module_options):
1818
self.pipe = module_options["PIPE"]
1919

2020
def on_login(self, context, connection):
21-
context.log.fail('[DEPRECATED] This module moved to the new module "coerce_plus"')
21+
context.log.fail('[REMOVED] This module moved to the new module "coerce_plus"')

nxc/modules/printerbug.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class NXCModule:
22
name = "printerbug"
3-
description = "[DEPRECATED] Module to check if the Target is vulnerable to PrinterBug. Set LISTENER IP for coercion."
3+
description = "[REMOVED] Module to check if the Target is vulnerable to PrinterBug. Set LISTENER IP for coercion."
44
supported_protocols = ["smb"]
55
opsec_safe = True
66
multiple_hosts = True
@@ -17,4 +17,4 @@ def options(self, context, module_options):
1717
self.listener = module_options["LISTENER"]
1818

1919
def on_login(self, context, connection):
20-
context.log.fail('[DEPRECATED] This module moved to the new module "coerce_plus"')
20+
context.log.fail('[REMOVED] This module moved to the new module "coerce_plus"')

nxc/modules/shadowcoerce.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class NXCModule:
22
name = "shadowcoerce"
3-
description = "[DEPRECATED] Module to check if the target is vulnerable to ShadowCoerce, credit to @Shutdown and @topotam"
3+
description = "[REMOVED] Module to check if the target is vulnerable to ShadowCoerce, credit to @Shutdown and @topotam"
44
supported_protocols = ["smb"]
55
opsec_safe = True
66
multiple_hosts = True
@@ -19,4 +19,4 @@ def options(self, context, module_options):
1919
self.ipsc = bool(module_options["IPSC"])
2020

2121
def on_login(self, context, connection):
22-
context.log.fail('[DEPRECATED] This module moved to the new module "coerce_plus"')
22+
context.log.fail('[REMOVED] This module moved to the new module "coerce_plus"')

0 commit comments

Comments
 (0)