You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ro...@apache.org on 2013/06/20 13:27:01 UTC

svn commit: r1494933 - /openoffice/ooo-site/trunk/content/api/docs/java/ref/index.html

Author: robweir
Date: Thu Jun 20 11:27:00 2013
New Revision: 1494933

URL: http://svn.apache.org/r1494933
Log:
Patch to fix issue reported in CVE-2013-1571

Modified:
    openoffice/ooo-site/trunk/content/api/docs/java/ref/index.html

Modified: openoffice/ooo-site/trunk/content/api/docs/java/ref/index.html
URL: http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/api/docs/java/ref/index.html?rev=1494933&r1=1494932&r2=1494933&view=diff
==============================================================================
--- openoffice/ooo-site/trunk/content/api/docs/java/ref/index.html (original)
+++ openoffice/ooo-site/trunk/content/api/docs/java/ref/index.html Thu Jun 20 11:27:00 2013
@@ -12,6 +12,42 @@ Java UNO Runtime Reference
         targetPage = targetPage.substring(1);
     if (targetPage.indexOf(":") != -1)
         targetPage = "undefined";
+    if (targetPage != "" && !validURL(targetPage))
+        targetPage = "undefined";
+    function validURL(url) {
+        var pos = url.indexOf(".html");
+        if (pos == -1 || pos != url.length - 5)
+            return false;
+        var allowNumber = false;
+        var allowSep = false;
+        var seenDot = false;
+        for (var i = 0; i < url.length - 5; i++) {
+            var ch = url.charAt(i);
+            if ('a' <= ch && ch <= 'z' ||
+                    'A' <= ch && ch <= 'Z' ||
+                    ch == '$' ||
+                    ch == '_') {
+                allowNumber = true;
+                allowSep = true;
+            } else if ('0' <= ch && ch <= '9'
+                    || ch == '-') {
+                if (!allowNumber)
+                     return false;
+            } else if (ch == '/' || ch == '.') {
+                if (!allowSep)
+                    return false;
+                allowNumber = false;
+                allowSep = false;
+                if (ch == '.')
+                     seenDot = true;
+                if (ch == '/' && seenDot)
+                     return false;
+            } else {
+                return false;
+            }
+        }
+        return true;
+    }
     function loadFrames() {
         if (targetPage != "" && targetPage != "undefined")
              top.classFrame.location = top.targetPage;