<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : Strange automatic amends in links</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : Strange automatic amends in links]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 07 Apr 2026 16:57:33 +0000</pubDate>
  <lastBuildDate>Fri, 23 Jan 2004 09:45:47 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=9176</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[Strange automatic amends in links : Many thanks  That has fixed the...]]></title>
   <link>https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48662.html#48662</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=11563">dudboy</a><br /><strong>Subject:</strong> 9176<br /><strong>Posted:</strong> 23&nbsp;January&nbsp;2004 at 9:45am<br /><br /><P>Many thanks </P><P>That has fixed the problem his name now works.</P><P>Does this reduce any security that could cause problems ?</P>]]>
   </description>
   <pubDate>Fri, 23 Jan 2004 09:45:47 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48662.html#48662</guid>
  </item> 
  <item>
   <title><![CDATA[Strange automatic amends in links : Incase this happens again with...]]></title>
   <link>https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48650.html#48650</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 9176<br /><strong>Posted:</strong> 23&nbsp;January&nbsp;2004 at 9:10am<br /><br />Incase this happens again with case sesitive URL's change theformatLink function in the functions_filters.asp file to the following:-<br><br><table width="99%"><tr><td><pre class="BBcode">'********************************************<br>'*** &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Format Links &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; *****<br>'********************************************<br><br>'Format links funtion<br>Private Function formatLink(ByVal strInputEntry)<br><br>&nbsp;&nbsp;&nbsp; 'Remove malisous charcters from links and images<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "document.cookie", ".", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "javascript:", "javascript ", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "vbscript:", "vbscript ", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "javascript :", "javascript ", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "vbscript :", "vbscript ", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "&#091;", "", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "&#093;", "", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "(", "", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, ")", "", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "{", "", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "}", "", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "&lt;", "", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "&gt;", "", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "|", "", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "script", "&amp;#115;cript", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "SCRIPT", "&amp;#083;CRIPT", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "Script", "&amp;#083;cript", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "script", "&amp;#083;cript", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "object", "&amp;#111;bject", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "OBJECT", "&amp;#079;BJECT", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "Object", "&amp;#079;bject", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "object", "&amp;#079;bject", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "applet", "&amp;#097;pplet", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "APPLET", "&amp;#065;PPLET", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "Applet", "&amp;#065;pplet", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "applet", "&amp;#065;pplet", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "embed", "&amp;#101;mbed", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "EMBED", "&amp;#069;MBED", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "Embed", "&amp;#069;mbed", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "embed", "&amp;#069;mbed", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "document", "&amp;#100;ocument", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "DOCUMENT", "&amp;#068;OCUMENT", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "Document", "&amp;#068;ocument", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "document", "&amp;#068;ocument", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "cookie", "&amp;#099;ookie", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "COOKIE", "&amp;#067;OOKIE", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "Cookie", "&amp;#067;ookie", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "cookie", "&amp;#067;ookie", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "event", "&amp;#101;vent", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "EVENT", "&amp;#069;VENT", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "Event", "&amp;#069;vent", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "event", "&amp;#069;vent", 1, -1, 1)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "on", "&amp;#111;n", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "ON", "&amp;#079;N", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "On", "&amp;#079;n", 1, -1, 0)<br>&nbsp;&nbsp;&nbsp; strInputEntry = Replace(strInputEntry, "on", "&amp;#111;n", 1, -1, 1)<br><br>&nbsp;&nbsp;&nbsp; 'Return<br>&nbsp;&nbsp;&nbsp; formatLink = strInputEntry<br>End Function</pre></td></tr></table><br>]]>
   </description>
   <pubDate>Fri, 23 Jan 2004 09:10:17 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48650.html#48650</guid>
  </item> 
  <item>
   <title><![CDATA[Strange automatic amends in links :  Servers are not usually case...]]></title>
   <link>https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48649.html#48649</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 9176<br /><strong>Posted:</strong> 23&nbsp;January&nbsp;2004 at 9:02am<br /><br />Servers are not usually case sesitive when it comes to URL's infactthis is the first time I've seen a server that uses case sesitive URL's, sousually it won't matter.<span style="font-size:10px"><br /><br />Edited by -boRg-</span>]]>
   </description>
   <pubDate>Fri, 23 Jan 2004 09:02:39 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48649.html#48649</guid>
  </item> 
  <item>
   <title><![CDATA[Strange automatic amends in links :   -boRg- wrote:Probally the security...]]></title>
   <link>https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48648.html#48648</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=11563">dudboy</a><br /><strong>Subject:</strong> 9176<br /><strong>Posted:</strong> 23&nbsp;January&nbsp;2004 at 8:49am<br /><br /><P><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by -boRg-" alt="Originally posted by -boRg-" style="vertical-align: text-bottom;" /> <strong>-boRg- wrote:</strong><br /><br />Probally the security filters removing anything that could be used to force malicious code into the forum.<BR><BR>You'll just have to work around it, by linking to a different image or changing the name.<BR></td></tr></table> </P><P>Does this mean that anyone with a name like conner if they use it in a link willnot work of is it just capitalls CONNER ?</P><P>Many thanks</P>]]>
   </description>
   <pubDate>Fri, 23 Jan 2004 08:49:54 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48648.html#48648</guid>
  </item> 
  <item>
   <title><![CDATA[Strange automatic amends in links : Probally the security filters...]]></title>
   <link>https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48645.html#48645</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 9176<br /><strong>Posted:</strong> 23&nbsp;January&nbsp;2004 at 8:29am<br /><br />Probally the security filters removing anything that could be used to force malicious code into the forum.<br><br>You'll just have to work around it, by linking to a different image or changing the name.<br>]]>
   </description>
   <pubDate>Fri, 23 Jan 2004 08:29:44 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48645.html#48645</guid>
  </item> 
  <item>
   <title><![CDATA[Strange automatic amends in links : I have someone posting a link...]]></title>
   <link>https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48642.html#48642</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=11563">dudboy</a><br /><strong>Subject:</strong> 9176<br /><strong>Posted:</strong> 23&nbsp;January&nbsp;2004 at 7:31am<br /><br /><P>I have someone posting a link on our site which requires capital letters in the link for it to work.</P><P>For some reason the forum changes this JOCONNELL100 to JOConNELL100 and prevents the link from working</P><P>See here</P><P><A href="http://www.clubgti.com/forum/forum_posts.asp?TID=9393&amp;PN=1&amp;TPN=1" target="_blank"> http://www.clubgti.com/forum/forum_posts.asp?TID=9393&amp;PN =1&amp;TPN=1</A></P><P>Any ideas ?</P><P>Many thanks</P>]]>
   </description>
   <pubDate>Fri, 23 Jan 2004 07:31:51 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/strange-automatic-amends-in-links_topic9176_post48642.html#48642</guid>
  </item> 
 </channel>
</rss>