<?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 create a bulletin message to display to users in Splunk Web from a Python modular or scripted input? in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208885#M2780</link>
    <description>&lt;P&gt;Thanks jkat54 for responding, really appreciate your time.&lt;/P&gt;

&lt;P&gt;The scenario is slightly different in that this is a modular input that gets distributed as an app from Splunk Base. The script that is the modular input doesnt know about any locally provisioned credentials and needs to rely on what was passed to it at the point is was invoked by splunkd.&lt;/P&gt;

&lt;P&gt;When splunkd invokes a modular input is provides via STDIN configuration items, one of which is .&lt;/P&gt;

&lt;P&gt;If I try an use the provided  value as an authentication token to perform any REST action it fails with an authorization warning. Just for testing, if I authenticate with a locally provisioned user, capture the session token and use this token to perform the same REST action it works.&lt;/P&gt;

&lt;P&gt;If anyone has any experience of using the splunkd provided  to perform actions that would be great.&lt;/P&gt;</description>
    <pubDate>Mon, 04 Jan 2016 18:58:46 GMT</pubDate>
    <dc:creator>hirsts</dc:creator>
    <dc:date>2016-01-04T18:58:46Z</dc:date>
    <item>
      <title>How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208880#M2775</link>
      <description>&lt;P&gt;Does anyone know the best way to create bulletin messages to be presented to the user in the UI from a python modular or scripted input ?&lt;/P&gt;

&lt;P&gt;I've found the "curl" based solutions to write directly to the REST endpoint however this is not a platform agnostic solution and calling an external method could expose the admin password.&lt;/P&gt;

&lt;P&gt;Any ideas would be appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Dec 2015 04:13:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208880#M2775</guid>
      <dc:creator>hirsts</dc:creator>
      <dc:date>2015-12-28T04:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208881#M2776</link>
      <description>&lt;P&gt;How else might you authenticate without exposing a username/pass?&lt;/P&gt;

&lt;P&gt;Why not make a user that isnt Admin which has permission to curl the endpoint?&lt;/P&gt;

&lt;P&gt;Why not store the password in encrypted form?  SSL is used for calling the rest endpoints... you could use your own certificate for splunkd to be extra secure.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Dec 2015 15:04:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208881#M2776</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2015-12-28T15:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208882#M2777</link>
      <description>&lt;P&gt;Thanks for the ideas and ill build something using this method.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jan 2016 01:04:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208882#M2777</guid>
      <dc:creator>hirsts</dc:creator>
      <dc:date>2016-01-02T01:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208883#M2778</link>
      <description>&lt;P&gt;Ok so i've done lots more digging on this and ill attempt to articulate the issue and it would seem that the "correct" way is to have the modular input script use the auth token provided when its called.&lt;/P&gt;

&lt;P&gt;From a modular input i'm trying to get the modular input script to update &lt;A href="https://localhost:8089/services/messages/mymessage"&gt;https://localhost:8089/services/messages/mymessage&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;If I try to update endpoint with the session_key value provided by splunkd via STDIN when the modular input was called, all I get a a server response as follows:&lt;/P&gt;

&lt;P&gt;Server response: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;msg type="WARN"&amp;gt;call not properly authenticated&amp;lt;/msg&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If I authenticate first with a new user that has the role "splunk-system-role" or as admin and use the session key from this login it works fine.&lt;/P&gt;

&lt;P&gt;The documentation quotes:&lt;BR /&gt;
"&lt;SESSION_KEY&gt;  The session key for the session with splunkd. The session key can be used in any REST session with the local instance of splunkd."&lt;/SESSION_KEY&gt;&lt;/P&gt;

&lt;P&gt;Does anyone know why the  provided when the modular input is called wouldn't work for /services/messages updates ?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jan 2016 04:28:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208883#M2778</guid>
      <dc:creator>hirsts</dc:creator>
      <dc:date>2016-01-04T04:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208884#M2779</link>
      <description>&lt;P&gt;To answer your question:&lt;/P&gt;

&lt;P&gt;You can use requests which comes with splunk's local python27:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;import requests
uri = "https://localhost:8089/services/messages/new"
username = "admin"
password = "password"
r = requests.post(uri, auth=(username, password), data={'name':'mySearch','value':'Hey ALL!','severity':'warn'}, verify=False)
page = r.text.encode('utf-8','ignore')
print page
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;A href="http://docs.python-requests.org/en/latest/"&gt;http://docs.python-requests.org/en/latest/&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://pypi.python.org/pypi/requests"&gt;https://pypi.python.org/pypi/requests&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jan 2016 18:10:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208884#M2779</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2016-01-04T18:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208885#M2780</link>
      <description>&lt;P&gt;Thanks jkat54 for responding, really appreciate your time.&lt;/P&gt;

&lt;P&gt;The scenario is slightly different in that this is a modular input that gets distributed as an app from Splunk Base. The script that is the modular input doesnt know about any locally provisioned credentials and needs to rely on what was passed to it at the point is was invoked by splunkd.&lt;/P&gt;

