-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcxinventory.py
74 lines (56 loc) · 2.18 KB
/
cxinventory.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
import sys
from shared.package.common.cxconfig import CxConfigError
from shared.package.common.cxconfig import cxconfig
from shared.package.common.cxlogging import ERROR
from shared.package.common.cxlogging import cxlogger
from src.configuration import config_settings
from src.cxoneinventory import CxOneInventory
from src.cxsastinventory import CxSastInventory
from src.cxscainventory import CxScaInventory
def execute() :
errorcount: int = 0
# Activate logging
cxlogger.activate(jsonformat = False, rebase = True)
# Display header info
try :
# Verbose the header
cxlogger.verbose( '' )
cxlogger.verbose( '=============================================================================' )
cxlogger.verbose( 'Checkmarx Inventory Tool' )
cxlogger.verbose( '© Checkmarx. All rights reserved.' )
# Process config
cxconfig.add_defs( config_settings )
try :
cxconfig.activate()
# Selection according to target system
if cxconfig.hascommand('sast') :
runner: CxSastInventory = CxSastInventory()
errorcount += runner.execute()
elif cxconfig.hascommand('cxone') :
runner: CxOneInventory = CxOneInventory()
errorcount += runner.execute()
elif cxconfig.hascommand('sca') :
runner: CxScaInventory = CxScaInventory()
errorcount += runner.execute()
else :
if cxlogger.loglevel <= ERROR :
cxlogger.error( 'No valid command found for execution' )
else :
cxlogger.verbose( 'No valid command found for execution' )
errorcount += 1
except CxConfigError as e :
xmsg: str = str(e)
if cxlogger.loglevel > ERROR :
cxlogger.verbose( xmsg )
errorcount += 1
except Exception :
pass
finally :
# Verbose the footer
cxlogger.verbose( '' )
# Give an exit code en errors
if errorcount > 0 :
sys.exit(1)
# Only run if this is the application main root
if __name__ == '__main__' :
execute()