提交 8b53f399 authored 作者: Noel Grandin's avatar Noel Grandin

make -ifExists the default when starting up standalone network servers

And add an -ifNotExists option to turn on the permissive behaviour

Related to https://www.exploit-db.com/exploits/45506

even though we document that you should set this in
   http://www.h2database.com/html/advanced.html#remote_access
people turn on network access but don't turn on -ifExists.
上级 6100b7f7
...@@ -1197,7 +1197,7 @@ options <code>-webAllowOthers, -tcpAllowOthers, -pgAllowOthers</code>. ...@@ -1197,7 +1197,7 @@ options <code>-webAllowOthers, -tcpAllowOthers, -pgAllowOthers</code>.
<p> <p>
If you enable remote access using If you enable remote access using
<code>-tcpAllowOthers</code> or <code>-pgAllowOthers</code>, <code>-tcpAllowOthers</code> or <code>-pgAllowOthers</code>,
please also consider using the options <code>-baseDir, -ifExists</code>, please also consider using the options <code>-baseDir</code>,
so that remote users can not create new databases so that remote users can not create new databases
or access existing databases with weak passwords. or access existing databases with weak passwords.
When using the option <code>-baseDir</code>, only databases within that directory may be accessed. When using the option <code>-baseDir</code>, only databases within that directory may be accessed.
...@@ -1206,7 +1206,7 @@ Ensure the existing accessible databases are protected using strong passwords. ...@@ -1206,7 +1206,7 @@ Ensure the existing accessible databases are protected using strong passwords.
<p> <p>
If you enable remote access using <code>-webAllowOthers</code>, If you enable remote access using <code>-webAllowOthers</code>,
please ensure the web server can only be accessed from trusted networks. please ensure the web server can only be accessed from trusted networks.
The options <code>-baseDir, -ifExists</code> don't protect The options <code>-baseDir</code> don't protect
access to the tools section, prevent remote shutdown of the web server, access to the tools section, prevent remote shutdown of the web server,
changes to the preferences, the saved connection settings, changes to the preferences, the saved connection settings,
or access to other databases accessible from the system. or access to other databases accessible from the system.
......
...@@ -63,7 +63,7 @@ public class TcpServer implements Service { ...@@ -63,7 +63,7 @@ public class TcpServer implements Service {
private String baseDir; private String baseDir;
private boolean allowOthers; private boolean allowOthers;
private boolean isDaemon; private boolean isDaemon;
private boolean ifExists; private boolean ifExists = true;
private Connection managementDb; private Connection managementDb;
private PreparedStatement managementDbAdd; private PreparedStatement managementDbAdd;
private PreparedStatement managementDbRemove; private PreparedStatement managementDbRemove;
...@@ -187,6 +187,8 @@ public class TcpServer implements Service { ...@@ -187,6 +187,8 @@ public class TcpServer implements Service {
isDaemon = true; isDaemon = true;
} else if (Tool.isOption(a, "-ifExists")) { } else if (Tool.isOption(a, "-ifExists")) {
ifExists = true; ifExists = true;
} else if (Tool.isOption(a, "-ifNotExists")) {
ifExists = false;
} }
} }
org.h2.Driver.load(); org.h2.Driver.load();
......
...@@ -79,7 +79,7 @@ public class PgServer implements Service { ...@@ -79,7 +79,7 @@ public class PgServer implements Service {
private String baseDir; private String baseDir;
private boolean allowOthers; private boolean allowOthers;
private boolean isDaemon; private boolean isDaemon;
private boolean ifExists; private boolean ifExists = true;
private String key, keyDatabase; private String key, keyDatabase;
@Override @Override
...@@ -100,6 +100,8 @@ public class PgServer implements Service { ...@@ -100,6 +100,8 @@ public class PgServer implements Service {
isDaemon = true; isDaemon = true;
} else if (Tool.isOption(a, "-ifExists")) { } else if (Tool.isOption(a, "-ifExists")) {
ifExists = true; ifExists = true;
} else if (Tool.isOption(a, "-ifNotExists")) {
ifExists = false;
} else if (Tool.isOption(a, "-key")) { } else if (Tool.isOption(a, "-key")) {
key = args[++i]; key = args[++i];
keyDatabase = args[++i]; keyDatabase = args[++i];
......
...@@ -164,7 +164,7 @@ public class WebServer implements Service { ...@@ -164,7 +164,7 @@ public class WebServer implements Service {
private String url; private String url;
private ShutdownHandler shutdownHandler; private ShutdownHandler shutdownHandler;
private Thread listenerThread; private Thread listenerThread;
private boolean ifExists; private boolean ifExists = true;
private boolean trace; private boolean trace;
private TranslateThread translateThread; private TranslateThread translateThread;
private boolean allowChunked = true; private boolean allowChunked = true;
...@@ -294,6 +294,8 @@ public class WebServer implements Service { ...@@ -294,6 +294,8 @@ public class WebServer implements Service {
SysProperties.setBaseDir(baseDir); SysProperties.setBaseDir(baseDir);
} else if (Tool.isOption(a, "-ifExists")) { } else if (Tool.isOption(a, "-ifExists")) {
ifExists = true; ifExists = true;
} else if (Tool.isOption(a, "-ifNotExists")) {
ifExists = false;
} else if (Tool.isOption(a, "-properties")) { } else if (Tool.isOption(a, "-properties")) {
// already set // already set
i++; i++;
......
...@@ -102,6 +102,8 @@ public class Server extends Tool implements Runnable, ShutdownHandler { ...@@ -102,6 +102,8 @@ public class Server extends Tool implements Runnable, ShutdownHandler {
* <td>The base directory for H2 databases (all servers)</td></tr> * <td>The base directory for H2 databases (all servers)</td></tr>
* <tr><td>[-ifExists]</td> * <tr><td>[-ifExists]</td>
* <td>Only existing databases may be opened (all servers)</td></tr> * <td>Only existing databases may be opened (all servers)</td></tr>
* <tr><td>[-ifNotExists]</td>
* <td>Databases are created when accessed</td></tr>
* <tr><td>[-trace]</td> * <tr><td>[-trace]</td>
* <td>Print additional trace information (all servers)</td></tr> * <td>Print additional trace information (all servers)</td></tr>
* <tr><td>[-key &lt;from&gt; &lt;to&gt;]</td> * <tr><td>[-key &lt;from&gt; &lt;to&gt;]</td>
...@@ -194,6 +196,8 @@ public class Server extends Tool implements Runnable, ShutdownHandler { ...@@ -194,6 +196,8 @@ public class Server extends Tool implements Runnable, ShutdownHandler {
// no parameters // no parameters
} else if ("-ifExists".equals(arg)) { } else if ("-ifExists".equals(arg)) {
// no parameters // no parameters
} else if ("-ifNotExists".equals(arg)) {
// no parameters
} else if ("-baseDir".equals(arg)) { } else if ("-baseDir".equals(arg)) {
i++; i++;
} else if ("-key".equals(arg)) { } else if ("-key".equals(arg)) {
...@@ -280,6 +284,8 @@ public class Server extends Tool implements Runnable, ShutdownHandler { ...@@ -280,6 +284,8 @@ public class Server extends Tool implements Runnable, ShutdownHandler {
// no parameters // no parameters
} else if ("-ifExists".equals(arg)) { } else if ("-ifExists".equals(arg)) {
// no parameters // no parameters
} else if ("-ifNotExists".equals(arg)) {
// no parameters
} else if ("-baseDir".equals(arg)) { } else if ("-baseDir".equals(arg)) {
i++; i++;
} else if ("-key".equals(arg)) { } else if ("-key".equals(arg)) {
...@@ -407,7 +413,7 @@ public class Server extends Tool implements Runnable, ShutdownHandler { ...@@ -407,7 +413,7 @@ public class Server extends Tool implements Runnable, ShutdownHandler {
* </pre> * </pre>
* Supported options are: * Supported options are:
* -webPort, -webSSL, -webAllowOthers, -webDaemon, * -webPort, -webSSL, -webAllowOthers, -webDaemon,
* -trace, -ifExists, -baseDir, -properties. * -trace, -ifExists, -ifNotExists, -baseDir, -properties.
* See the main method for details. * See the main method for details.
* *
* @param args the argument list * @param args the argument list
...@@ -429,7 +435,7 @@ public class Server extends Tool implements Runnable, ShutdownHandler { ...@@ -429,7 +435,7 @@ public class Server extends Tool implements Runnable, ShutdownHandler {
* </pre> * </pre>
* Supported options are: * Supported options are:
* -tcpPort, -tcpSSL, -tcpPassword, -tcpAllowOthers, -tcpDaemon, * -tcpPort, -tcpSSL, -tcpPassword, -tcpAllowOthers, -tcpDaemon,
* -trace, -ifExists, -baseDir, -key. * -trace, -ifExists, -ifNotExists, -baseDir, -key.
* See the main method for details. * See the main method for details.
* <p> * <p>
* If no port is specified, the default port is used if possible, * If no port is specified, the default port is used if possible,
...@@ -456,7 +462,7 @@ public class Server extends Tool implements Runnable, ShutdownHandler { ...@@ -456,7 +462,7 @@ public class Server extends Tool implements Runnable, ShutdownHandler {
* </pre> * </pre>
* Supported options are: * Supported options are:
* -pgPort, -pgAllowOthers, -pgDaemon, * -pgPort, -pgAllowOthers, -pgDaemon,
* -trace, -ifExists, -baseDir, -key. * -trace, -ifExists, -ifNotExists, -baseDir, -key.
* See the main method for details. * See the main method for details.
* <p> * <p>
* If no port is specified, the default port is used if possible, * If no port is specified, the default port is used if possible,
......
...@@ -264,7 +264,8 @@ public class TestWeb extends TestDb { ...@@ -264,7 +264,8 @@ public class TestWeb extends TestDb {
getUser(), getPassword()); getUser(), getPassword());
Server server = new Server(); Server server = new Server();
server.setOut(new PrintStream(new ByteArrayOutputStream())); server.setOut(new PrintStream(new ByteArrayOutputStream()));
server.runTool("-ifExists", "-web", "-webPort", "8182", // -ifExists is the default
server.runTool("-web", "-webPort", "8182",
"-properties", "null", "-tcp", "-tcpPort", "9101"); "-properties", "null", "-tcp", "-tcpPort", "9101");
try { try {
String url = "http://localhost:8182"; String url = "http://localhost:8182";
...@@ -288,6 +289,7 @@ public class TestWeb extends TestDb { ...@@ -288,6 +289,7 @@ public class TestWeb extends TestDb {
server.shutdown(); server.shutdown();
conn.close(); conn.close();
} }
} }
private void testWebApp() throws Exception { private void testWebApp() throws Exception {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论