<?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: user changed his password and successfully logged in after password change. How can i get list successful logged in user using search query? in Security</title>
    <link>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376228#M9283</link>
    <description>&lt;P&gt;first need to check for password change then successful login with new password&lt;/P&gt;</description>
    <pubDate>Thu, 26 Jul 2018 16:11:45 GMT</pubDate>
    <dc:creator>vin02</dc:creator>
    <dc:date>2018-07-26T16:11:45Z</dc:date>
    <item>
      <title>user changed his password and successfully logged in after password change. How can i get list successful logged in user using search query?</title>
      <link>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376226#M9281</link>
      <description>&lt;P&gt;user changed his password and successfully logged in after password change. How can i get list successful logged in user using search query?&lt;BR /&gt;after password reset, how can i get failed attempt.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jun 2020 17:13:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376226#M9281</guid>
      <dc:creator>vin02</dc:creator>
      <dc:date>2020-06-07T17:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: user changed his password and successfully logged in after password change. How can i get list successful logged in user using search query?</title>
      <link>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376227#M9282</link>
      <description>&lt;P&gt;@vin02,&lt;/P&gt;

&lt;P&gt;You could get the failed login by using&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_audit action="login attempt" info=failed
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or even&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_audit action="login attempt" |stats count by info,user
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Jul 2018 16:06:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376227#M9282</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-07-26T16:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: user changed his password and successfully logged in after password change. How can i get list successful logged in user using search query?</title>
      <link>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376228#M9283</link>
      <description>&lt;P&gt;first need to check for password change then successful login with new password&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2018 16:11:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376228#M9283</guid>
      <dc:creator>vin02</dc:creator>
      <dc:date>2018-07-26T16:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: user changed his password and successfully logged in after password change. How can i get list successful logged in user using search query?</title>
      <link>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376229#M9284</link>
      <description>&lt;P&gt;Hi @vin02&lt;/P&gt;

&lt;P&gt;You can find info about password change in,&lt;/P&gt;

&lt;P&gt;index=_audit user=username "action=password change"&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5451i2EF39FA6B410DEBE/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;&amp;amp; after password change, you can see info about login in&lt;/P&gt;

&lt;P&gt;index=_audit user=username  action="login attempt" info=succeeded&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2018 16:30:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376229#M9284</guid>
      <dc:creator>PowerPacked</dc:creator>
      <dc:date>2018-07-26T16:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: user changed his password and successfully logged in after password change. How can i get list successful logged in user using search query?</title>
      <link>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376230#M9285</link>
      <description>&lt;P&gt;@vin02,&lt;/P&gt;

&lt;P&gt;Sample SPL with the data, you can adjust according to your requirement&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_audit (action="password change" OR action="login attempt")|table _time,user,action,info|sort - _time
|streamstats current=f last(action) as next_action,last(info) as next_info  by user
|eval status=if(action=="password change" AND info="succeeded" AND next_action="login attempt" AND next_info=="succeeded","OK","NOK")
|where action=="password change"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Jul 2018 16:46:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376230#M9285</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-07-26T16:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: user changed his password and successfully logged in after password change. How can i get list successful logged in user using search query?</title>
      <link>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376231#M9286</link>
      <description>&lt;P&gt;thanks @renjith.nair&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 04:04:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376231#M9286</guid>
      <dc:creator>vin02</dc:creator>
      <dc:date>2018-07-27T04:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: user changed his password and successfully logged in after password change. How can i get list successful logged in user using search query?</title>
      <link>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376232#M9287</link>
      <description>&lt;P&gt;@vin02, if it worked  for you, please accept as  answer&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jul 2018 01:07:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376232#M9287</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-07-29T01:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: user changed his password and successfully logged in after password change. How can i get list successful logged in user using search query?</title>
      <link>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376233#M9288</link>
      <description>&lt;P&gt;last command is correct with just a small correction&lt;/P&gt;

&lt;P&gt;instead of &lt;BR /&gt;
index=_audit user=username "action=password change"&lt;BR /&gt;
it should be&lt;BR /&gt;
index=_audit user=username action="password change"&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 05:26:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/user-changed-his-password-and-successfully-logged-in-after/m-p/376233#M9288</guid>
      <dc:creator>vinitpathri</dc:creator>
      <dc:date>2020-09-30T05:26:41Z</dc:date>
    </item>
  </channel>
</rss>

