Added docs about order of method calls

This commit is contained in:
VakarisZ 2019-09-04 12:11:47 +03:00
parent 005618072d
commit 02c7d6c30e
1 changed files with 4 additions and 0 deletions

View File

@ -47,6 +47,10 @@ class MSSQLExploiter(HostExploiter):
self.payload_file_path = os.path.join(MSSQLExploiter.TMP_DIR_PATH, MSSQLExploiter.TMP_FILE_NAME)
def _exploit_host(self):
"""
First this method brute forces to get the mssql connection (cursor).
Also, don't forget to start_monkey_server() before self.upload_monkey() and self.stop_monkey_server() after
"""
# Brute force to get connection
username_passwords_pairs_list = self._config.get_exploit_user_password_pairs()
self.cursor = self.brute_force(self.host.ip_addr, self.SQL_DEFAULT_TCP_PORT, username_passwords_pairs_list)