We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5dbfdb commit dbd476dCopy full SHA for dbd476d
1 file changed
nxc/modules/efsr_spray.py
@@ -40,7 +40,7 @@ def options(self, context: Context, module_options: dict[str, str]):
40
self.file_name = module_options.get("FILE_NAME", ntpath.normpath("\\" + gen_random_string() + ".txt"))
41
self.share_name = module_options.get("SHARE_NAME")
42
if module_options.get("EXCLUDED_SHARES"):
43
- self.excluded_shares += module_options.get("EXCLUDED_SHARES","").split(",")
+ self.excluded_shares += module_options.get("EXCLUDED_SHARES", "").split(",")
44
45
def on_login(self, context: Context, connection):
46
conn: SMBConnection = connection.conn # Because typing is broken due to smb being a folder and a file >:(
0 commit comments