<?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 Re: Search to count the number of failed logins since last successful login in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Search-to-count-the-number-of-failed-logins-since-last/m-p/535375#M151303</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/230372"&gt;@jds2726&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;sorry!&lt;/P&gt;&lt;P&gt;yes the other EventCode:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="[index name]" sourcetype=WinEventLog (EventCode=4624 OR EventCode=4625)
| trasnsaction Account_name host endswith="EventCode=4624"
| where eventcount&amp;gt;10 &lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Jan 2021 17:28:14 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2021-01-11T17:28:14Z</dc:date>
    <item>
      <title>Search to count the number of failed logins since last successful login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-to-count-the-number-of-failed-logins-since-last/m-p/535368#M151300</link>
      <description>&lt;P&gt;Hey everyone, I'm trying to write a search that will show the login events that occurred after the last successful logon event. So far I have this:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;index="[index name]" sourcetype=WinEventLog "eventcode=4625" earliest=lastLogon | eval lastLogon=&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;where lastLogin = the time value of the last event from this search:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;index="[index name]" sourcetype=WinEventLog "eventcode=4624"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Failed Logons:&lt;/STRONG&gt; index="[index name]" sourcetype=WinEventLog "EventCode=4625"&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Successful Logons:&lt;/STRONG&gt; index="[index name]" sourcetype=WinEventLog "EventCode=4624"&lt;/P&gt;&lt;P&gt;Does anyone have an idea of how to evaluate this?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 16:13:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-to-count-the-number-of-failed-logins-since-last/m-p/535368#M151300</guid>
      <dc:creator>jds2726</dc:creator>
      <dc:date>2021-01-11T16:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: Search to count the number of failed logins since last successful login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-to-count-the-number-of-failed-logins-since-last/m-p/535369#M151301</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/230372"&gt;@jds2726&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you could use the transaction command bu it isn't very efficient (e.g. number of logfail &amp;gt;10):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="[index name]" sourcetype=WinEventLog (EventCode=4624 OR EventCode=4625)
| trasnsaction Account_name host endswith="EventCode=4625"
| where eventcount&amp;gt;10 &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 16:47:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-to-count-the-number-of-failed-logins-since-last/m-p/535369#M151301</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-01-11T16:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Search to count the number of failed logins since last successful login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-to-count-the-number-of-failed-logins-since-last/m-p/535373#M151302</link>
      <description>&lt;P&gt;This only seems to get me successful logon attempts that end with a failure, rater than a list of all logon failures that came after the most recent successful logon&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 17:11:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-to-count-the-number-of-failed-logins-since-last/m-p/535373#M151302</guid>
      <dc:creator>jds2726</dc:creator>
      <dc:date>2021-01-11T17:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Search to count the number of failed logins since last successful login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-to-count-the-number-of-failed-logins-since-last/m-p/535375#M151303</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/230372"&gt;@jds2726&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;sorry!&lt;/P&gt;&lt;P&gt;yes the other EventCode:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="[index name]" sourcetype=WinEventLog (EventCode=4624 OR EventCode=4625)
| trasnsaction Account_name host endswith="EventCode=4624"
| where eventcount&amp;gt;10 &lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 17:28:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-to-count-the-number-of-failed-logins-since-last/m-p/535375#M151303</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-01-11T17:28:14Z</dc:date>
    </item>
  </channel>
</rss>

