<?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 Convert Regex to Detect Internal Domains in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749282#M242122</link>
    <description>&lt;P&gt;This may not be the best place to ask given my issue isn't&amp;nbsp;&lt;EM&gt;technically&amp;nbsp;&lt;/EM&gt;&lt;STRONG&gt;Splunk&lt;/STRONG&gt; related, but hopefully I can get some help from people smarter than me anyway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(?i)(?P&amp;lt;scheme&amp;gt;(?:http|ftp|hxxp)s?(?:://|-3A__|%3A%2F%2F))?(?:%[\da-f][\da-f])?(?P&amp;lt;domain&amp;gt;(?:[\p{L}\d\-–]+(?:\.|\[\.\]))+[\p{L}]{2,})(@|%40)?(?:\b| |[[:punct:]]|$)&lt;/LI-CODE&gt;&lt;P&gt;The above regex is a template I'm working from(lol, I'm not nearly good enough to write this). While it's not&amp;nbsp;&lt;EM&gt;too&lt;/EM&gt; hard to read and see how it works, in a nut shell, it matches on the domain of a URL and nothing else. It does this by first looking for the&amp;nbsp;&lt;EM&gt;optional&lt;/EM&gt; beginning 'https://' and storing that in the 'scheme' group. Following that, it parses the following domain.&amp;nbsp; For example, the URL '&lt;A href="https://community.splunk.com/t5/forums/postpage/board-id/splunk-search'" target="_blank"&gt;https://community.splunk.com/t5/forums/postpage/board-id/splunk-search'&lt;/A&gt;&amp;nbsp;would match 'community.splunk.com'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My issue is that the way it looks for domains following the 'scheme' group requires it use a TLD(.com, .net, etc). Unfortunately, internal services used by my company don't use a TLD, and this causes the regex not to catch them. I need to change this so it&amp;nbsp;&lt;EM&gt;can&lt;/EM&gt; do this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to modify the regex expression above to detect on URLs like: '&lt;A href="https://mysite/resources/rules/123456" target="_blank"&gt;https://mysite/resources/rules/123456&lt;/A&gt;' wherein the domain would be 'mysite'. I've attempted to do so, but with my limited understanding of how regex really works, my attempts lead to too many matches as shown below.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(?i)(?P&amp;lt;scheme&amp;gt;(?:http|ftp|hxxp)s?(?::\/\/|-3A__|%3A%2F%2F))?(?:%[\da-f][\da-f])?(?P&amp;lt;domain&amp;gt;((?:[\p{L}\d\-–]+(?:\.|\[\.\]))+)?[\p{L}]{2,})(@|%40)?(?:\b| |[[:punct:]]|$)&lt;/LI-CODE&gt;&lt;P&gt;I tried to throw in an extra non-capturing group within the named 'domain' ground and make the entire first half of the 'domain' group optional, but it leads to matches beyond the domain.&lt;BR /&gt;&lt;BR /&gt;Thank you to whomever may be able to assist. This doesn't&amp;nbsp;&lt;EM&gt;feel&amp;nbsp;&lt;/EM&gt;like it should be such a difficult thing, but it's been vexing me for hours.&lt;/P&gt;</description>
    <pubDate>Sun, 06 Jul 2025 05:19:53 GMT</pubDate>
    <dc:creator>dtaylor</dc:creator>
    <dc:date>2025-07-06T05:19:53Z</dc:date>
    <item>
      <title>Convert Regex to Detect Internal Domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749282#M242122</link>
      <description>&lt;P&gt;This may not be the best place to ask given my issue isn't&amp;nbsp;&lt;EM&gt;technically&amp;nbsp;&lt;/EM&gt;&lt;STRONG&gt;Splunk&lt;/STRONG&gt; related, but hopefully I can get some help from people smarter than me anyway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(?i)(?P&amp;lt;scheme&amp;gt;(?:http|ftp|hxxp)s?(?:://|-3A__|%3A%2F%2F))?(?:%[\da-f][\da-f])?(?P&amp;lt;domain&amp;gt;(?:[\p{L}\d\-–]+(?:\.|\[\.\]))+[\p{L}]{2,})(@|%40)?(?:\b| |[[:punct:]]|$)&lt;/LI-CODE&gt;&lt;P&gt;The above regex is a template I'm working from(lol, I'm not nearly good enough to write this). While it's not&amp;nbsp;&lt;EM&gt;too&lt;/EM&gt; hard to read and see how it works, in a nut shell, it matches on the domain of a URL and nothing else. It does this by first looking for the&amp;nbsp;&lt;EM&gt;optional&lt;/EM&gt; beginning 'https://' and storing that in the 'scheme' group. Following that, it parses the following domain.&amp;nbsp; For example, the URL '&lt;A href="https://community.splunk.com/t5/forums/postpage/board-id/splunk-search'" target="_blank"&gt;https://community.splunk.com/t5/forums/postpage/board-id/splunk-search'&lt;/A&gt;&amp;nbsp;would match 'community.splunk.com'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My issue is that the way it looks for domains following the 'scheme' group requires it use a TLD(.com, .net, etc). Unfortunately, internal services used by my company don't use a TLD, and this causes the regex not to catch them. I need to change this so it&amp;nbsp;&lt;EM&gt;can&lt;/EM&gt; do this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to modify the regex expression above to detect on URLs like: '&lt;A href="https://mysite/resources/rules/123456" target="_blank"&gt;https://mysite/resources/rules/123456&lt;/A&gt;' wherein the domain would be 'mysite'. I've attempted to do so, but with my limited understanding of how regex really works, my attempts lead to too many matches as shown below.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(?i)(?P&amp;lt;scheme&amp;gt;(?:http|ftp|hxxp)s?(?::\/\/|-3A__|%3A%2F%2F))?(?:%[\da-f][\da-f])?(?P&amp;lt;domain&amp;gt;((?:[\p{L}\d\-–]+(?:\.|\[\.\]))+)?[\p{L}]{2,})(@|%40)?(?:\b| |[[:punct:]]|$)&lt;/LI-CODE&gt;&lt;P&gt;I tried to throw in an extra non-capturing group within the named 'domain' ground and make the entire first half of the 'domain' group optional, but it leads to matches beyond the domain.&lt;BR /&gt;&lt;BR /&gt;Thank you to whomever may be able to assist. This doesn't&amp;nbsp;&lt;EM&gt;feel&amp;nbsp;&lt;/EM&gt;like it should be such a difficult thing, but it's been vexing me for hours.&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jul 2025 05:19:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749282#M242122</guid>
      <dc:creator>dtaylor</dc:creator>
      <dc:date>2025-07-06T05:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Regex to Detect Internal Domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749285#M242123</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/274960"&gt;@dtaylor&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could try with the following:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(?i)(?P&amp;lt;scheme&amp;gt;(?:http|ftp|hxxp)s?(?::\/\/|-3A__|%3A%2F%2F))?(?:%[\da-f][\da-f])?(?P&amp;lt;domain&amp;gt;[\p{L}\d\–]+(?:\.[\p{L}\d\–]+)*)(@|%40)?(?:\b| |[[:punct:]]|$)&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="livehybrid_0-1751782045663.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39576i869B1B78E6533968/image-size/medium?v=v2&amp;amp;px=400" role="button" title="livehybrid_0-1751782045663.png" alt="livehybrid_0-1751782045663.png" /&gt;&lt;/span&gt;&lt;/P&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jul 2025 06:07:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749285#M242123</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-07-06T06:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Regex to Detect Internal Domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749287#M242124</link>
      <description>&lt;P&gt;Thank you for offering to help me. I tested your example Regex, and like with your screenshot, it looks like I'm getting a lot more matches for the domain group than just the domain. I need the domain group to&amp;nbsp;&lt;EM&gt;only&lt;/EM&gt; match the domain of a URL. I apologize of this wasn't clear.&lt;BR /&gt;&lt;BR /&gt;The end goal of this is to use the expression in an automation which take in URL's, parse the domain, perform a DNS lookup on the domains, and judge whether a domain is hosted locally based on the IP.&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jul 2025 06:24:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749287#M242124</guid>
      <dc:creator>dtaylor</dc:creator>
      <dc:date>2025-07-06T06:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Regex to Detect Internal Domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749290#M242125</link>
      <description>&lt;P&gt;My apologies&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/274960"&gt;@dtaylor&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not had my morning coffee yet.. how about this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(?:http|ftp|hxxp)s?:\/\/([\p{L}\d-]+(?:\.[\p{L}\d-]+)*)&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="livehybrid_0-1751785660716.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39577i58672FD017A79A05/image-size/medium?v=v2&amp;amp;px=400" role="button" title="livehybrid_0-1751785660716.png" alt="livehybrid_0-1751785660716.png" /&gt;&lt;/span&gt;&lt;/P&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jul 2025 07:07:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749290#M242125</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-07-06T07:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Regex to Detect Internal Domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749295#M242126</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/274960"&gt;@dtaylor&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use below one,&lt;/P&gt;&lt;P&gt;(?i)(?:https?|ftp|hxxp)s?:\/\/(?:www\.)?(?P&amp;lt;domain&amp;gt;[a-zA-Z0-9\-\.]+)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Prewin&lt;BR /&gt;Splunk Enthusiast | Always happy to help! If this answer helped you, please consider marking it as the solution or giving a Karma. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 04:15:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749295#M242126</guid>
      <dc:creator>PrewinThomas</dc:creator>
      <dc:date>2025-07-07T04:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Regex to Detect Internal Domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749296#M242127</link>
      <description>&lt;P&gt;Is there any specific reason why you must use your own regex to extract domain? &amp;nbsp;There are much more mature/robust algorithms, including Splunk's built-in transforms, e.g.,&amp;nbsp;&lt;FONT face="andale mono,times"&gt;url&lt;/FONT&gt;:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| extract url
| rex field=domain "(?&amp;lt;domain&amp;gt;.+)(?::(?&amp;lt;port&amp;gt;\d+))$"
| rename proto as scheme&lt;/LI-CODE&gt;&lt;P&gt;(The url transform results in a field named "domain" that contains both domain and port. This is why I add a second extraction to separate port from domain. It also gives a field "proto" which you call &lt;U&gt;scheme&lt;/U&gt;.)&lt;/P&gt;&lt;P&gt;Here are some mock data for you to play with and compare with real data&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults format=csv data="_raw
http://www.google.com/search?q=what%20about%20bob
https://yahoo.com:443/
ftp://localhost:23/
ssh://1234:abcd:::21/"
``` data emulation above ```&lt;/LI-CODE&gt;&lt;P&gt;They should give&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;_raw&lt;/TD&gt;&lt;TD&gt;domain&lt;/TD&gt;&lt;TD&gt;port&lt;/TD&gt;&lt;TD&gt;q&lt;/TD&gt;&lt;TD&gt;scheme&lt;/TD&gt;&lt;TD&gt;uri&lt;/TD&gt;&lt;TD&gt;url&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;A href="http://www.google.com/search?q=what%20about%20bob" target="_blank" rel="noopener"&gt;http://www.google.com/search?q=what%20about%20bob&lt;/A&gt;&lt;/TD&gt;&lt;TD&gt;&lt;A href="http://www.google.com" target="_blank" rel="noopener"&gt;www.google.com&lt;/A&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;what%20about%20bob&lt;/TD&gt;&lt;TD&gt;http&lt;/TD&gt;&lt;TD&gt;/search?q=what%20about%20bob&lt;/TD&gt;&lt;TD&gt;&lt;A href="http://www.google.com/search?q=what%20about%20bob" target="_blank" rel="noopener"&gt;http://www.google.com/search?q=what%20about%20bob&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;A href="https://yahoo.com:443/" target="_blank" rel="noopener"&gt;https://yahoo.com:443/&lt;/A&gt;&lt;/TD&gt;&lt;TD&gt;yahoo.com&lt;/TD&gt;&lt;TD&gt;443&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;https&lt;/TD&gt;&lt;TD&gt;/&lt;/TD&gt;&lt;TD&gt;&lt;A href="https://yahoo.com:443/" target="_blank" rel="noopener"&gt;https://yahoo.com:443/&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;A href="ftp://localhost:23/" target="_blank" rel="noopener"&gt;ftp://localhost:23/&lt;/A&gt;&lt;/TD&gt;&lt;TD&gt;localhost&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;ftp&lt;/TD&gt;&lt;TD&gt;/&lt;/TD&gt;&lt;TD&gt;&lt;A href="ftp://localhost:23/" target="_blank" rel="noopener"&gt;ftp://localhost:23/&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;ssh://1234:abcd:::21/&lt;/TD&gt;&lt;TD&gt;1234:abcd::&lt;/TD&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;ssh&lt;/TD&gt;&lt;TD&gt;/&lt;/TD&gt;&lt;TD&gt;ssh://1234:abcd:::21/&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Mon, 07 Jul 2025 05:02:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749296#M242127</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2025-07-07T05:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Regex to Detect Internal Domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749648#M242199</link>
      <description>&lt;P&gt;Without going into verbose detail, it isn't Splunk which is doing the domain extraction, hence I need to rely on regex.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 17:30:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749648#M242199</guid>
      <dc:creator>dtaylor</dc:creator>
      <dc:date>2025-07-11T17:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Regex to Detect Internal Domains</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749660#M242205</link>
      <description>&lt;P&gt;Understood. &amp;nbsp;When I say to use Splunk's mature/robust solution, it doesn't mean it has to happen inside Splunk. &amp;nbsp;All you need is to use the regex that Splunk has QA tested for you. &amp;nbsp;The regex in Splunk's transformation&amp;nbsp;&lt;A href="http://localhost:8000/en-US/manager/search/data/transforms/extractions/url?action=edit&amp;amp;ns=system&amp;amp;f_offset=50&amp;amp;uri=%2FservicesNS%2Fnobody%2Fsystem%2Fdata%2Ftransforms%2Fextractions%2Furl" target="_blank" rel="noopener"&gt;url&lt;/A&gt;&amp;nbsp;is this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(?&amp;lt;url&amp;gt;[[alphas:proto]]://(?&amp;lt;domain&amp;gt;[a-zA-Z0-9\-.:]++)(?&amp;lt;uri&amp;gt;/[^\s"]*)?)&lt;/LI-CODE&gt;&lt;P&gt;Here is the same test, except I substitute &amp;nbsp;the transform with the above regex.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults format=csv data="_raw
http://www.google.com/search?q=what%20about%20bob
https://yahoo.com:443/
ftp://localhost:23/
ssh://1234:abcd:::21/"

| rex "(?&amp;lt;url&amp;gt;[[alphas:proto]]://(?&amp;lt;domain&amp;gt;[a-zA-Z0-9\-.:]++)(?&amp;lt;uri&amp;gt;/[^\s\"]*)?)"
| rex field=domain "(?&amp;lt;domain&amp;gt;.+)(?::(?&amp;lt;port&amp;gt;\d+))$"
| rename proto as scheme&lt;/LI-CODE&gt;&lt;P&gt;(Because rex command requires double quote, I have to escape the double quote inside the uri group.) &amp;nbsp;It gives the exact same valid results that you want:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;_raw&lt;/TD&gt;&lt;TD&gt;domain&lt;/TD&gt;&lt;TD&gt;port&lt;/TD&gt;&lt;TD&gt;schema&lt;/TD&gt;&lt;TD&gt;uri&lt;/TD&gt;&lt;TD&gt;url&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;A href="http://www.google.com/search?q=what%20about%20bob" target="_blank" rel="noopener"&gt;http://www.google.com/search?q=what%20about%20bob&lt;/A&gt;&lt;/TD&gt;&lt;TD&gt;&lt;A href="http://www.google.com" target="_blank" rel="noopener"&gt;www.google.com&lt;/A&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;http&lt;/TD&gt;&lt;TD&gt;/search?q=what%20about%20bob&lt;/TD&gt;&lt;TD&gt;&lt;A href="http://www.google.com/search?q=what%20about%20bob" target="_blank" rel="noopener"&gt;http://www.google.com/search?q=what%20about%20bob&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;A href="https://yahoo.com:443/" target="_blank" rel="noopener"&gt;https://yahoo.com:443/&lt;/A&gt;&lt;/TD&gt;&lt;TD&gt;yahoo.com&lt;/TD&gt;&lt;TD&gt;443&lt;/TD&gt;&lt;TD&gt;https&lt;/TD&gt;&lt;TD&gt;/&lt;/TD&gt;&lt;TD&gt;&lt;A href="https://yahoo.com:443/" target="_blank" rel="noopener"&gt;https://yahoo.com:443/&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;A href="ftp://localhost:23/" target="_blank" rel="noopener"&gt;ftp://localhost:23/&lt;/A&gt;&lt;/TD&gt;&lt;TD&gt;localhost&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;TD&gt;ftp&lt;/TD&gt;&lt;TD&gt;/&lt;/TD&gt;&lt;TD&gt;&lt;A href="ftp://localhost:23/" target="_blank" rel="noopener"&gt;ftp://localhost:23/&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;ssh://1234:abcd:::21/&lt;/TD&gt;&lt;TD&gt;1234:abcd::&lt;/TD&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;ssh&lt;/TD&gt;&lt;TD&gt;/&lt;/TD&gt;&lt;TD&gt;ssh://1234:abcd:::21/&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Sat, 12 Jul 2025 04:01:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-Regex-to-Detect-Internal-Domains/m-p/749660#M242205</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2025-07-12T04:01:49Z</dc:date>
    </item>
  </channel>
</rss>

