<?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: Help with writing a join command that joins a security breach to the previous login in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352491#M104333</link>
    <description>&lt;P&gt;Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search which includes events from both EventTypes
  | table _time User EventType Organization OrgCode
  | eval Organization=coalesce(Organization,"YourStaticValue")
  | eval OrgCode=coalesce(OrgCode,"YourStaticValue")
  | sort 0 -User, _time
  | eval prevUser=if(EventType="Login",User,null()
 | filldown prevUser Organization OrgCode
  | where EventType="Security Breach" AND User=prevUser
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 21 Sep 2017 14:56:51 GMT</pubDate>
    <dc:creator>somesoni2</dc:creator>
    <dc:date>2017-09-21T14:56:51Z</dc:date>
    <item>
      <title>Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352476#M104318</link>
      <description>&lt;P&gt;This is the requirement. I need to join two events based on a common field “User”. The Event with EventType “Security Breach” should be joined with Eventtype “Login”. The condition is User1  who have a “Security Breach” at 10:55 AM should be joined to the login at 10:54 AM, not with the login at 10:57 AM and login at 10:49 AM. Similarly the User1 who have a “Security Breach” Event at 10:50 AM should be joined to Login event at 10:49AM, not with 10:54 AM. Hope this clarifies.&lt;/P&gt;

&lt;P&gt;_time   User    EventType&lt;BR /&gt;
10:55 AM    User1   Security Breach&lt;BR /&gt;
10:53 AM    User2   Security Breach&lt;BR /&gt;
10:50 AM    User1   Security Breach &lt;BR /&gt;
10:48 AM    User1   Security Breach&lt;/P&gt;

&lt;P&gt;_time   User    EventType&lt;BR /&gt;
10:57 AM    User1   Login&lt;BR /&gt;
10:55 AM    User2   Login&lt;BR /&gt;
10:54 AM    User1   Login&lt;BR /&gt;
10:53 AM    User2   Login&lt;BR /&gt;
10:49 AM    User1   Login&lt;/P&gt;

&lt;P&gt;Any one can help me in Writing query for this. I tried using join with earlier=true option. But that doesnt give me the right result.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 16:39:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352476#M104318</guid>
      <dc:creator>anuremanan88</dc:creator>
      <dc:date>2017-09-20T16:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352477#M104319</link>
      <description>&lt;P&gt;What's the final expected output (based on your sample events here)?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 17:23:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352477#M104319</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-09-20T17:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352478#M104320</link>
      <description>&lt;P&gt;I am guessing you want to find the time difference between login and security breach.&lt;BR /&gt;
Do you really need a join for this?&lt;BR /&gt;
What if I do this instead?&lt;BR /&gt;
| sort  - User, - _time , - EventType&lt;BR /&gt;
that should give me for User1&lt;BR /&gt;
_time          User     EventType&lt;BR /&gt;
10:48 AM  User1  SecBrch&lt;BR /&gt;
10:49 AM  User 1 Login&lt;BR /&gt;
10:50 AM  User1   SecBrch&lt;BR /&gt;
10:54 AM&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 17:42:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352478#M104320</guid>
      <dc:creator>Sukisen1981</dc:creator>
      <dc:date>2017-09-20T17:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352479#M104321</link>
      <description>&lt;P&gt;I am guessing you want to find the time difference between login and security breach.&lt;BR /&gt;
Do you really need a join for this?&lt;BR /&gt;
What if I do this instead?&lt;BR /&gt;
| sort - User, - _time , - EventType&lt;BR /&gt;
that should give me for User1&lt;BR /&gt;
_time User EventType&lt;BR /&gt;
10:48 AM User1 SecBrch&lt;BR /&gt;
10:49 AM User 1 Login&lt;BR /&gt;
10:50 AM User1 SecBrch&lt;BR /&gt;
10:54 AM User1 Login&lt;BR /&gt;
10:55 AM User1 SecBrch&lt;/P&gt;

&lt;H1&gt;10:57 AM User1 Login&lt;/H1&gt;

&lt;P&gt;Now use streamstats to get the previous _time value , eval to check if current eventtype is secbrch if yes then subtract current _time-prev _time..This is better than using a join if that is what you want...&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 17:45:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352479#M104321</guid>
      <dc:creator>Sukisen1981</dc:creator>
      <dc:date>2017-09-20T17:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352480#M104322</link>
      <description>&lt;P&gt;Ok.. Let me explain it much better. Some of the fields are missing in Security Breach event which is available in the Login event.  I need to join those fields from login event to SecBreach event. The fields are Organization Orgcode. Organization remains unique for an user. But OrgCode will may not be the same.&lt;/P&gt;

&lt;P&gt;Here is my login event&lt;/P&gt;

&lt;P&gt;_time   User    EventType   Organization    OrgCode&lt;BR /&gt;
10:57 AM    User1   Login   CIA 12345&lt;BR /&gt;
10:55 AM    User2   Login   HIS 765555&lt;BR /&gt;
10:54 AM    User1   Login   CIA 53211&lt;BR /&gt;
10:52 AM    User2   Login   HIS 12233&lt;BR /&gt;
10:49 AM    User1   Login   CIA 765555&lt;BR /&gt;
10:47 AM    User1   Login   CIA 234555&lt;/P&gt;

&lt;P&gt;Here is my Security breach event. &lt;/P&gt;

&lt;P&gt;_time   User    EventType&lt;BR /&gt;
10:55 AM    User1   Security Breach&lt;BR /&gt;
10:53 AM    User2   Security Breach&lt;BR /&gt;
10:50 AM    User1   Security Breach&lt;BR /&gt;
10:48 AM    User1   Security Breach&lt;/P&gt;

&lt;P&gt;After Joining I should get &lt;/P&gt;

&lt;P&gt;_time   User    EventType   Organization    OrgCode&lt;BR /&gt;
10:55 AM    User1   Security Breach CIA 53211&lt;BR /&gt;
10:53 AM    User2   Security Breach HIS 12233&lt;BR /&gt;
10:50 AM    User1   Security Breach CIA 765555&lt;BR /&gt;
10:48 AM    User1   Security Breach CIA 234555&lt;/P&gt;

&lt;P&gt;Hope this clarifies&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:01:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352480#M104322</guid>
      <dc:creator>anuremanan88</dc:creator>
      <dc:date>2017-09-20T18:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352481#M104323</link>
      <description>&lt;P&gt;Ok.. let me explain it much better way. I have few fields missing in Security Breach Event which is available in the login event. I need to join those fields to the  Security event. Organization and OrgCode are the fields. Organization will be unique for an user but OrgCode may change .&lt;/P&gt;

&lt;P&gt;Here is my Security Breach Event&lt;/P&gt;

&lt;P&gt;_time   User    EventType&lt;BR /&gt;
10:55 AM    User1   Security Breach&lt;BR /&gt;
10:53 AM    User2   Security Breach&lt;BR /&gt;
10:50 AM    User1   Security Breach&lt;BR /&gt;
10:48 AM    User1   Security Breach&lt;/P&gt;

&lt;P&gt;Here is my Login Event&lt;BR /&gt;
_time   User    EventType   Organization    OrgCode&lt;BR /&gt;
10:57 AM    User1   Login   CIA 12345&lt;BR /&gt;
10:55 AM    User2   Login   HIS 765555&lt;BR /&gt;
10:54 AM    User1   Login   CIA 53211&lt;BR /&gt;
10:52 AM    User2   Login   HIS 12233&lt;BR /&gt;
10:49 AM    User1   Login   CIA 765555&lt;BR /&gt;
10:47 AM    User1   Login   CIA 234555&lt;/P&gt;

&lt;P&gt;My output after joining should be &lt;BR /&gt;
_time   User    EventType   Organization    OrgCode&lt;BR /&gt;
10:55 AM    User1   Security Breach CIA 53211&lt;BR /&gt;
10:53 AM    User2   Security Breach HIS 12233&lt;BR /&gt;
10:50 AM    User1   Security Breach CIA 765555&lt;BR /&gt;
10:48 AM    User1   Security Breach CIA 234555&lt;/P&gt;

&lt;P&gt;Hope this clarifies.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:06:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352481#M104323</guid>
      <dc:creator>anuremanan88</dc:creator>
      <dc:date>2017-09-20T18:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352482#M104324</link>
      <description>&lt;P&gt;Ok.. let me explain it much better way. I have few fields missing in Security Breach Event which is available in the login event. I need to join those fields to the  Security event. Organization and OrgCode are the fields. Organization will be unique for an user but OrgCode may change .&lt;/P&gt;

&lt;P&gt;Here is my Security Breach Event&lt;/P&gt;

&lt;P&gt;_time   User    EventType&lt;BR /&gt;
10:55 AM    User1   Security Breach&lt;BR /&gt;
10:53 AM    User2   Security Breach&lt;BR /&gt;
10:50 AM    User1   Security Breach&lt;BR /&gt;
10:48 AM    User1   Security Breach&lt;/P&gt;

&lt;P&gt;Here is my Login Event&lt;BR /&gt;
_time   User    EventType   Organization    OrgCode&lt;BR /&gt;
10:57 AM    User1   Login   CIA 12345&lt;BR /&gt;
10:55 AM    User2   Login   HIS 765555&lt;BR /&gt;
10:54 AM    User1   Login   CIA 53211&lt;BR /&gt;
10:52 AM    User2   Login   HIS 12233&lt;BR /&gt;
10:49 AM    User1   Login   CIA 765555&lt;BR /&gt;
10:47 AM    User1   Login   CIA 234555&lt;/P&gt;

&lt;P&gt;My output after joining should be &lt;BR /&gt;
_time   User    EventType   Organization    OrgCode&lt;BR /&gt;
10:55 AM    User1   Security Breach CIA 53211&lt;BR /&gt;
10:53 AM    User2   Security Breach HIS 12233&lt;BR /&gt;
10:50 AM    User1   Security Breach CIA 765555&lt;BR /&gt;
10:48 AM    User1   Security Breach CIA 234555&lt;/P&gt;

&lt;P&gt;Hope this clarifies.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:07:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352482#M104324</guid>
      <dc:creator>anuremanan88</dc:creator>
      <dc:date>2017-09-20T18:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352483#M104325</link>
      <description>&lt;P&gt;again do you really need the join command for this? you can still get this by sort, streamstats and eval functions to check the previous values....do not use a join unless absolutely necessary...  @somesoni2  will agree. Now, I have not really tried this but if you don't get a solution I will try this out without joins, looks very much possible&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:16:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352483#M104325</guid>
      <dc:creator>Sukisen1981</dc:creator>
      <dc:date>2017-09-20T18:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352484#M104326</link>
      <description>&lt;P&gt;Here the problem is I  have the filter criteria as Organization OrgCode. If I give an Organization/OrgCode as input I should get the number of  Security Breach events for the Organization/OrgCode. In that case will your method works? Please suggest&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:29:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352484#M104326</guid>
      <dc:creator>anuremanan88</dc:creator>
      <dc:date>2017-09-20T18:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352485#M104327</link>
      <description>&lt;P&gt;I believe you can achieve this without join. Extending solution from @Sukisen1981, you could do like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search which includes events from both EventTypes
| sort 0 -User, _time
| streamstats current=f window=1 values(EventType) as prevEventType values(Organization) as prevOrg values(OrgCode) as prevOrgCode by User
| where EventType="Security Breach"
| rename prevOrg as Organization prevOrgCode as OrgCode
| table _time User EventType Organization OrgCode
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 20 Sep 2017 18:47:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352485#M104327</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-09-20T18:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352486#M104328</link>
      <description>&lt;P&gt;Will this give accurate value. Because if the user is having more than one Security Breach Events after a login, keeping window=1 will not work. If I am not keeping window=1 argument, I am getting Organization and OrgCode mapped to all event. But I want to make sure it is mapping to the right events.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 19:43:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352486#M104328</guid>
      <dc:creator>anuremanan88</dc:creator>
      <dc:date>2017-09-20T19:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352487#M104329</link>
      <description>&lt;P&gt;In case there are multiple security breach events, you want to list them all? OR just keep earliest/latest?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 19:45:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352487#M104329</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-09-20T19:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352488#M104330</link>
      <description>&lt;P&gt;I need to list them all and map the Organization and OrgCode to it from the corresponding Login Event&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 19:50:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352488#M104330</guid>
      <dc:creator>anuremanan88</dc:creator>
      <dc:date>2017-09-20T19:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352489#M104331</link>
      <description>&lt;P&gt;Lets try this alternative&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; your base search which includes events from both EventTypes
 | table _time User EventType Organization OrgCode
 | sort 0 -User, _time
 | eval prevUser=if(EventType="Login",User,null()
| filldown prevUser Organization OrgCode
 | where EventType="Security Breach" AND User=prevUser
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 20 Sep 2017 19:57:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352489#M104331</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-09-20T19:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352490#M104332</link>
      <description>&lt;P&gt;Thank You. Very much appreciated. You made my work much easier. I have been testing it from yesterday. I have a small problem now. In the above scenario, some of my login events does not have Organization and OrgCode in it. I need to fill those fields with some static value and then map it to the SecBreach event.  Can you help me?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2017 14:50:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352490#M104332</guid>
      <dc:creator>anuremanan88</dc:creator>
      <dc:date>2017-09-21T14:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352491#M104333</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search which includes events from both EventTypes
  | table _time User EventType Organization OrgCode
  | eval Organization=coalesce(Organization,"YourStaticValue")
  | eval OrgCode=coalesce(OrgCode,"YourStaticValue")
  | sort 0 -User, _time
  | eval prevUser=if(EventType="Login",User,null()
 | filldown prevUser Organization OrgCode
  | where EventType="Security Breach" AND User=prevUser
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Sep 2017 14:56:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352491#M104333</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-09-21T14:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352492#M104334</link>
      <description>&lt;P&gt;The coalesce is filling out my SecurityBreach events also with the Static Value. &lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2017 15:15:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352492#M104334</guid>
      <dc:creator>anuremanan88</dc:creator>
      <dc:date>2017-09-21T15:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352493#M104335</link>
      <description>&lt;P&gt;I missed taking that into consideration. Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search which includes events from both EventTypes
   | table _time User EventType Organization OrgCode
   | eval Organization=if(EventType="Login" AND isnull(Organization),"YourStaticValue", Organization)
   | eval OrgCode=if(EventType="Login" AND isnull(OrgCode),"YourStaticValue", OrgCode)
   | sort 0 -User, _time
   | eval prevUser=if(EventType="Login",User,null())
  | filldown prevUser Organization OrgCode
  | where EventType="Security Breach" AND User=prevUser
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Sep 2017 15:19:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352493#M104335</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-09-21T15:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352494#M104336</link>
      <description>&lt;P&gt;Thank You so much. We were testing this for a week. Now we found another issue. If an user logins as 8:00 AM does some security breach events between 8:05 AM to 8:15 AM and when apply a time filter from 8:01 AM to 8:15 AM we will are not getting the correct data.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2017 18:10:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352494#M104336</guid>
      <dc:creator>anuremanan88</dc:creator>
      <dc:date>2017-10-04T18:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Help with writing a join command that joins a security breach to the previous login</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352495#M104337</link>
      <description>&lt;P&gt;Or in other ways. If I want to search login alone 1 Hrs earlier than the time i selected for security breach events, how can i do it.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2017 18:14:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-writing-a-join-command-that-joins-a-security-breach-to/m-p/352495#M104337</guid>
      <dc:creator>anuremanan88</dc:creator>
      <dc:date>2017-10-04T18:14:43Z</dc:date>
    </item>
  </channel>
</rss>

