Skip to content

Commit 6144a75

Browse files
committed
signtool: Don't check for IP servers only
1 parent e6c7bc9 commit 6144a75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

windows_tools/signtool/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
__copyright__ = "Copyright (C) 2020-2024 Orsiris de Jong"
1919
__description__ = "Windows authenticode signature tool"
2020
__licence__ = "BSD 3 Clause"
21-
__version__ = "0.6.0"
22-
__build__ = "2025051201"
21+
__version__ = "0.6.1"
22+
__build__ = "2025051601"
2323

2424
import os
2525
import sys
@@ -144,7 +144,7 @@ def get_timestamp_server(self):
144144
"http://timestamp.globalsign.com/scripts/timstamp.dll",
145145
]
146146
for server in ts_servers:
147-
if check_http_internet(fqdn_servers=[server]):
147+
if check_http_internet(fqdn_servers=[server], ip_servers=[]):
148148
self.authority_timestamp_url = server
149149
return True
150150
raise ValueError("No online timeserver found")

0 commit comments

Comments
 (0)