Agent: Rename credential_generation -> credential_generators

This commit is contained in:
Mike Salvatore 2021-09-01 12:05:08 -04:00
parent 473fe36ba7
commit 19c1d5c1ae
3 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ from infection_monkey.exploit.consts import WIN_ARCH_32, WIN_ARCH_64
from infection_monkey.exploit.HostExploiter import HostExploiter
from infection_monkey.exploit.powershell_utils import utils
from infection_monkey.exploit.powershell_utils.auth_options import AuthOptions
from infection_monkey.exploit.powershell_utils.credential_generation import get_credentials
from infection_monkey.exploit.powershell_utils.credential_generators import get_credentials
from infection_monkey.exploit.powershell_utils.utils import (
IClient,
get_client_based_on_auth_options,

View File

@ -1,6 +1,6 @@
from infection_monkey.exploit.powershell_utils import utils
from infection_monkey.exploit.powershell_utils.auth_options import AuthOptions
from infection_monkey.exploit.powershell_utils.credential_generation import get_credentials
from infection_monkey.exploit.powershell_utils.credential_generators import get_credentials
from infection_monkey.model.host import VictimHost
TEST_USERNAMES = ["user1", "user2"]