<?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: How to process BOTS data? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-process-BOTS-data/m-p/755978#M243039</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/314438"&gt;@zakaria1996-cyb&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This looks like the same question asked by another user earlier this week, please find the answer below.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.splunk.com/t5/Splunk-Search/o/m-p/755834" target="_blank"&gt;https://community.splunk.com/t5/Splunk-Search/o/m-p/755834&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Find the top 10 most requested domains in DNS traffic&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;index=yourIndex sourcetype=stream:dns | top 10 query&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;(This assumes the query field contains the DNS query being made - its been a while since Ive used this dataset!)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Identify which day in the dataset has the highest HTTP traffic volume&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;index=yourIndex sourcetype=stream:http | stats sum(bytes) as http_volume by date_mday | sort - http_volume | head 1&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;(This assumes the HTTP events contain a field named bytes&amp;nbsp;with the traffic size. date_mday&amp;nbsp;is the day of the month. If you need the full date you could use:&lt;/EM&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=yourIndex sourcetype=stream:http | bin span=1d _time | stats sum(bytes) as http_volume by _time | sort - http_volume | head 1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3. Create a line chart showing data volume over time&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I dont know which sourcetype this is in but you could do something like:&lt;/EM&gt;&lt;/P&gt;&lt;PRE&gt;index=yourIndex | timechart span=1h sum(bytes) AS TotalDataVolume&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
    <pubDate>Sat, 29 Nov 2025 16:49:05 GMT</pubDate>
    <dc:creator>livehybrid</dc:creator>
    <dc:date>2025-11-29T16:49:05Z</dc:date>
    <item>
      <title>How to process BOTS data?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-process-BOTS-data/m-p/755841#M243005</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm working with the botsv1 attack-only dataset and I need some guidance on how to approach a few SPL tasks. The dataset is available here:&lt;BR /&gt;&lt;A class="" href="https://s3.amazonaws.com/botsdataset/botsv1/botsv1-attack-only.tgz" target="_new" rel="noopener"&gt;https://s3.amazonaws.com/botsdataset/botsv1/botsv1-attack-only.tgz&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I want to learn how to do the following:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Find the 10 most requested domains in the DNS traffic.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Identify which calendar day in the dataset has the highest HTTP traffic volume.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Create a line chart that shows data volume over time.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I'm mainly looking for advice on how to structure the searches and how to approach the analysis step-by-step.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2025 19:20:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-process-BOTS-data/m-p/755841#M243005</guid>
      <dc:creator>zakaria1996-cyb</dc:creator>
      <dc:date>2025-11-25T19:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to process BOTS data?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-process-BOTS-data/m-p/755978#M243039</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/314438"&gt;@zakaria1996-cyb&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This looks like the same question asked by another user earlier this week, please find the answer below.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.splunk.com/t5/Splunk-Search/o/m-p/755834" target="_blank"&gt;https://community.splunk.com/t5/Splunk-Search/o/m-p/755834&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Find the top 10 most requested domains in DNS traffic&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;index=yourIndex sourcetype=stream:dns | top 10 query&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;(This assumes the query field contains the DNS query being made - its been a while since Ive used this dataset!)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Identify which day in the dataset has the highest HTTP traffic volume&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;index=yourIndex sourcetype=stream:http | stats sum(bytes) as http_volume by date_mday | sort - http_volume | head 1&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;(This assumes the HTTP events contain a field named bytes&amp;nbsp;with the traffic size. date_mday&amp;nbsp;is the day of the month. If you need the full date you could use:&lt;/EM&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=yourIndex sourcetype=stream:http | bin span=1d _time | stats sum(bytes) as http_volume by _time | sort - http_volume | head 1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3. Create a line chart showing data volume over time&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I dont know which sourcetype this is in but you could do something like:&lt;/EM&gt;&lt;/P&gt;&lt;PRE&gt;index=yourIndex | timechart span=1h sum(bytes) AS TotalDataVolume&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Sat, 29 Nov 2025 16:49:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-process-BOTS-data/m-p/755978#M243039</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-11-29T16:49:05Z</dc:date>
    </item>
  </channel>
</rss>

