<?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: Mass Searching for multiple domains in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Mass-Searching-for-multiple-domains/m-p/468438#M140491</link>
    <description>&lt;P&gt;My suggestion would be to create either a lookup table with the bad domains or a macro. this way you can just add &lt;CODE&gt;[|inputlookup bad_domains.csv]&lt;/CODE&gt; to the search (for a lookup)&lt;/P&gt;

&lt;P&gt;The lookup will work best if the field is extracted in the logs (for instance, a domain field, in which the lookup table has a domain column). &lt;/P&gt;

&lt;P&gt;The macro would work if you're just doing keyword searches&lt;/P&gt;</description>
    <pubDate>Sat, 04 Apr 2020 01:14:11 GMT</pubDate>
    <dc:creator>cmerriman</dc:creator>
    <dc:date>2020-04-04T01:14:11Z</dc:date>
    <item>
      <title>Mass Searching for multiple domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mass-Searching-for-multiple-domains/m-p/468437#M140490</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;
&lt;P&gt;I am trying to search for multiple malware domains in our logs. I cant figure out how to add multiple domains in my search.&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;"Bad Domains:"&lt;/P&gt;
&lt;P&gt;go9ogle.com&lt;BR /&gt;265online.com&lt;BR /&gt;bofa2.com&lt;/P&gt;
&lt;P&gt;How could I search all of the above domains at the same time?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2020 21:38:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mass-Searching-for-multiple-domains/m-p/468437#M140490</guid>
      <dc:creator>alexman616</dc:creator>
      <dc:date>2020-06-08T21:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Searching for multiple domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mass-Searching-for-multiple-domains/m-p/468438#M140491</link>
      <description>&lt;P&gt;My suggestion would be to create either a lookup table with the bad domains or a macro. this way you can just add &lt;CODE&gt;[|inputlookup bad_domains.csv]&lt;/CODE&gt; to the search (for a lookup)&lt;/P&gt;

&lt;P&gt;The lookup will work best if the field is extracted in the logs (for instance, a domain field, in which the lookup table has a domain column). &lt;/P&gt;

&lt;P&gt;The macro would work if you're just doing keyword searches&lt;/P&gt;</description>
      <pubDate>Sat, 04 Apr 2020 01:14:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mass-Searching-for-multiple-domains/m-p/468438#M140491</guid>
      <dc:creator>cmerriman</dc:creator>
      <dc:date>2020-04-04T01:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Searching for multiple domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mass-Searching-for-multiple-domains/m-p/468439#M140492</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;"go9ogle.com" OR "265online.com" OR "bofa2.com"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;see: &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Search"&gt;https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Search&lt;/A&gt;&lt;BR /&gt;
and try &lt;A href="https://www.splunk.com/en_us/training/courses/splunk-fundamentals-1.html"&gt;https://www.splunk.com/en_us/training/courses/splunk-fundamentals-1.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Apr 2020 03:03:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mass-Searching-for-multiple-domains/m-p/468439#M140492</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-04-04T03:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Searching for multiple domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mass-Searching-for-multiple-domains/m-p/468440#M140493</link>
      <description>&lt;P&gt;Thank you so much, we are looking at a list of almost 100,000 bad domains that have come out of this covid situation. I plan to break them up by 1,000 or 10,000... depending what splunk can take. Do you have any recommendations?&lt;/P&gt;</description>
      <pubDate>Sat, 04 Apr 2020 03:40:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mass-Searching-for-multiple-domains/m-p/468440#M140493</guid>
      <dc:creator>alexman616</dc:creator>
      <dc:date>2020-04-04T03:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: Mass Searching for multiple domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mass-Searching-for-multiple-domains/m-p/468441#M140494</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;| makeresults
| eval domain=""
| append [| makeresults count=100000
| streamstats count as A
| eval domain="domain".A
| fields domain
| format]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Isn't it okay if you don't divide it?&lt;/P&gt;</description>
      <pubDate>Sat, 04 Apr 2020 03:56:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mass-Searching-for-multiple-domains/m-p/468441#M140494</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-04-04T03:56:42Z</dc:date>
    </item>
  </channel>
</rss>

