-
Notifications
You must be signed in to change notification settings - Fork 0
/
mikfiles.py
330 lines (325 loc) · 16.2 KB
/
mikfiles.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
import os
import readline
import sys
def BackOpt():
print("[i] Select what you want :")
print("\033[34m" + "(1)" + "\033[0m" + " Export/Generate Again")
print("\033[34m" + "(2)" + "\033[0m" + " Back to Select Export File Menu")
print("\033[34m" + "(3)" + "\033[0m" + " Back to Main Menu")
print("\033[34m" + "(4)" + "\033[0m" + " Exit")
def selectionFile():
os.system('clear')
from ui import inputPrep
if selection_format == "1":
inputPrep.hostnameDefSelection()
elif selection_format == "2":
inputPrep.ipAddrDefSelection()
else:
print("unknown select")
from ui import selectFileExport
selectFileExport.selectFile()
def selectFilesNum():
try:
selection_file = str(input("""[->] Select 1/2/3/4/b/q : """))
if selection_file == "1": # export log file
from modules import hostnameLog
from modules import ipAddressLog
if selection_format == "1": # [DONE] Execute hostname modules if selection format 1
from ui import inputPrep
inputPrep.hostnameDefSelection()
inputPrep.ExportFileDef.hostnameLogDef()
inputPrep.inputPrep()
hostnameLog.main()
# Back options
BackOpt()
def select_back():
try:
select = input("[->] : ")
if select == "1": # export again
from ui import inputPrep
inputPrep.hostnameDefSelection()
inputPrep.ExportFileDef.hostnameLogDef()
inputPrep.inputPrep()
hostnameLog.main()
BackOpt(); select_back()
elif select == "2": # back to select file export
if selection_format == "1": # back hostname format
from ui import inputPrep
inputPrep.hostnameDefSelection()
selectionFile()
elif select == "3": # back to main menu
main()
elif select == "4": # exit
print("\n[i] Exit mikfiles ...")
sys.exit(0)
else:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except ValueError:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except KeyboardInterrupt:
print("\n\n[i] Exit mikfiles ...")
select_back()
elif selection_format == "2": # [DONE] Execute ip address modules if selection format 2
from ui import inputPrep
inputPrep.ipAddrDefSelection()
inputPrep.ExportFileDef.ipAddrLogDef()
inputPrep.inputPrep()
ipAddressLog.main()
# Back options
BackOpt()
def select_back():
try:
select = input("[->] : ")
if select == "1": # export again
from ui import inputPrep
inputPrep.ipAddrDefSelection()
inputPrep.ExportFileDef.ipAddrLogDef()
inputPrep.inputPrep()
ipAddressLog.main()
BackOpt(); select_back()
elif select == "2": # back to select file export
if selection_format == "2": # back ip address format
from ui import inputPrep
inputPrep.ExportFileDef.ipAddrLogDef()
selectionFile()
elif select == "3": # back to main menu
main()
elif select == "4": # exit
print("\n[i] Exit mikfiles ...")
sys.exit(0)
else:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except ValueError:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except KeyboardInterrupt:
print("\n\n[i] Exit mikfiles ...")
select_back()
else:
print("Unknown error")
sys.exit(0)
elif selection_file == "2": # export file config and backup
print("Export file configuration and backup file")
from modules import hostnameFileConf
from modules import ipAddressFileConf
if selection_format == "1": # [DONE] Execute hostname modules if selection format 1
from ui import inputPrep
inputPrep.hostnameDefSelection()
inputPrep.ExportFileDef.hostnameFileConfDef()
inputPrep.inputPrep()
hostnameFileConf.main()
# Back options
BackOpt()
def select_back():
try:
select = input("[->] : ")
if select == "1": # export again
from ui import inputPrep
inputPrep.hostnameDefSelection()
inputPrep.ExportFileDef.hostnameFileConfDef()
inputPrep.inputPrep()
hostnameFileConf.main()
BackOpt(); select_back()
elif select == "2": # back to select file export
if selection_format == "1": # back hostname format
from ui import inputPrep
inputPrep.ExportFileDef.hostnameFileConfDef()
selectionFile()
elif select == "3": # back to main menu
main()
elif select == "4": # exit
print("\n[i] Exit mikfiles ...")
sys.exit(0)
else:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except ValueError:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except KeyboardInterrupt:
print("\n\n[i] Exit mikfiles ...")
select_back()
elif selection_format == "2": # [DONE] Execute IP Address modules if selection format 1
from ui import inputPrep
inputPrep.ipAddrDefSelection()
inputPrep.ExportFileDef.ipAddrFileConfDef()
inputPrep.inputPrep()
ipAddressFileConf.main()
# Back options
BackOpt()
def select_back():
try:
select = input("[->] : ")
if select == "1": # export again
from ui import inputPrep
inputPrep.ipAddrDefSelection()
inputPrep.ExportFileDef.ipAddrFileConfDef()
inputPrep.inputPrep()
ipAddressFileConf.main()
BackOpt(); select_back()
elif select == "2": # back to select file export
if selection_format == "2": # back ip address format
from ui import inputPrep
inputPrep.ExportFileDef.ipAddrFileConfDef()
selectionFile()
elif select == "3": # back to main menu
main()
elif select == "4": # exit
print("\n[i] Exit mikfiles ...")
sys.exit(0)
else:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except ValueError:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except KeyboardInterrupt:
print("\n\n[i] Exit mikfiles ...")
select_back()
else:
print(f"\033[31m" + "[!]" + "\033[0m" + "Error")
sys.exit(0)
elif selection_file == "3": # Export both
print("Export both")
from modules import hostnameExBoth
from modules import ipAddressExBoth
if selection_format == "1": # [DONE] Execute hostname modules if selection format 1
from ui import inputPrep
inputPrep.hostnameDefSelection()
inputPrep.ExportFileDef.hostnameExportBoth()
inputPrep.inputPrep()
hostnameExBoth.main()
# Back options
BackOpt()
def select_back():
try:
select = input("[->] : ")
if select == "1": # export again
from ui import inputPrep
inputPrep.hostnameDefSelection()
inputPrep.ExportFileDef.hostnameExportBoth()
inputPrep.inputPrep()
hostnameExBoth.main()
BackOpt(); select_back()
elif select == "2": # back to select file export
if selection_format == "1": # back hostname format
from ui import inputPrep
inputPrep.ExportFileDef.hostnameExportBoth()
selectionFile()
elif select == "3": # back to main menu
main()
elif select == "4": # exit
print("\n[i] Exit mikfiles ...")
sys.exit(0)
else:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except ValueError:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except KeyboardInterrupt:
print("\n\n[i] Exit mikfiles ...")
select_back()
elif selection_format == "2": # [DONE] Execute IP Address modules if selection format 1
from ui import inputPrep
inputPrep.ipAddrDefSelection()
inputPrep.ExportFileDef.ipAddrExportBoth()
inputPrep.inputPrep()
ipAddressExBoth.main()
# Back options
BackOpt()
def select_back():
try:
select = input("[->] : ")
if select == "1": # export again
from ui import inputPrep
inputPrep.hostnameDefSelection()
inputPrep.ExportFileDef.ipAddrExportBoth()
inputPrep.inputPrep()
ipAddressExBoth.main()
BackOpt(); select_back()
elif select == "2": # back to select file export
if selection_format == "2": # back ip address format
from ui import inputPrep
inputPrep.ExportFileDef.ipAddrExportBoth()
selectionFile()
elif select == "3": # back to main menu
main()
elif select == "4": # exit
print("\n[i] Exit mikfiles ...")
sys.exit(0)
else:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except ValueError:
print("\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
select_back()
except KeyboardInterrupt:
print("\n\n[i] Exit mikfiles ...")
select_back()
else:
print(f"\033[31m" + "[!]" + "\033[0m" + "Error")
sys.exit(0)
elif selection_file == "4":
from modules import cronjob
os.system('clear')
cronjob.main()
# Back options
if selection_format == "1":
from ui import inputPrep
inputPrep.hostnameDefSelection()
selectionFile()
elif selection_format == "2":
from ui import inputPrep
inputPrep.ipAddrDefSelection()
selectionFile()
else:
print('error')
elif selection_file == "b":
print("[i] Back to the previous")
main()
elif selection_file == "q":
print("\n[i] Exit mikfiles ...")
sys.exit(0)
else:
print("\n\033[31m"+"[!] Error. Select menu correctly !" + "\033[0m")
selectFilesNum()
except ValueError:
print("\n\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
selectFilesNum()
except KeyboardInterrupt:
print("\n\n[i] Exit mikfiles ...")
sys.exit(0)
selectFilesNum()
def main():
# select format name
os.system('clear')
from ui import selectFormatHostname
selectFormatHostname.bannerMikfiles()
selectFormatHostname.selectFormat()
def selectionFormat():
try:
global selection_format
selection_format = str(input("[->] Select 1/2/q : "))
if selection_format == "1":
selectionFile()
elif selection_format == "2":
selectionFile()
elif selection_format == "q":
print("\n[i] Exit mikfiles ...")
sys.exit(0)
else:
print("\n\033[31m"+"[!] Error. Select menu correctly !" + "\033[0m")
selectionFormat()
except ValueError:
print("\n\033[31m"+"[!] Invalid value input. Repeat again !" + "\033[0m")
selectionFormat()
except KeyboardInterrupt:
print("\n\n[i] Exit mikfiles ...")
sys.exit(0)
selectionFormat()
if __name__ == "__main__":
main()