We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6c7bc9 commit 6144a75Copy full SHA for 6144a75
windows_tools/signtool/__init__.py
@@ -18,8 +18,8 @@
18
__copyright__ = "Copyright (C) 2020-2024 Orsiris de Jong"
19
__description__ = "Windows authenticode signature tool"
20
__licence__ = "BSD 3 Clause"
21
-__version__ = "0.6.0"
22
-__build__ = "2025051201"
+__version__ = "0.6.1"
+__build__ = "2025051601"
23
24
import os
25
import sys
@@ -144,7 +144,7 @@ def get_timestamp_server(self):
144
"http://timestamp.globalsign.com/scripts/timstamp.dll",
145
]
146
for server in ts_servers:
147
- if check_http_internet(fqdn_servers=[server]):
+ if check_http_internet(fqdn_servers=[server], ip_servers=[]):
148
self.authority_timestamp_url = server
149
return True
150
raise ValueError("No online timeserver found")
0 commit comments