<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Account locked out in Security</title>
    <link>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261021#M13631</link>
    <description>&lt;P&gt;index=winsec EventCode="4624" | dedup user| stats  count as total by _time host user src_ip&lt;/P&gt;

&lt;P&gt;The above query wrks fine for extracting the &lt;STRONG&gt;sourceip&lt;/STRONG&gt; for acccount logged on.&lt;/P&gt;

&lt;P&gt;But!!&lt;/P&gt;

&lt;P&gt;index=winsec EventCode="4740" | dedup user| stats  count as total by _time host user src_ip is not working to extarct the ip address of the machine that got account locked out.&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 10:51:14 GMT</pubDate>
    <dc:creator>Gayathirik</dc:creator>
    <dc:date>2020-09-29T10:51:14Z</dc:date>
    <item>
      <title>Account locked out</title>
      <link>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261021#M13631</link>
      <description>&lt;P&gt;index=winsec EventCode="4624" | dedup user| stats  count as total by _time host user src_ip&lt;/P&gt;

&lt;P&gt;The above query wrks fine for extracting the &lt;STRONG&gt;sourceip&lt;/STRONG&gt; for acccount logged on.&lt;/P&gt;

&lt;P&gt;But!!&lt;/P&gt;

&lt;P&gt;index=winsec EventCode="4740" | dedup user| stats  count as total by _time host user src_ip is not working to extarct the ip address of the machine that got account locked out.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:51:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261021#M13631</guid>
      <dc:creator>Gayathirik</dc:creator>
      <dc:date>2020-09-29T10:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Account locked out</title>
      <link>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261022#M13632</link>
      <description>&lt;P&gt;i just checked, the Event ID 4740 is not capturing the source ip's. its collecting only Computer names (host gives short hostname, ComputerName gives the FQDN).  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=winsec EventCode="4740" | dedup user| stats count as total by _time host user ComputerName
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;maybe, from ComputerName, you can do a dnslookup.&lt;/P&gt;

&lt;P&gt;updated - to get src_ip, maybe a subsearch will help - &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=winsec [search index=winsec EventCode="4740" | dedup user| table ComputerName] | stats count as total by _time host user src_ip
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Aug 2016 12:28:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261022#M13632</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2016-08-30T12:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Account locked out</title>
      <link>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261023#M13633</link>
      <description>&lt;P&gt;Yes, i have already used with computer name still i need to extract the sourceip that would give evn more clarification when the account is locked from a particular src_ip rather than computername..&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2016 13:29:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261023#M13633</guid>
      <dc:creator>Gayathirik</dc:creator>
      <dc:date>2016-08-30T13:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: Account locked out</title>
      <link>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261024#M13634</link>
      <description>&lt;P&gt;The src_ip is NOT available from Event ID 4740&lt;/P&gt;

&lt;P&gt;More info: &lt;A href="https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=4740"&gt;https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=4740&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;If you are looking for more information on what caused the lockout, you would need to look more into the failed logon attempts that lead up to the lockout.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2016 13:32:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261024#M13634</guid>
      <dc:creator>jpolcari</dc:creator>
      <dc:date>2016-08-30T13:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Account locked out</title>
      <link>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261025#M13635</link>
      <description>&lt;P&gt;to get src_ip, maybe a subsearch will help -&lt;/P&gt;

&lt;P&gt;index=winsec [search index=winsec EventCode="4740" | dedup user| table ComputerName] | stats count as total by _time host user src_ip&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:47:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261025#M13635</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2020-09-29T10:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Account locked out</title>
      <link>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261026#M13636</link>
      <description>&lt;P&gt;This really wrks!!!Thanks a lot!!!&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 08:33:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261026#M13636</guid>
      <dc:creator>Gayathirik</dc:creator>
      <dc:date>2016-08-31T08:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: Account locked out</title>
      <link>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261027#M13637</link>
      <description>&lt;P&gt;Hi Gayathri, can you please mark this as the accepted answer (and (few) upvotes please &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; )&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 09:44:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Account-locked-out/m-p/261027#M13637</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2016-08-31T09:44:46Z</dc:date>
    </item>
  </channel>
</rss>

