AutoRedTools icon indicating copy to clipboard operation
AutoRedTools copied to clipboard

AutoRedTools是一款轻量级一站式自动下载/自动更新常用开源软件的工具,主要帮助安全从业者/安全开发人员快速进行环境搭建以及常用软件的更新,节约软件的更新或者安 装的时间,从而提升生产效率或工作效率。

Results 1 AutoRedTools issues
Sort by recently updated
recently updated
newest added

报错信息如下: ` 检测到使用代理:socks5://*.*.*.*:port 配置错误,请检查无误后再重试!!! ` 报错位置应该是下面的函数: ``` def __check_proxy__(self) -> bool: try: proxies = {"http": self.proxy,"https": self.proxy} requests.get("https://www.google.com",proxies=proxies) except Exception as e: error_msg = "检测到使用代理:%s 配置错误,请检查无误后再重试!!!" % (self.proxy) raise CustomException(error_msg)...