-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
445 lines (377 loc) · 11.1 KB
/
main.cpp
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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
#include <iostream>
#include <fstream>
#include <string>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <dirent.h>
#include <unistd.h>
#include "class/SysCommand.h"
#include "class/MakeFile.h"
#include "class/ExistDirFile.h"
#include "class/Validate.h"
//make standard library name space
using namespace std;
// start main of DSCv project
int main()
{
//make input string variable
string pointer,
dominName,
ipAddress,
optionv4,
zoneDirectory,
allowQuery,
typeZone,
allowUpdate,
linuxType,
linuxName,
bindInstallStatus,
line;
//make input boolian variable
//defualt bind dns options
bool recurasion = false;
bool dnssec_enable = true;
bool dnssec_validation = true;
bool bindInstall = false;
bool bindBackupExist = false;
bool ipVer4Status = false;
bool dominNameStatus = false;
char getKeyPress;
SysCommand easyBindConfighelp;
//check linux distro
ifstream getLinuxType;
getLinuxType.open("/etc/os-release");
if(getLinuxType.is_open())
{
while(!getLinuxType.eof())
{
getline(getLinuxType, line);
if(line.find("ID=ubuntu", 0) != string::npos)
{
linuxType = "Ubuntu";
linuxName = "Ubuntu";
}
else if(line.find("ID=linuxmint", 0) != string::npos)
{
linuxType = "Ubuntu";
linuxName = "Mint";
}
else if(line.find("ID=kali", 0) != string::npos)
{
linuxType = "Ubuntu";
linuxName = "Kali";
}
else if(line.find("ID=\"centos\"", 0) != string::npos)
{
linuxType = "Centos";
linuxName = "Centos";
}
else if(line.find("ID=fedora", 0) != string::npos)
{
linuxType = "Centos";
linuxName = "Fedora";
}
else if(line.find("ID=debian", 0) != string::npos)
{
linuxType = "Ubuntu";
linuxName = "Debian";
}
}
}
while(true)
{
//check bind is install
ExistDirFile ExistDirObject;
bindInstall = ExistDirObject.bindIsInstall(linuxType);
//return bind install status
SysCommand BindStatus;
bindInstallStatus = BindStatus.bindInstallStatus(bindInstall);
//run command
SysCommand syscommand;
if(linuxName == "")
{
linuxType = "Unknown os";
linuxName = "Unknown os";
}
system("reset");
cout << "Easy Bind Config version 0.1 \n";
cout << "-------------------------------------------------------\n";
cout << " + EBC help to you make easy CONFIG and ZOON file for Bind Dns Server \n";
cout << " + Author : VAHID HEIDARI \n";
cout << " + Author EMAIL : [email protected] \n";
cout << " + License : MIT License \n";
cout << "-------------------------------------------------------\n";
cout << "Your linux is : " << linuxName << " distro " << endl;
cout << "\n";
cout << "Bind dns server is : " << bindInstallStatus << endl;
cout << "-------------------------------------------------------\n";
if(linuxType == "Unknown os")
{
cout << "EBC Unkhowe Os and not work on linux distro !\n";
cout << "easyBindConfig only work on Ubuntu,Mint,Centos,Fedora,Debian \n";
cout << "-------------------------------------------------------\n";
usleep(3000000);
syscommand.exitFromEbc();
}
//check BindBackup is exist in /etc/bind
bindBackupExist = ExistDirObject.chekingBindBackup(linuxType);
if(bindInstall)
{
//get command by pointer
cout << "For initial bind server please type 'config' \n";
cout << " +If you need help type 'help' \n";
cout << "EBC > ";
cin >> pointer;
if(pointer == "config")
{
if(linuxType == "Ubuntu")
{
if(!bindBackupExist)
{
//make backup from bind file
SysCommand bindBackUpFile;
bindBackUpFile.copyAndMakeBackup(linuxType);
}
cout << "EBC find Bind Dns Server software \n";
cout << " +Please insert ip server ex = 48.10.15.30\n";
cout << "EBC > ";
cin >> pointer;
if(pointer == "exit")
{
syscommand.exitFromEbc();
}
else if(pointer == "back")
{
continue;
}
else if(pointer == "help")
{
easyBindConfighelp.help();
}
else
{
ipAddress = pointer;
//chack ipAddress version 4
Validate validInput;
ipVer4Status = validInput.validateIpV4Address(ipAddress);
if(!ipVer4Status)
{
cout << "Your input ip is not valid ! Please Wait easyBindConfig restart...\n";
usleep(3000000);
continue;
}
cout << " +Please insert domin name ex = mydomin.com\n";
cout << "EBC > ";
cin >> pointer;
if(pointer == "exit")
{
syscommand.exitFromEbc();
}
else if(pointer == "back")
{
continue;
}
else if(pointer == "help")
{
easyBindConfighelp.help();
}
else
{
dominName = pointer;
//check dominName input by user
dominNameStatus = validInput.validateDomineName(dominName);
if(!dominNameStatus)
{
cout << "Your input domine name is not valid ! Please Wait easyBindConfig restart...\n";
usleep(3000000);
continue;
}
// making bind9 file in /etc/default/bind9
MakeFile makeBind9;
makeBind9.ubuntuMakeBind9File();
// make and backup zone file in /etc/bind/zones
// update zone and master file
MakeFile MakeZoneFile;
MakeZoneFile.updateZoneInNamedFile(linuxType, dominName);
MakeZoneFile.updateReversInNamedFile(linuxType, ipAddress);
// make zone file and master file
MakeZoneFile.makeZoneFile(linuxType, dominName, ipAddress);
MakeZoneFile.makeReversFile(linuxType, dominName, ipAddress);
system("reset");
cout << "Please wite ... \n";
cout << "------------------------------------------------ \n";
cout << "BIND IS NOW CONFIG BY easyBindConfig ;-)\n";
cout << "------------------------------------------------ \n";
cout << "Your ip address : " << ipAddress << endl;
cout << "Your domin name : " << dominName << endl;
cout << "Your nameserver : " << "dns1." << dominName << endl;
cout << "Your nameserver : " << "dns2." << dominName << endl;
cout << "------------------------------------------------ \n";
//restart bind dns server
syscommand.bindServiceRestart(linuxType);
usleep(10000000);
}
}
}
else if(linuxType == "Centos")
{
if(!bindBackupExist)
{
//make backup from bind file
SysCommand bindBackUpFile;
bindBackUpFile.copyAndMakeBackup(linuxType);
}
cout << "EBC find Bind Dns Server software \n";
cout << " +Please insert ip server ex = 48.10.15.30\n";
cout << "EBC > ";
cin >> pointer;
if(pointer == "exit")
{
syscommand.exitFromEbc();
}
else if(pointer == "back")
{
continue;
}
else if(pointer == "help")
{
easyBindConfighelp.help();
}
else
{
ipAddress = pointer;
//chack ipAddress version 4
Validate validInput;
ipVer4Status = validInput.validateIpV4Address(ipAddress);
if(!ipVer4Status)
{
cout << "Your input ip is not valid ! Please Wait easyBindConfig restart...\n";
usleep(3000000);
continue;
}
cout << " +Please insert domin name ex = mydomin.com\n";
cout << "EBC > ";
cin >> pointer;
if(pointer == "exit")
{
syscommand.exitFromEbc();
}
else if(pointer == "back")
{
continue;
}
else if(pointer == "help")
{
easyBindConfighelp.help();
}
else
{
dominName = pointer;
//check dominName input by user
dominNameStatus = validInput.validateDomineName(dominName);
if(!dominNameStatus)
{
cout << "Your input domine name is not valid ! Please Wait easyBindConfig restart...\n";
usleep(3000000);
continue;
}
// make and backup zone file in /etc/bind/zones
// update zone and master file
MakeFile MakeZoneFile;
MakeZoneFile.updateZoneInNamedFile(linuxType, dominName);
MakeZoneFile.updateReversInNamedFile(linuxType, ipAddress);
// make zone file and master file
MakeZoneFile.makeZoneFile(linuxType, dominName, ipAddress);
MakeZoneFile.makeReversFile(linuxType, dominName, ipAddress);
system("reset");
cout << "Please wite ... \n";
cout << "------------------------------------------------ \n";
cout << "BIND IS NOW CONFIG BY easyBindConfig ;-)\n";
cout << "------------------------------------------------ \n";
cout << "Your ip address : " << ipAddress << endl;
cout << "Your domin name : " << dominName << endl;
cout << "Your nameserver : " << "dns1." << dominName << endl;
cout << "Your nameserver : " << "dns2." << dominName << endl;
cout << "------------------------------------------------ \n";
//restart bind dns server
syscommand.bindServiceRestart(linuxType);
usleep(10000000);
}
}
}
else if(linuxType == "Fedora")
{
//todo
}
else if(linuxType == "Debian")
{
//todo
}
}
else if(pointer == "help")
{
easyBindConfighelp.help();
}
else if(pointer == "remove")
{
syscommand.bindServiceUnistall(linuxType);
}
else if(pointer == "restore")
{
syscommand.restoreOrginalfile(linuxType);
}
else if(pointer == "start")
{
syscommand.bindServiceStart(linuxType);
}
else if(pointer == "stop")
{
syscommand.bindServiceStop(linuxType);
}
else if(pointer == "enable")
{
syscommand.bindServiceEnable(linuxType);
}
else if(pointer == "disable")
{
syscommand.bindServiceDisable(linuxType);
}
else if(pointer == "reset")
{
syscommand.bindServiceRestart(linuxType);
}
else if(pointer == "exit")
{
syscommand.exitFromEbc();
}
}
else
{
cout << "EBC NOTfind Bind Dns Server software \n";
cout << " +For install Bind Dns Server Soft type 'install' \n";
cout << "EBC > ";
cin >> pointer;
if(pointer == "install")
{
//install bind service on linux by linuxType
SysCommand BindServiceInstall;
BindServiceInstall.bindServiceInstall(linuxType);
BindServiceInstall.bindServiceStart(linuxType);
BindServiceInstall.bindServiceEnable(linuxType);
}
else if(pointer == "help")
{
easyBindConfighelp.help();
}
else if(pointer == "exit")
{
syscommand.exitFromEbc();
}
system("clear");
bindInstall = true;
continue;
}
} //end of while
}