<?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: TERM and PREFIX cannot find string with two dashes in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679409#M232265</link>
    <description>&lt;P&gt;Affected are tstats/TERM/PREFIX and accelerated DM searches. This isn't limited to punycode domains; any domain with continuous hyphens may be affected. Consider usernames, user-agents, URL paths and queries, file names, and file paths – the range of affected fields is extensive.&lt;/P&gt;&lt;P&gt;The implications extend to premium apps like Enterprise Security, heavily reliant on accelerated DMs. Virtually every source and sourcetype could be impacted, including commonly used ones like firewall, endpoint, windows, proxy, etc.&lt;/P&gt;&lt;P&gt;Here are a couple of examples to illustrate the issue:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Working&lt;/STRONG&gt; URL: &lt;A href="https://hp--community.force.com/" target="_new"&gt;https://hp--community.force.com&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Path: /tmp/folder--xyz/test-----123.txt, c:\Windows\Temp\test---abc\abc--123.dat&lt;/LI&gt;&lt;LI&gt;Username: admin--haha&lt;/LI&gt;&lt;LI&gt;User-Agent: Mozilla/5.0--findme&lt;/LI&gt;&lt;/OL&gt;</description>
    <pubDate>Sun, 03 Mar 2024 11:49:22 GMT</pubDate>
    <dc:creator>PavelP</dc:creator>
    <dc:date>2024-03-03T11:49:22Z</dc:date>
    <item>
      <title>TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679366#M232241</link>
      <description>&lt;P&gt;any ideas &lt;SPAN&gt;on TERM and PREFIX limitations with double dashes?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;cat /tmp/test.txt
abc//xyz
abc::xyz
abc==xyz
abc@@xyz
abc..xyz
abc--xyz
abc$$xyz
abc##xyz
abc%%xyz
abc\\xyz
abc__xyz&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;search abc--xyz # works
TERM(abc--xyz) # doesn't work
TERM(abc*) # works
| tstats count by PREFIX(abc) # doesn't work for abc--xyz&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Both TERM and PREFIX work with other minor segmenters like dots or underscores.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 09:33:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679366#M232241</guid>
      <dc:creator>PavelP</dc:creator>
      <dc:date>2024-03-02T09:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679375#M232245</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;That is interesting. Didn't have oportunity to test it but if it is so, it looks like a support case material.&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;See my other reply.&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 19:01:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679375#M232245</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-03-02T19:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679381#M232247</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/49552"&gt;@PavelP&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;This isn't an issue with TERM or PREFIX but with how Splunk indexes abc--xyz.&lt;/P&gt;&lt;P&gt;We can use walklex to list terms in our index:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;| walklex index=main type=term
| table term&lt;/LI-CODE&gt;&lt;P&gt;We'll find the following:&lt;/P&gt;&lt;P&gt;abc&lt;BR /&gt;abc##xyz&lt;BR /&gt;abc$$xyz&lt;BR /&gt;abc%%xyz&lt;BR /&gt;abc..xyz&lt;BR /&gt;abc//xyz&lt;BR /&gt;abc==xyz&lt;BR /&gt;abc@@xyz&lt;BR /&gt;abc\\xyz&lt;BR /&gt;abc__xyz&lt;BR /&gt;xyz&lt;/P&gt;&lt;P&gt;Note that abc--xyz is missing. Let's look at segmenters.conf. The default segmenter stanza is [indexing]:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;[indexing]
INTERMEDIATE_MAJORS = false
MAJOR = [ ] &amp;lt; &amp;gt; ( ) { } | ! ; , ' " * \n \r \s \t &amp;amp; ? + %21 %26 %2526 %3B %7C %20 %2B %3D -- %2520 %5D %5B %3A %0A %2C %28 %29
MINOR = / : = @ . - $ # % \\ _&lt;/LI-CODE&gt;&lt;P&gt;Note that -- is a major breaker. If we index abc-xyz with a single hyphen, we should find abc-xyz in the list of terms:&lt;/P&gt;&lt;P&gt;abc&lt;BR /&gt;abc##xyz&lt;BR /&gt;abc$$xyz&lt;BR /&gt;abc%%xyz&lt;BR /&gt;&lt;STRONG&gt;abc-xyz&lt;/STRONG&gt;&lt;BR /&gt;abc..xyz&lt;BR /&gt;abc//xyz&lt;BR /&gt;abc==xyz&lt;BR /&gt;abc@@xyz&lt;BR /&gt;abc\\xyz&lt;BR /&gt;abc__xyz&lt;BR /&gt;xyz&lt;/P&gt;&lt;P&gt;If walklex returns a missing merged_lexicon.lex message, we can force optimization of the bucket(s) to generate the data, e.g.:&lt;/P&gt;&lt;P&gt;$SPLUNK_HOME/bin/splunk-optimize-lex -d $SPLUNK_HOME/var/lib/splunk/main/db/hot_v1_0&lt;/P&gt;&lt;P&gt;We can override major breakers in a custom segmenters.conf stanza and reference the stanza in props.conf. Ensure the segmenter name is unique and remove -- from the MAJOR setting:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;# segmenters.conf

