summaryrefslogtreecommitdiff
path: root/detection/vpnservices/ipvanishvpn.py
diff options
context:
space:
mode:
author尹姜谊 <[email protected]>2024-04-17 18:07:01 +0800
committer尹姜谊 <[email protected]>2024-04-17 18:07:01 +0800
commitc0d48d9b8b55926fcaf38c7a126c67ea01e03dbf (patch)
tree4fc604fde65225883c55db228bc5ecee131c5856 /detection/vpnservices/ipvanishvpn.py
parent1cc37ec84e68c6b86f9c8c466b9c93ee2341727e (diff)
Modify: 适配知识库域名正则匹配24.04
Diffstat (limited to 'detection/vpnservices/ipvanishvpn.py')
-rw-r--r--detection/vpnservices/ipvanishvpn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/detection/vpnservices/ipvanishvpn.py b/detection/vpnservices/ipvanishvpn.py
index 3d3cd34..6f2db93 100644
--- a/detection/vpnservices/ipvanishvpn.py
+++ b/detection/vpnservices/ipvanishvpn.py
@@ -118,7 +118,7 @@ class IpvanishvpnServerip(VpnDetector):
self.mariadb.close()
if query_result:
- servername_list = [i[0] for i in query_result]
+ servername_list = [i[0].strip('$') for i in query_result]
self.server_name_list.extend(servername_list)