<?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 Suggestions for Tenable .csv field extraction in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Suggestions-for-Tenable-csv-field-extraction/m-p/605695#M210633</link>
    <description>&lt;P&gt;Within the tenable:sc:vuln sourcetype there is a particular field "PluginText" that has a value for hardware serial numbers. Overall I'm looking for any source type that provides that data, but extracting "SerialNumber" as a field from "PluginText" is frustrating. Any advice would be appreciated.&lt;/P&gt;</description>
    <pubDate>Mon, 18 Jul 2022 13:55:42 GMT</pubDate>
    <dc:creator>Minasdad</dc:creator>
    <dc:date>2022-07-18T13:55:42Z</dc:date>
    <item>
      <title>Suggestions for Tenable .csv field extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Suggestions-for-Tenable-csv-field-extraction/m-p/605695#M210633</link>
      <description>&lt;P&gt;Within the tenable:sc:vuln sourcetype there is a particular field "PluginText" that has a value for hardware serial numbers. Overall I'm looking for any source type that provides that data, but extracting "SerialNumber" as a field from "PluginText" is frustrating. Any advice would be appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2022 13:55:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Suggestions-for-Tenable-csv-field-extraction/m-p/605695#M210633</guid>
      <dc:creator>Minasdad</dc:creator>
      <dc:date>2022-07-18T13:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Tenable .csv field extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Suggestions-for-Tenable-csv-field-extraction/m-p/605901#M210698</link>
      <description>&lt;P&gt;Pro tip:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Do not use deeply vertical/industry specific/application specific terms in title.&lt;/LI&gt;&lt;LI&gt;When using such specific sources, illustrate sample data (sanitize as necessary). &amp;nbsp;This is a Splunk board, most people will not know what&amp;nbsp;&lt;SPAN&gt;tenable:sc:vuln look like. (Source type also has no general meaning outside that particular application.)&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Sun, 17 Jul 2022 23:18:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Suggestions-for-Tenable-csv-field-extraction/m-p/605901#M210698</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2022-07-17T23:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: Suggestions for Tenable .csv field extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Suggestions-for-Tenable-csv-field-extraction/m-p/606022#M210731</link>
      <description>&lt;P&gt;Sample Data:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;pluginText&lt;/SPAN&gt;:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;lt;plugin_output&amp;gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Computer Manufacturer : XXX&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Computer SerialNumber : VMware- XXX&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Computer Type : Other Computer &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;lt;/plugin_output&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wish to extract only the Computer Serial Number Field.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2022 17:56:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Suggestions-for-Tenable-csv-field-extraction/m-p/606022#M210731</guid>
      <dc:creator>Minasdad</dc:creator>
      <dc:date>2022-07-18T17:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Suggestions for Tenable .csv field extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Suggestions-for-Tenable-csv-field-extraction/m-p/606026#M210735</link>
      <description>&lt;P&gt;Can you explain the frustration you had when trying to extract? &amp;nbsp;Assuming that pluginText is already extracted into a field, you can do something like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| spath input=pluginText ``` this gives you a field plugin_output ```
| rex field=plugin_output "Computer SerialNumber: (?&amp;lt;serialNumber&amp;gt;.+)"&lt;/LI-CODE&gt;&lt;P&gt;Alternatively, extract all key-value pairs from plugin_output using&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| spath input=pluginText ``` this gives you a field plugin_output ```
| rename _raw AS saved_raw, plugin_output AS _raw
| kv kvdelim=" : "
| rename saved_raw as _raw&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2022 18:07:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Suggestions-for-Tenable-csv-field-extraction/m-p/606026#M210735</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2022-07-18T18:07:40Z</dc:date>
    </item>
  </channel>
</rss>

