<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Cached Credentials | KC's Blog</title>
	<atom:link href="https://www.kjctech.net/tag/cached-credentials/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kjctech.net</link>
	<description></description>
	<lastBuildDate>Tue, 24 Jan 2023 18:20:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/12/cropped-KC-Logo.png?fit=32%2C32&#038;ssl=1</url>
	<title>Cached Credentials | KC's Blog</title>
	<link>https://www.kjctech.net</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">24634607</site>	<item>
		<title>How To Limit Cached Domain Credentials on Windows 10</title>
		<link>https://www.kjctech.net/how-to-limit-cached-domain-credentials-on-windows-10/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-limit-cached-domain-credentials-on-windows-10</link>
					<comments>https://www.kjctech.net/how-to-limit-cached-domain-credentials-on-windows-10/#comments</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Tue, 15 Jun 2021 05:49:54 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Cached Credentials]]></category>
		<category><![CDATA[group policy]]></category>
		<category><![CDATA[Security]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4642</guid>

					<description><![CDATA[<p>Cached credentials are extremely useful for laptops that don&#8217;t always connect to their domain controls. When you log into one that is outside of your network, Windows checks if the entered username and password match the local cached copy and will let you in if it does. But it&#8217;s not necessary on a desktop computer that is always wire-connected to [&#8230;]</p>
The post <a href="https://www.kjctech.net/how-to-limit-cached-domain-credentials-on-windows-10/">How To Limit Cached Domain Credentials on Windows 10</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>Cached credentials are extremely useful for laptops that don&#8217;t always connect to their domain controls. When you log into one that is outside of your network, Windows checks if the entered username and password match the local cached copy and will let you in if it does. But it&#8217;s not necessary on a desktop computer that is always wire-connected to  the network.</p>



<p>By default, Windows caches up to 10 credentials on local computer and these cached credentials never expire. They are stored in the registry under <strong>HKLM\Security\Cache</strong> key.</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="600" height="324" src="//i0.wp.com/kjctech.net/wp-content/uploads/2021/06/image-1-600x324.png" alt="" class="wp-image-4643" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=600%2C324&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=450%2C243&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=250%2C135&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=520%2C281&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=360%2C195&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?resize=100%2C54&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2021/06/image-1.png?w=688&amp;ssl=1 688w" sizes="(max-width: 600px) 100vw, 600px" /></figure>



<p>Note that you will need to give yourself Read permission </p>



<p>All credentials are hashed in the NL$x value format and cannot be viewed plainly and easily decrypted, fortunately. However, it could still potentially be risky because once the hackers get their hands on these data they can use a brute-force attack against these hashes to decrypt the password.</p>



<p>So, here are a few approaches to limit the cache credentials on Windows computers.</p>



<p>First of all, add all accounts in Domain Admin group to the <strong>Protected Users</strong> group so the credentials for these accounts won&#8217;t be cached locally. However, if you have some apps that integrates with AD you may find difficulty signing in using your own password.</p>



<p>Then, turn on BitLocker disk encryption if possible. Once encrypted, hackers won&#8217;t be able to do anything with it.</p>



<p>If BitLocker is not possible, disable cached credentials on all desktops and limit to only 1 for all laptops.</p>



<p>It&#8217;s easier to do so through GPO. Head over to the following location,</p>



<pre class="wp-block-preformatted">Computer Configuration &gt; Windows Settings &gt; Security Settings &gt; Local Policies &gt; Security Options</pre>



<p>And set the <strong>Interactive Logon: Number of previous logons to cache</strong> to 1 for laptops and 0 for desktops.</p>



<p>Additionally, you can display a notification of using cached credentials by enabling the policy <strong>Report when logon server was not available during user logon </strong>under the following location:</p>



<pre class="wp-block-preformatted">Computer Configuration &gt; Policies &gt; Administrative Templates &gt; Windows Components &gt; Windows Logon Options</pre>The post <a href="https://www.kjctech.net/how-to-limit-cached-domain-credentials-on-windows-10/">How To Limit Cached Domain Credentials on Windows 10</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/how-to-limit-cached-domain-credentials-on-windows-10/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4642</post-id>	</item>
	</channel>
</rss>
