Agent: Reduce smb_download_timeout to 30 seconds

This commit is contained in:
Mike Salvatore 2022-03-09 10:00:20 -05:00
parent 7e6f1df3f5
commit 0a6ced443c
2 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ class Configuration(object):
aws_session_token = "" aws_session_token = ""
# smb/wmi exploiter # smb/wmi exploiter
smb_download_timeout = 300 # timeout in seconds smb_download_timeout = 30 # timeout in seconds
smb_service_name = "InfectionMonkey" smb_service_name = "InfectionMonkey"
########################### ###########################

View File

@ -252,7 +252,7 @@ INTERNAL = {
"smb_download_timeout": { "smb_download_timeout": {
"title": "SMB download timeout", "title": "SMB download timeout",
"type": "integer", "type": "integer",
"default": 300, "default": 30,
"description": "Timeout (in seconds) for SMB download operation (used in " "description": "Timeout (in seconds) for SMB download operation (used in "
"various exploits using SMB)", "various exploits using SMB)",
}, },