把漏掉的url参数带上

This commit is contained in:
Jerry Yan 2022-06-03 23:56:52 +08:00
parent 1cd43be0c5
commit 138755a9e4

View File

@ -18,7 +18,7 @@ if __name__ == '__main__':
config()["mitm"]["bin"], "-s", "./scripts/mitmproxy.py", "-q",
"--listen-host", config()["mitm"]["host"], "--listen-port", str(config()["mitm"]["port"])
])
t = threading.Thread(target=webdriver.go)
t = threading.Thread(target=webdriver.go, args=(sys.argv[1],))
t.start()
queue_thread = threading.Thread(target=loop_queue)
queue_thread.start()