This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
InventoryTask.py
91 lines (88 loc) · 3.04 KB
/
InventoryTask.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# -*- coding: utf-8 -*-
#
# License:
#
# Copyright (c) 2003-2006 ossim.net
# Copyright (c) 2007-2014 AlienVault
# All rights reserved.
#
# This package is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 dated June, 1991.
# You may not use, modify or distribute this program under any other version
# of the GNU General Public License.
#
# This package is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this package; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
# MA 02110-1301 USA
#
#
# On Debian GNU/Linux systems, the complete text of the GNU General
# Public License can be found in `/usr/share/common-licenses/GPL-2'.
#
# Otherwise you can read it here: http://www.gnu.org/licenses/gpl-2.0.txt
#
import time
from Logger import Logger
from Output import Output
#
# GLOBAL VARIABLES
#
logger = Logger.logger
class InventoryTask(object):
def __init__(self, task_name, task_params, task_period, task_reliability, task_enable, task_type,task_type_name):
self._enable = False
self._validTask = True
if task_enable.lower() in ['1', 'yes', 'true']:
self._enable = True
self._taskname = task_name
self._task_params = task_params
self._task_period = 0
self._task_type = task_type
self._lastRun = 0
try:
self._task_period = int(task_period)
except ValueError:
logger.warning("Invalid task period: %s" % task_period)
self._validTask = False
self._task_reliability = 0
try:
self._task_reliability = int(task_reliability)
except ValueError:
logger.warning("Invalid task reliability: %s" % task_reliability)
self._validTask = False
self._task_type_name = 'none'
if task_type_name.lower() in ['nmap', 'wmi', 'ocs', 'ldap', 'nagios', 'nessus', 'nedi']:
self._task_type_name = task_type_name
else:
self._validTask = False
def getTaskParams(self):
return self._task_params
def getTaskName(self):
return self._taskname
def isEnable(self):
return self._enable
def isValid(self):
return self._validTask
def getLastRun(self):
return self._lastRun
def getPeriod(self):
return self._task_period
def updateLastRun(self):
self._lastRun = time.time()
def doJob(self):
'''
'''
pass
def _setdefaults(self,event):
event['inventory_source'] = self._task_type#self._task_reliability
return event
def send_message(self,data):
event = self._setdefaults(data)
Output.event(event)