diff --git a/cve-2017-0199_toolkit.py b/cve-2017-0199_toolkit.py index 872a5dc..6ecc18a 100644 --- a/cve-2017-0199_toolkit.py +++ b/cve-2017-0199_toolkit.py @@ -389,11 +389,11 @@ def exploitation_rtf(): conn, client_addr = s.accept() # create a thread to handle request - thread.start_new_thread(server_thread, (conn, client_addr)) + thread.start_new_thread(server_thread_rtf, (conn, client_addr)) s.close() -def server_thread(conn, client_addr): +def server_thread_rtf(conn, client_addr): # get the request from browser try: @@ -488,11 +488,11 @@ def exploitation_ppsx(): conn, client_addr = s.accept() # create a thread to handle request - thread.start_new_thread(server_thread, (conn, client_addr)) + thread.start_new_thread(server_thread_ppsx, (conn, client_addr)) s.close() -def server_thread(conn, client_addr): +def server_thread_ppsx(conn, client_addr): # get the request from browser try: