Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

[hotfix] fix security risk of SQL injection #1121

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,17 @@ protected void configure() {
}
});

setupRestApiContextHandler(webApp, conf);
// There is a security risk of SQL injection here,
// note that the RESTful interface cannot be provided until this is resolved
// setupRestApiContextHandler(webApp, conf);

// Cookie config
setCookieConfig(webApp);

// There is a security risk of SQL injection here,
// note that the RESTful interface cannot be provided until this is resolved
// Notebook server
setupNotebookServer(webApp, conf, sharedServiceLocator);
// setupNotebookServer(webApp, conf, sharedServiceLocator);

// Cluster Server
// Cluster Server is useless for submarine now. Shield it to improve performance.
Expand Down
Loading