mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
test: deploy failed in some middleware
This commit is contained in:
@@ -9,7 +9,6 @@ import java.io.IOException;
|
||||
* @author ReaJason
|
||||
* @since 2025/2/23
|
||||
*/
|
||||
@WebFilter("/*")
|
||||
public class EmptyFilter implements Filter {
|
||||
@Override
|
||||
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
|
||||
|
||||
@@ -14,7 +14,6 @@ import java.io.ObjectInputStream;
|
||||
* @author ReaJason
|
||||
* @since 2024/12/10
|
||||
*/
|
||||
@WebServlet("/java_deserialize")
|
||||
public class JavaReadObjServlet extends HttpServlet {
|
||||
byte[] decodeBase64(String base64Str) throws Exception {
|
||||
Class<?> decoderClass;
|
||||
|
||||
@@ -12,7 +12,6 @@ import java.io.IOException;
|
||||
* @author ReaJason
|
||||
* @since 2024/12/7
|
||||
*/
|
||||
@WebServlet("/test")
|
||||
public class TestServlet extends HttpServlet {
|
||||
@Override
|
||||
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
|
||||
|
||||
@@ -23,7 +23,6 @@ import java.nio.file.Files;
|
||||
maxFileSize = 1024 * 1024 * 5,
|
||||
maxRequestSize = 1024 * 1024 * 5 * 5
|
||||
)
|
||||
@WebServlet("/upload")
|
||||
public class UploadServlet extends HttpServlet {
|
||||
|
||||
private static final String UPLOAD_DIRECTORY = "/";
|
||||
|
||||
Reference in New Issue
Block a user