<?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: Splunk Form in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414896#M27280</link>
    <description>&lt;P&gt;Be sure to click &lt;CODE&gt;Accept&lt;/CODE&gt; to close the question, @alexvarghese98!&lt;/P&gt;</description>
    <pubDate>Sun, 01 Jul 2018 02:41:24 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2018-07-01T02:41:24Z</dc:date>
    <item>
      <title>Splunk Form</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414891#M27275</link>
      <description>&lt;P&gt;Hi Splunk Community,&lt;/P&gt;

&lt;P&gt;I have been working with Splunk for quite a while and recently wanted to create my own Splunk form using XML. A form that I am currently attempting to create is for a user to input multiple source IP addresses (ex. 10.1.1.1.1, 10.2.2.2.2,...) and Splunk would display all of the user's information including their full name, phone number, and email address from the source IP addresses that were inputted into the form. For example, if I type in 10.1.1.1.1,10.2.2.2.2 then Splunk would display the full name, phone number, and email addresses of those two source IP addresses. This is what I have so far:&lt;/P&gt;

&lt;P&gt;Splunk Phishing Email Form: &lt;BR /&gt;
A simple XML form that displays the user's information once the Source IP address is inputted. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;input type= "text" token="Source_IP"&amp;gt;
&amp;lt;label&amp;gt;Enter a Source IP Address &amp;lt;/label&amp;gt;
&amp;lt;/input&amp;gt;

&amp;lt;row&amp;gt;
&amp;lt;panel&amp;gt;
&amp;lt;search&amp;gt;
    &amp;lt;query&amp;gt;
        index="wineventlogs" user!= "*$"
        [ eval src_ip = "Source_IP" | makemv src_ip delim="," | mvexpand src_ip | fields src_ip]
        | dedup user | table user, user_nick, user_phone, user_email 
    &amp;lt;/query&amp;gt;
&amp;lt;/search&amp;gt;
&amp;lt;/panel&amp;gt;
&amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I cannot test this into Splunk because for some reason I am not able to access it at home. I would very much appreciate it if anybody would tell me if the XML code is right. If not, could you please tell what is wrong with it and how I could fix it. Thank you!&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jun 2018 13:09:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414891#M27275</guid>
      <dc:creator>alexvarghese98</dc:creator>
      <dc:date>2018-06-30T13:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Form</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414892#M27276</link>
      <description>&lt;P&gt;You need &lt;CODE&gt;&amp;lt;form&amp;gt;&lt;/CODE&gt; and &lt;CODE&gt;&amp;lt;/form&amp;gt;&lt;/CODE&gt; elements at the beginning and end, respectively.&lt;/P&gt;

&lt;P&gt;Splunk is free so you can install the software on your local machine for development testing.&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jun 2018 19:03:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414892#M27276</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2018-06-30T19:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Form</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414893#M27277</link>
      <description>&lt;P&gt;Hello, &lt;/P&gt;

&lt;P&gt;Thanks for the reply. I actually had added the form and fieldset tags but I don't know why it didn't appear in my sample code. I tried to login into Splunk at home and for some reason it is informing me that my license was expired and that I have to login as an administrator.I believe that the administrator's credentials are admin, changeme right? If so, I wasn't able to login with those credentials.&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jun 2018 19:54:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414893#M27277</guid>
      <dc:creator>alexvarghese98</dc:creator>
      <dc:date>2018-06-30T19:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Form</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414894#M27278</link>
      <description>&lt;P&gt;Yes, those are the default credentials.  You may have changed the password the first time you logged in, though.&lt;BR /&gt;
If you can't remember the new password, you can revert to the default by renaming the $SPLUNK_HOME/etc/passwd file and restarting Splunk.&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jun 2018 20:16:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414894#M27278</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2018-06-30T20:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Form</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414895#M27279</link>
      <description>&lt;P&gt;Thank you so much and have a great day!&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jun 2018 20:23:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414895#M27279</guid>
      <dc:creator>alexvarghese98</dc:creator>
      <dc:date>2018-06-30T20:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Form</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414896#M27280</link>
      <description>&lt;P&gt;Be sure to click &lt;CODE&gt;Accept&lt;/CODE&gt; to close the question, @alexvarghese98!&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jul 2018 02:41:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Form/m-p/414896#M27280</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2018-07-01T02:41:24Z</dc:date>
    </item>
  </channel>
</rss>