&lt;P&gt;When splunkd invokes a modular input is provides via STDIN configuration items, one of which is .&lt;/P&gt;

&lt;P&gt;If I try an use the provided  value as an authentication token to perform any REST action it fails with an authorization warning. Just for testing, if I authenticate with a locally provisioned user, capture the session token and use this token to perform the same REST action it works.&lt;/P&gt;

&lt;P&gt;If anyone has any experience of using the splunkd provided  to perform actions that would be great.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jan 2016 18:58:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208885#M2780</guid>
      <dc:creator>hirsts</dc:creator>
      <dc:date>2016-01-04T18:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208886#M2781</link>
      <description>&lt;P&gt;I'll try it with py mod inputs but above would work as scripted input if hardcoding pass was option.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jan 2016 19:22:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208886#M2781</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2016-01-04T19:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208887#M2782</link>
      <description>&lt;P&gt;What about this approach?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;import requests 
import cherrypy

def createMessage(sessionkey, title="Default Title",message="Default Message", severity="warn"):
 uri = "https://localhost:8089/services/messages/new"
 headers = {'Authorization':''}
 headers['Authorization'] = 'Splunk ' + sessionkey
 data ={'name':title,'value':message,'severity':severity}
 r = requests.post(uri, headers=headers, data=data, verify=False)
 if r.status_code&amp;lt;300:
  return True
 else:
  return r.status_code

sessionkey= cherrypy.session['sessionKey']
createMessage(sessionkey, title="AWESOME Title",message="AWESEOME Message", severity="warn")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Jan 2016 21:04:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208887#M2782</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2016-01-04T21:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208888#M2783</link>
      <description>&lt;P&gt;Can you rewrite your original question providing more details?&lt;/P&gt;

&lt;P&gt;Originally i thought you wanted a scripted input that would create a message but you didnt want to use curl because it would expose the password in curl logs, etc.  So my solution was to use requests, salt, etc.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jan 2016 21:47:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208888#M2783</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2016-01-04T21:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208889#M2784</link>
      <description>&lt;P&gt;I think the above answers your question... you need to take that session key, and append it to a header called authorization, and then make the value equal 'Spunk ' + sessionKey, then use requests.post to  post the request with the header and data, and if ssl is bad, verify = False.&lt;/P&gt;

&lt;P&gt;Here's what my session key looks like when the above works:&lt;BR /&gt;
'xXZNyBITUTA9nQDGv0OrBZSuc4mRF3pHtFlt80ie9FSB_m7uAsA6W0V1uXchpuuvoe_BGEUG0ILiz_6bAekoyl4DGlKs9KZTE^F'&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:18:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208889#M2784</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2020-09-29T08:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208890#M2785</link>
      <description>&lt;P&gt;are you passing an "authorization" header?&lt;/P&gt;

&lt;P&gt;Please share your "update [to the] endpoint".  Somewhere in the routine it should create a header.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;headers['authorization'] = 'Splunk ' + sessionkey&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;This makes auth header look something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Splunk xXZNyBITUTA9nQDGv0OrBZSuc4mRF3pHtFlt80ie9FSB_m7uAsA6W0V1uXchpuuvoe_BGEUG0ILiz_6bAekoyl4DGlKs9KZTE^F
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Jan 2016 03:35:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208890#M2785</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2016-01-13T03:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208891#M2786</link>
      <description>&lt;P&gt;I've tried this within a custom search command called &lt;CODE&gt;motd&lt;/CODE&gt; linked to motd.py and for the life of me I cant get it to work.  The script executes fine even when I use the session key from cherrypy or splunk.intersplunk.  However, nothing ever shows up... then i swap over to a script like the above where user/pass is "hardcoded" and it works just fine.  I'm using 6.3.2 and python&lt;/P&gt;

&lt;P&gt;Here's where i left the code last:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;import cherrypy
import requests
import splunk.Intersplunk as si
import splunk.mining.dcutils as dcu

logger = dcu.getLogger()

help = """------------------------------------------------------------------------------------
motd title message severity
------------------------------------------------------------------------------------"""

contexthelp = """------------------------------------------------------------------------------------
motd creates a bulletin message
------------------------------------------------------------------------------------"""

def motd(title="default title",message="default message",sev="info"):
 try:
  sessionKey = cherrypy.session.get('sessionKey')
  uri = "https://localhost:8089/services/messages/new"
  headers = {'Authorization':'Splunk '}
  headers['Authorization'] =  str(headers['Authorization']) + sessionKey
  data ={'name':str(title),'value':str(message),'severity':str(sev)}
  r = requests.post(uri, headers=headers, data=data, verify=False)
  if r.status_code&amp;lt;300:
   result = {'motd': 'true'}
   si.outputResults(result)
  else:
   logger.error(r.status_code)
   si.outputResults(result)
 except Exception, e:
  logger.exception(e)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Jan 2016 16:54:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208891#M2786</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2016-01-22T16:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208892#M2787</link>
      <description>&lt;P&gt;Ok, I was able to get it working... but not using the session from cherrypy.  No clue why I cant get that session.  So the example below hardcodes admin user/pass.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;import sys
