16 July 2017
In part one of this post I discussed the impact of the aging IT infrastructure on the industry’s vulnerability against WannaCry and NotPetya style attacks. Part II deals with the OS basics.
Built-in features of the Windows operating system
Windows is the hacker’s paradise. Not because of the endless stream of vulnerabilities. I my opinion, Microsoft does a good job in managing this.
But because Windows is designed to support the efficient administration of networks with thousands of windows workstations, servers, users and applications.
The authorization subsystem (Active Directory) allows the assignment of fine grained permissions to users and groups to whatever resources, and the authorization check before access to resources in near real-time. It is highly scalable to support a single office LAN as well as a segmented global network.
Built-in utilities like Admin Shares, WMI (Windows Management Instrumentation), netsh, ipconfig, and the net command enable administrators to query and to change workstation, server and user settings across the network and to support efficient software distribution and troubleshooting. Windows Server Update Service (WSUS) supports the administrators in keeping the known vulnerabilities patched.
Everything is of course scriptable with the Windows Command Shell, Powershell and VBScript. All utilities can be leveraged up to a certain extent by every user and fully by administrators.
And of course, also by malware or cyber-criminals. Once a cyber-criminal managed to get on your network with e.g. a RAT (Remote Access Toolkit), he can walk across your network and do his malicious work with just the built-in tools. A download of utilities from a C&C (command and Control) server is not necessary. With this, the cyber-criminal is nearly invisible and he will stay nearly invisible for a long time if he makes no errors.
The Principle of least privilege is implemented in Windows at all levels of the OS stack. This is ensured by the Secure Development Lifecycle (SDL), which is the mandatory Microsoft development policy since 2004. Thus, under normal conditions, the Windows built-in security features would limit the impact of a malware.
Unfortunately, software failures cannot be avoided by the SDL because they are systemic errors – we build them during development right into the software. Once a process state triggers such a systemic error and someone finds a method to reproduce the error condition, the error becomes a vulnerability, e.g. MS017-10. This is no problem unless an exploit is published which allows a cyber-criminal to leverage the vulnerability for e.g. privilege escalation. With this, he gets full access to all the built-in tools and to all processes, including the authorization subsystem.
But even if exploiting a vulnerability leads not to a privilege escalation only some patience is needed. Just probe the network until a user is found who works with permanent administrative privileges. If such a session is hijacked, a cyber-criminal gets full access to all tools and the authorization subsystem on the computer.
With administrative privileges the attacker or malware can dump the authorization subsystem on the computer and extract either the password hashes or the clear text passwords. The example below shows an extract created by MIMIKATZ on a Windows 7 Enterprise Editon Workstation.
C:\Program Files (x86)\mimikatz\x64>mimikatz .#####. mimikatz 2.1.1 (x64) built on Jun 18 2017 18:46:28 .## ^ ##. "A La Vie, A L'Amour" ## / \ ## /* * * ## \ / ## Benjamin DELPY `gentilkiwi` ( benjamin@gentilkiwi.com ) '## v ##' http://blog.gentilkiwi.com/mimikatz (oe.eo) '#####' with 21 modules * * */ .... Authentication Id : 0 ; 315690 (00000000:0004d12a) Session : Interactive from 1 User Name : kjochem Domain : WIN-2OLSA000OLM Logon Server : WIN-2OLSA000OLM Logon Time : 16.07.2017 21:31:24 SID : S-1-5-21-3248755352-2707638487-1840279341-1000 msv : [00000003] Primary * Username : kjochem * Domain : WIN-2OLSA000OLM * NTLM : dd94b116548a739e24ad775193c2d13b <--- Password hash ….. wdigest : * Username : kjochem * Domain : WIN-2OLSA000OLM * Password : #Not very12strange! <--- Clear text password kerberos : * Username : kjochem * Domain : WIN-2OLSA000OLM * Password : (null) ssp : credman :
The extracted passwords can be used for direct login to further systems, the password hashes in Pass-the-Hash attacks on further nodes. In any case the chance of detection is low since the attacker behaves like a normal user.
This is the way NotPetya works and other malware worked in the past and will work in future.
Windows is highly optimized to allow cost effective operation of networks of thousands of computers. This leads automatically to misconfigurations, e.g. through domain based technical accounts with high privileges on all workstations and servers. In combination with users working with permanent administrative privileges the cyber criminal’s life is simplified.
What are mitigating measures?
The selection below makes no claim to be complete.
Migration to Windows 10.
Drop all old-style transportation and authentication protocols during this process. Migration to Windows 10 is the first choice because baseline security in Windows 10 is higher than in Windows 7. For example, the issue with the plain text passwords in the authorization subsystem is gone. But this is not helpful in industry because we must deal for at least 5 to 10 years with Windows 7 or Windows 2008 server and old-style protocols.
Short and mid-term mitigation measures.
- Reduce the number of users working with permanent administrative rights to zero. This is a leadership task!
- Implement priority patching of critical systems, especially for those on the perimeter to the production networks.
- Review all firewall rules. Focus on required connections, limit the use of the SMB protocol as far as possible.
- Review all technical users. Limit their functionality to the local systems and lowest possible privileges, if possible.
- Roll out a security incident detection tool (SIEM) to all clients and servers. For example, dumping of processes in memory of a workstation or server is a clear indicator for a hacking attempt. Immediate action upon such events is required.
- Implement privileged account and session management, in the best case with one-time passwords which are changed after the session ends.
- Apply the measures to mitigate Pass-the-Hash attacks to all Windows networks. For details please see https://www.microsoft.com/en-us/download/details.aspx?id=36036.
Long-term measures.
- Microsoft should build a production friendly Windows with limited functionality. This Windows should have a much smaller attack surface than the standard multi-purpose Windows systems of today.
- The dependency on the SMB protocol for exchange of data between the office and the production networks should be reduced, in the best case to zero.
Have a great week!