summaryrefslogtreecommitdiff
path: root/detection
diff options
context:
space:
mode:
author尹姜谊 <[email protected]>2024-11-11 13:54:07 +0800
committer尹姜谊 <[email protected]>2024-11-11 13:54:07 +0800
commit5056f16249ae01219e8938ffef952cfbded91d52 (patch)
tree38696991328c2d488d652c10bae30077ce3ff9fa /detection
parent6b0a88d8f7734c666057722a512ac0f9a473209e (diff)
修改:写入域名过滤空字符串24.08_M22
Diffstat (limited to 'detection')
-rw-r--r--detection/vpn_detector.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/detection/vpn_detector.py b/detection/vpn_detector.py
index 00d5541..3ad1277 100644
--- a/detection/vpn_detector.py
+++ b/detection/vpn_detector.py
@@ -97,7 +97,7 @@ class VpnDetector:
result_df['ip_addr_format'] = 'Single'
if object_type == 'domain':
- result_df['domain'] = [i for i in object_list]
+ result_df['domain'] = [i for i in object_list if i!='']
result_df['type'] = 'Domain'
result_df['source_id'] = plugin_id