<?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 SPlunk Query-Logins and failure in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234837#M188510</link>
    <description>&lt;P&gt;Hi, Can someone please suggest  us a query we can build to find successful login and failed attempts in a separate query?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 07 Mar 2016 14:35:04 GMT</pubDate>
    <dc:creator>splunker9999</dc:creator>
    <dc:date>2016-03-07T14:35:04Z</dc:date>
    <item>
      <title>SPlunk Query-Logins and failure</title>
      <link>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234837#M188510</link>
      <description>&lt;P&gt;Hi, Can someone please suggest  us a query we can build to find successful login and failed attempts in a separate query?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2016 14:35:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234837#M188510</guid>
      <dc:creator>splunker9999</dc:creator>
      <dc:date>2016-03-07T14:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: SPlunk Query-Logins and failure</title>
      <link>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234838#M188511</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_audit action="login attempt" info=succeeded | table _time user
index=_audit action="login attempt" info=failed | table _time user
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Mar 2016 14:44:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234838#M188511</guid>
      <dc:creator>JMichaelis</dc:creator>
      <dc:date>2016-03-07T14:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: SPlunk Query-Logins and failure</title>
      <link>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234839#M188512</link>
      <description>&lt;P&gt;I guess this gives us information about our saved searches and how they are running.&lt;/P&gt;

&lt;P&gt;We are looking to find failed login attempts to splunk hosts?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2016 14:55:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234839#M188512</guid>
      <dc:creator>splunker9999</dc:creator>
      <dc:date>2016-03-07T14:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: SPlunk Query-Logins and failure</title>
      <link>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234840#M188513</link>
      <description>&lt;P&gt;I'm not quite sure what you mean but I get login attempts with user name. Why should the action="login attempt" prompt saved searches information? If you want to see the hosts as well expand with&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_audit action="login attempt" info=failed | table _time user host
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Mar 2016 15:02:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234840#M188513</guid>
      <dc:creator>JMichaelis</dc:creator>
      <dc:date>2016-03-07T15:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: SPlunk Query-Logins and failure</title>
      <link>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234841#M188514</link>
      <description>&lt;P&gt;this works for us.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2016 15:14:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234841#M188514</guid>
      <dc:creator>splunker9999</dc:creator>
      <dc:date>2016-03-07T15:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: SPlunk Query-Logins and failure</title>
      <link>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234842#M188515</link>
      <description>&lt;P&gt;Hi there splunker, try like this.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_audit tag=authentication info=succeeded | stats count by user, info, host | sort - info

index=_audit tag=authentication info=failed | stats count by user, info, host | sort - info
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Dont know about your Splunk environment, but if you are looking to get this from all your instances, you have to forward _audit index to your Search Head.&lt;/P&gt;

&lt;P&gt;Hope it helps.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2016 15:15:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/SPlunk-Query-Logins-and-failure/m-p/234842#M188515</guid>
      <dc:creator>alemarzu</dc:creator>
      <dc:date>2016-03-07T15:15:28Z</dc:date>
    </item>
  </channel>
</rss>

