-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_runit_with_co.py
112 lines (85 loc) · 2.06 KB
/
_runit_with_co.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
def main():
# import setup_over_ssh Must Run this Manually!!!
# import dynamic_icons Must Run this Manually!!!
# try:
# import operations_setup
# except Exception as e:
# print e
# try:
# import addUsers
# except Exception as e:
# print e
try:
import Feeds
except Exception as e:
print e
# try:
# import mailServerConfig
# except Exception as e:
# print e
try:
import events
except Exception as e:
print e
try:
import adversaries
except Exception as e:
print e
try:
import Signatures
except Exception as e:
print e
try:
import Indicators
except Exception as e:
print e
try:
import stix_import_1_0
except Exception as e:
print e
try:
import stix_import_2_0
except Exception as e:
print e
try:
import Events_Relationships
except Exception as e:
print e
try:
import tasks
except Exception as e:
print e
try:
import AdversaryRelations
except Exception as e:
print e
try:
import Signatures_yara
except Exception as e:
print e
try:
import attack_pattern # Data is imported from STIX Import now
except Exception as e:
print e
try:
import ttp # Data is imported from STIX Import now
except Exception as e:
print e
try:
import campaign # Data is imported from STIX Import now
except Exception as e:
print e
try:
import exploitTarget # Data is imported from STIX Import now
except Exception as e:
print e
try:
import courseOfAction # Data is imported from STIX Import now
except Exception as e:
print e
try:
import incident # Data is imported from STIX Import now
except Exception as e:
print e
if __name__ == "__main__":
main()