fixed
This commit is contained in:
huoji
2022-09-23 15:21:33 +08:00
parent 011496349a
commit d5b88c7a01
8 changed files with 54 additions and 13 deletions

View File

@@ -0,0 +1,25 @@
import global_vars
import process
rm_plugs_config = {
"enable": True,
"author": "huoji",
"description": "otx alienvault ioc检测扩展插件",
"version": "0.0.1"
}
def rule_new_process_create(current_process: process.Process, host, raw_log_data, json_log_data):
return global_vars.THREAT_TYPE_NONE
def rule_new_process_action(current_process: process.Process, host, raw_log_data, json_log_data):
return global_vars.THREAT_TYPE_NONE
def rule_init():
pass
def plugin_init():
print('otx alienvault ioc检测扩展插件 2022/9/23 by huoji')