diff --git a/core/src/main/java/lucee/runtime/PageSourceImpl.java b/core/src/main/java/lucee/runtime/PageSourceImpl.java index f123d4cad1..644627b4e0 100755 --- a/core/src/main/java/lucee/runtime/PageSourceImpl.java +++ b/core/src/main/java/lucee/runtime/PageSourceImpl.java @@ -966,7 +966,7 @@ public PageSource getRealPage(String realPath) { else realPath = realPath.replace('\\', '/'); RefBoolean _isOutSide = new RefBooleanImpl(isOutSide); - if (realPath.indexOf('/') == 0) { + if (realPath.indexOf('/') == 0 || ResourceUtil.isWindowsPath(realPath)) { _isOutSide.setValue(false); } else if (realPath.startsWith("./")) { @@ -983,7 +983,7 @@ public Resource getRealResource(String realPath) { else realPath = realPath.replace('\\', '/'); RefBoolean _isOutSide = new RefBooleanImpl(isOutSide); - if (realPath.indexOf('/') == 0) { + if (realPath.indexOf('/') == 0 || ResourceUtil.isWindowsPath(realPath)) { _isOutSide.setValue(false); } else if (realPath.startsWith("./")) { diff --git a/loader/build.xml b/loader/build.xml index 9fa04a117b..44d6da234a 100644 --- a/loader/build.xml +++ b/loader/build.xml @@ -2,7 +2,7 @@ - + diff --git a/loader/pom.xml b/loader/pom.xml index db365534da..17029fb09a 100644 --- a/loader/pom.xml +++ b/loader/pom.xml @@ -3,7 +3,7 @@ org.lucee lucee - 6.2.0.249-SNAPSHOT + 6.2.0.250-SNAPSHOT jar Lucee Loader Build