[tmp_test_txt]
INTERMEDIATE_MAJORS = false
MAJOR = [ ] &amp;lt; &amp;gt; ( ) { } | ! ; , ' " * \n \r \s \t &amp;amp; ? + %21 %26 %2526 %3B %7C %20 %2B %3D %2520 %5D %5B %3A %0A %2C %28 %29
MINOR = / : = @ . - $ # % \\ _

# props.conf

[source::///tmp/test.txt]
SEGMENTATION = tmp_test_txt&lt;/LI-CODE&gt;&lt;P&gt;Deploy props.conf and segmenters.conf to both search heads and search peers (indexers).&lt;/P&gt;&lt;P&gt;With the new configuration in place, walklex should return abc--xyz in the list of terms:&lt;/P&gt;&lt;P&gt;abc&lt;BR /&gt;abc##xyz&lt;BR /&gt;abc$$xyz&lt;BR /&gt;abc%%xyz&lt;BR /&gt;abc--xyz&lt;BR /&gt;abc..xyz&lt;BR /&gt;abc//xyz&lt;BR /&gt;abc==xyz&lt;BR /&gt;abc@@xyz&lt;BR /&gt;abc\\xyz&lt;BR /&gt;abc__xyz&lt;BR /&gt;xyz&lt;/P&gt;&lt;P&gt;We can now use TERM and PREFIX as expected:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;| tstats values(PREFIX(abc--)) as vals where index=main TERM(abc--*) by PREFIX(abc--)&lt;/LI-CODE&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="50%"&gt;&lt;STRONG&gt;abc--&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="50%"&gt;&lt;STRONG&gt;vals&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%"&gt;xyz&lt;/TD&gt;&lt;TD width="50%"&gt;xyz&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As always, we should ask ourselves if changing the default behavior is both required and desired. Isolating the segmentation settings by source or sourcetype will help mitigate risk.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 18:12:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679381#M232247</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2024-03-02T18:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679382#M232248</link>
      <description>Nice explanation and nice way to get values to work with tstats!</description>
      <pubDate>Sat, 02 Mar 2024 18:29:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679382#M232248</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2024-03-02T18:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679383#M232249</link>
      <description>&lt;P&gt;Nice one. I even checked the specs for segmenters.conf and while I noticed the single dash as minor segmenter, I completely missed the double dash. (Though it is "hidden" relatively far in the default declaration and surounded by all those other entities).&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 19:00:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679383#M232249</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-03-02T19:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679385#M232251</link>
      <description>&lt;P&gt;Somewhere in Splunk history, there's a developer who did the&amp;nbsp;lexicographically correct thing knowing it would stymy future Splunkers. Let's raise a glass to the double oblique hyphen (thanks, Wikipedia)!&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 19:23:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679385#M232251</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2024-03-02T19:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679386#M232252</link>
      <description>&lt;P&gt;Double oblique hyphen is &lt;SPAN class=""&gt;U+2E17&lt;/SPAN&gt; and looks like this: &lt;SPAN&gt;⸗&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 20:34:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679386#M232252</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-03-02T20:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679387#M232253</link>
      <description>&lt;P&gt;It was just a Wikipedia joke: "In &lt;A title="Latin script" href="https://en.m.wikipedia.org/wiki/Latin_script" target="_blank" rel="noopener"&gt;Latin script&lt;/A&gt;, the double hyphen &lt;SPAN class=""&gt;⹀&lt;/SPAN&gt; is a &lt;A title="Punctuation" href="https://en.m.wikipedia.org/wiki/Punctuation" target="_blank" rel="noopener"&gt;punctuation mark&lt;/A&gt; that consists of two parallel &lt;A title="Hyphen" href="https://en.m.wikipedia.org/wiki/Hyphen" target="_blank" rel="noopener"&gt;hyphens&lt;/A&gt;. It was a development of the earlier &lt;SPAN class=""&gt;double oblique hyphen ...." I'm assuming an early developer analyzed a suitable corpus of log content and determined a double hyphen or long dash should be considered a major breaker.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 20:53:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679387#M232253</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2024-03-02T20:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679388#M232254</link>
      <description>&lt;P&gt;Well, double hyphen is really a poor-man's approximation of an em-dash or en-dash and I don't recall seeing them outside of TeX sources so I was pretty surprised to find it in segmenters.&lt;/P&gt;&lt;P&gt;Anyway, punctuation is not a part of the script. Many languages using latin script use (slightly) different punctuation systems and languages using different scripts (like cyryllic) use very similar punctuation &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;But we're drifting heavily off-topic.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 21:50:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679388#M232254</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-03-02T21:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679389#M232255</link>
      <description>&lt;P&gt;Hey folks, breaking news for the TERM/PREFIX enthusiasts! Brace yourselves – our TERM searches&amp;nbsp;cannot find punycode encoded domains!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;xn--bcher-kva.de&lt;/P&gt;&lt;P&gt;&lt;A href="https://en.m.wikipedia.org/wiki/Punycode" target="_blank"&gt;https://en.m.wikipedia.org/wiki/Punycode&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 22:02:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679389#M232255</guid>
      <dc:creator>PavelP</dc:creator>
      <dc:date>2024-03-02T22:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679392#M232256</link>
      <description>&lt;P&gt;Now that is a valid use case for modifying segmentation; however, the impact is wide-reaching. You may also want to look at setting INTERMEDIATE_MAJORS = true, although that could result in a significant indexing performance impact.&lt;/P&gt;&lt;P&gt;Which access log formats and source types do you most commonly use?&lt;/P&gt;</description>
      <pubDate>Sun, 03 Mar 2024 00:04:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679392#M232256</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2024-03-03T00:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679405#M232261</link>
      <description>&lt;P&gt;+1 on that. The impact is limited to where you use the custom segmenter (you set it for specific props stanza).&lt;/P&gt;</description>
      <pubDate>Sun, 03 Mar 2024 09:47:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679405#M232261</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-03-03T09:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679407#M232263</link>
      <description>&lt;P&gt;Affected are tstats/TERM/PREFIX searches and accelerated DM searches. I haven't conducted a thorough check yet, but it seems that searches on accelerated DM may overlook fields with double dashes. This isn't limited to punycode domains; any field value with continuous hyphens may be affected. Consider usernames, user-agents, URL paths and queries, file names, and file paths – the range of affected fields is extensive.&lt;/P&gt;&lt;P&gt;The implications extend to premium apps like Enterprise Security, heavily reliant on accelerated DMs. Virtually every source and sourcetype could be impacted, including commonly used ones like firewall, endpoint, windows, proxy, etc.&lt;/P&gt;&lt;P&gt;Here are a couple of examples to illustrate the issue:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Working&lt;/STRONG&gt; URL: &lt;A href="https://hp--community.force.com/" target="_new"&gt;https://hp--community.force.com&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Path: /tmp/back--door/test-----backdoor.txt, c:\Windows\Temp\back--door\test---backdoor.exe&lt;/LI&gt;&lt;LI&gt;Username: admin--backdoor&lt;/LI&gt;&lt;LI&gt;User-Agent: Mozilla/5.0--backdoor&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Sun, 03 Mar 2024 10:53:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679407#M232263</guid>
      <dc:creator>PavelP</dc:creator>
      <dc:date>2024-03-03T10:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679409#M232265</link>
      <description>&lt;P&gt;Affected are tstats/TERM/PREFIX and accelerated DM searches. This isn't limited to punycode domains; any domain with continuous hyphens may be affected. Consider usernames, user-agents, URL paths and queries, file names, and file paths – the range of affected fields is extensive.&lt;/P&gt;&lt;P&gt;The implications extend to premium apps like Enterprise Security, heavily reliant on accelerated DMs. Virtually every source and sourcetype could be impacted, including commonly used ones like firewall, endpoint, windows, proxy, etc.&lt;/P&gt;&lt;P&gt;Here are a couple of examples to illustrate the issue:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Working&lt;/STRONG&gt; URL: &lt;A href="https://hp--community.force.com/" target="_new"&gt;https://hp--community.force.com&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Path: /tmp/folder--xyz/test-----123.txt, c:\Windows\Temp\test---abc\abc--123.dat&lt;/LI&gt;&lt;LI&gt;Username: admin--haha&lt;/LI&gt;&lt;LI&gt;User-Agent: Mozilla/5.0--findme&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Sun, 03 Mar 2024 11:49:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679409#M232265</guid>
      <dc:creator>PavelP</dc:creator>
      <dc:date>2024-03-03T11:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679410#M232266</link>
      <description>&lt;P&gt;Affected are tstats/TERM/PREFIX and accelerated DM searches. This isn't limited to punycode domains; any value with continuous hyphens may be affected. Consider usernames, user-agents, URL paths and queries, file names, and file paths – the range of affected fields is extensive.&lt;/P&gt;&lt;P&gt;The implications extend to premium apps like Enterprise Security, heavily reliant on accelerated DMs. Virtually every source and sourcetype could be impacted, including commonly used ones like firewall, endpoint, windows, proxy, etc.&lt;/P&gt;&lt;P&gt;Here are a couple of examples to illustrate the issue:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Working&lt;/STRONG&gt; URL: hp--community.force.com&lt;/LI&gt;&lt;LI&gt;Path: /tmp/folder--xyz/test-----123.txt, c:\Windows\Temp\test---abc\abc--123.dat&lt;/LI&gt;&lt;LI&gt;Username: admin--haha&lt;/LI&gt;&lt;LI&gt;User-Agent: Mozilla/5.0--findme&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Sun, 03 Mar 2024 11:56:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679410#M232266</guid>
      <dc:creator>PavelP</dc:creator>
      <dc:date>2024-03-03T11:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679502#M232303</link>
      <description>&lt;P&gt;please consider upvote a new Splunk idea to get more attention: &lt;A href="https://ideas.splunk.com/ideas/EID-I-2226" target="_blank"&gt;https://ideas.splunk.com/ideas/EID-I-2226&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 18:01:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679502#M232303</guid>
      <dc:creator>PavelP</dc:creator>
      <dc:date>2024-03-04T18:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679517#M232306</link>
      <description>&lt;P&gt;A custom segmenter has merit in this case, but globally, folks will recommend tagging events with an appropriate add-on (or custom configuration) and using an accelerated Web or other data model to find matching URLs, hostnames, etc.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 20:22:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679517#M232306</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2024-03-04T20:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: TERM and PREFIX cannot find string with two dashes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679539#M232311</link>
      <description>&lt;P&gt;I missed your comment re: accelerated data models earlier. The field values should be available at search time, either from _raw or tsidx, and then stored in the summary index. Off the top of my head, I don't know if the segmenters impact INDEXED_EXTRACTIONS = w3c, but they shouldn't impact transforms-based indexed extractions or search-time field extractions from other source types.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 01:55:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/TERM-and-PREFIX-cannot-find-string-with-two-dashes/m-p/679539#M232311</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2024-03-05T01:55:21Z</dc:date>
    </item>
  </channel>
</rss>