import re
import json
import requests
import splunk.Intersplunk 
import splunk.mining.dcutils as dcu

logger = dcu.getLogger()

help = """------------------------------------------------------------------------------------
motd title="title" message="message" severity="{warn|info|error}"
------------------------------------------------------------------------------------"""

contexthelp = """------------------------------------------------------------------------------------
motd creates a bulletin message
------------------------------------------------------------------------------------"""
def getSession(username,password):
 uri = "https://localhost:8089/services/auth/login"
 r = requests.get(uri, data={'username':username,'password':password}, verify=False)
 sessionkey = re.sub('"',"",json.dumps(re.sub('&amp;lt;response&amp;gt;\n\s+&amp;lt;sessionKey&amp;gt;|&amp;lt;\/sessionKey&amp;gt;\n&amp;lt;\/response&amp;gt;\n',"",r.text)))
 return sessionkey

def motd(results,sessionKey, title="default title",message="default message",severity="info"):
 try:
  uri = "https://localhost:8089/services/messages/new"
  #headers = {'Authorization':'Splunk '}
  headers = {'Authorization':''}
  headers['Authorization'] = 'Splunk ' + sessionKey
  data = {'name':title,'value':message,'severity':severity}
  logger.info(data)
  r = requests.post(uri, headers=headers, data=data, verify=False)
  if r.status_code&amp;lt;300:
   logger.info("Status Code: " + str(r.status_code))
   for result in results:
    result["motd"] = "true"
   return results
  else:
   logger.error("Status Code: " + str(r.status_code))
   for result in results:
    result["motd"] = str(r.status_code) 
   return results
 except Exception, e:
  logger.exception(e)
  logger.exception("sessionKey: " + sessionKey)
  for result in results:
   result["motd"] = e
  return results

#get the arguments
(isgetinfo, sys.argv) = splunk.Intersplunk.isGetInfo(sys.argv)
for a in sys.argv[1:]:
 if a.startswith("title="):
  title = re.sub("^.*=","",a)
  logger.info("Title: " + title)
 if a.startswith("message="):
  message = re.sub("^.*=","",a)
  logger.info("Message: " + message)
 if a.startswith("severity=warn") or a.startswith("severity=error") or a.startswith("severity=info"):
  severity = re.sub("^.*=","",a)
  logger.info("Severity: " + severity)
 elif not a.startswith("severity=warn") or not a.startswith("severity=error") or not a.startswith("severity=info"):
  severity = "info"
  logger.warn("Severity not provided, defaulting to " + severity)
 elif isgetinfo:
   splunk.Intersplunk.parseError("Invalid argument '%s'" % a)

# get the previous search results
results,dummy,settings = splunk.Intersplunk.getOrganizedResults()

#create a session key using user/pass
sessionKey = getSession("admin","password")
logger.info(sessionKey)

#set the message of the day using the arguments, all of them are optional
motd = motd(results,sessionKey,title,message,severity)

# return the previous search results
splunk.Intersplunk.outputResults(motd)


commands.conf:
[motd]
filename = motd.py

Authorize.conf:
[capability::run_script_motd]

[role_admin]
run_script_motd = enabled
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Execution&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;* | motd __EXECUTE__ title=te555st message=testdasdfasdf3e4r severity=error&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Jan 2016 06:12:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208892#M2787</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2016-01-23T06:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208893#M2788</link>
      <description>&lt;P&gt;Hi, I know this is late but I just wanted to share how I solved this myself. I used requests as jkat54 suggested, but used a session key rather than a hardcoded username and password.  Because this is a modular input, the session key is passed in as part of the config XML - this can be seen here: &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/AdvancedDev/ModInputsScripts"&gt;http://docs.splunk.com/Documentation/Splunk/latest/AdvancedDev/ModInputsScripts&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;So I modified the part of my input which parsed the config out of that XML and added a section that pulls the session key out. From there you can just add it as a header to your request: &lt;/P&gt;

&lt;P&gt;r = requests.post(uri, headers={'Authorization': 'Splunk %s' % sessionKey}, data={'name':'mySearch','value':'Hey ALL!','severity':'warn'}, verify=False)&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 14:24:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/208893#M2788</guid>
      <dc:creator>cschmidt_hurric</dc:creator>
      <dc:date>2016-04-21T14:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a bulletin message to display to users in Splunk Web from a Python modular or scripted input?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/527424#M2789</link>
      <description>&lt;P&gt;All-around amazing guy&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/199197"&gt;@jkat54&lt;/a&gt;&amp;nbsp;solved this with the `motd` command in his tools app here:&lt;BR /&gt;&lt;A href="https://splunkbase.splunk.com/app/3265/#/details" target="_blank"&gt;https://splunkbase.splunk.com/app/3265/#/details&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2020 17:10:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-bulletin-message-to-display-to-users-in-Splunk/m-p/527424#M2789</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2020-10-31T17:10:56Z</dc:date>
    </item>
  </channel>
</rss>

