diff --git a/lib/utils/restapi.py b/lib/utils/restapi.py index 5e42986db..9e5fe207c 100644 --- a/lib/utils/restapi.py +++ b/lib/utils/restapi.py @@ -27,8 +27,6 @@ except ImportError: errMsg += "http://bottlepy.org/ and install it" raise SqlmapMissingDependence, errMsg -# bottle in debug mode for now -debug(True) # local global variables session_ids = [] @@ -63,7 +61,7 @@ def error404(error): def error405(error): return "Method not allowed" -@error(500) # Not Found +@error(500) # Internal Server Error def error500(error): return "Internal server error" diff --git a/lib/utils/xmlrpc.py b/lib/utils/xmlrpc.py index 6e19e60b8..93d5c3813 100644 --- a/lib/utils/xmlrpc.py +++ b/lib/utils/xmlrpc.py @@ -66,7 +66,6 @@ class XMLRPCServer: return retval def run(self): - print "CALLING RUN" if not self.is_busy(): init(self.options, True) thread = threading.Thread(target=start)