Skip to content

Commit

Permalink
Modify the binding port of HTTP server
Browse files Browse the repository at this point in the history
  • Loading branch information
xixixiba authored and rungobier committed Mar 15, 2024
1 parent da937c0 commit 7a06e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pocsuite3/modules/httpserver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class HTTPServerV4(HTTPServer):


class PHTTPServer(threading.Thread, metaclass=PHTTPSingleton):
def __init__(self, bind_ip='0.0.0.0', bind_port=666, is_ipv6=False, use_https=False,
def __init__(self, bind_ip='0.0.0.0', bind_port=6666, is_ipv6=False, use_https=False,
certfile=os.path.join(paths.POCSUITE_TMP_PATH, 'cacert.pem'),
requestHandler=BaseRequestHandler):
threading.Thread.__init__(self)
Expand Down

0 comments on commit 7a06e09

Please sign in to comment.