-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsec_scan.cpp
306 lines (232 loc) · 8.99 KB
/
sec_scan.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
#include <sys/utsname.h>
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <algorithm>
#include <iterator>
#include <cstdlib>
#include <array>
#include <memory>
#include <stdexcept>
#include <sstream>
using namespace std;
void printConfigValue(const string &filePath, const vector<string> &settings) { // проверяет наличие модуля pam_pwquality//5
ifstream file(filePath);
if (!file.is_open()) {
cerr << "Не удалось открыть файл: " << filePath << endl;
return;
}
string line;
while (getline(file, line)) {
for (const auto &setting : settings) {
size_t foundPos = line.find(setting);
if (foundPos != string::npos && (foundPos == 0 || line[foundPos - 1] != '#')) {
cout << line << endl;
break; // Нашли настройку, переходим к следующей строке
}
}
}
file.close();
}
bool isGuestSessionEnabled() {//доп.параметры гостевой вход
ifstream file("/etc/lightdm/lightdm.conf");
string line;
if (file.is_open()) {
while (getline(file, line)) {
if (line.find("allow-guest=") != string::npos) {
if (line.find("true") != string::npos) {
return true; // Гостевой вход включен
}
break;
}
}
file.close();
}
return false; // Гостевой вход отключен или файл конфигурации не найден
}
bool isPasswordCachingEnabled() {//кэширование паролей
ifstream file("/etc/sssd/sssd.conf");
string line;
bool cache_found = false;
if (file.is_open()) {
while (getline(file, line)) {
if (line.find("cache_credentials") != string::npos) {
stringstream ss(line);
string key, equals, value;
ss >> key >> equals >> value;
if (value == "True" || value == "true") {
cache_found = true;
break;
}
}
}
file.close();
}
return cache_found;
}
int main() {
string pwqualityPath = "/etc/security/pwquality.conf";
string loginDefsPath = "/etc/login.defs";
while(true) {
int scenario = 0;
cout << "Выберите операцию:\n";
cout << "1.Вид операционной системы.:\n";
cout << "2.Определение имени узла:\n";
cout << "3.Установленные обновления безопасности:\n";
cout << "4.Учетные записи администраторов:\n";
cout << "5.Политика паролей.:\n";
cout << "6.Аудит системы:\n";
cout << "7.Сетевые настройки:\n";
cout << "8.Запущенные сервисы:\n";
cout << "9.Файловая система:\n";
cout << "10.Анализ журналов:\n";
cout << "11.Обнаружение сканирования портов:\n";
cout << "12.Дополнительные параметры:\n";
cout << "13.Выход:\n";
cin >> scenario;
switch (scenario) {
case 1: {
cout << "Версия ядра"<< endl;
system("uname -r");
system("lsb_release -a");
}
break;
case 2: {
// Сценарий 2: Выполнение команды hostnamectl
cout << "Запуск команды hostnamectl:" << endl;
cout << endl;
int return_value = system("hostnamectl");
cout << endl;
if (return_value != 0) {
cerr << "Ошибка при выполнении команды hostnamectl." << endl;
return 1;
}
break;
}
break;
case 3:{
cout << endl;
cout << "Запуск команды 'sudo dnf list installed --security':" << endl;
system("sudo dnf list installed --security");
cout << endl;
}break;
case 4: {
cout << endl;
cout << "Запуск команды 'getent group wheel': " << endl;
int result = system("getent group wheel");
cout << endl;
if (result != 0) {
cerr << "Команда завершилась ошибкой. Произошла ошибка" << endl;
}
}
break;
case 5: {
cout << endl;
cout << "Настройки pwquality.conf:" << endl;
printConfigValue(pwqualityPath, {
"minlen", "minclass", "maxrepeat", "maxclassrepeat",
"dcredit", "ucredit", "lcredit", "ocredit"
});
cout << "Настройки login.defs:" << endl;
printConfigValue(loginDefsPath, {
"PASS_MAX_DAYS", "PASS_MIN_DAYS", "PASS_WARN_AGE", "ENCRYPT_METHOD"
});
cout << endl;
}
break;
case 6: {
cout << endl;
cout << "Запуск команды аудита Lynis': " << endl;
// Объявление переменной здесь ограничивает ее область видимости текущим case
int result = system("sudo lynis audit system");
cout << endl;
if (result != 0) {
cerr << "Произошла ошибка при выполнении команды аудита Lynis." << endl;
}
break;
}
break;
case 7: {
cout << endl;
cout << "Запуск команды проверки сети': " << endl;
cout << endl;
int result = system("ip address");
if (result != 0) {
cerr << "Произошла ошибка при выполнении команды проверки сети" << endl;
}
break;
}
break;
case 8: {
cout << endl;
cout << "Запуск команды проверки запущенных процессов': " << endl;
int result = system("systemctl list-units --type=service --state=running --no-pager -l");
cout << endl;
if (result != 0) {
cerr << "Запущенные сервисы" << endl;
}
break;
}
break;
case 9: {
cout << endl;
cout << "Запуск команды для проверки файловой системы': " << endl;
int result = system("df -Th");
cout << endl;
if (result != 0) {
cerr << "Произошла ошибка при выполнении команды проверки файловой системы" << endl;
}
break;
}
break;;
case 10:{
cout << endl;//изменить 10 задание
cout << "Выводим 10 строк логов" << endl;
system("journalctl | tail -n 10");
cout << "Общее кол-во логов" << endl;
system("journalctl | wc -l");
cout << endl;
cout << endl;
cout << "Ошибки, которые не критичны для системы" << endl;
system("journalctl -p err --no-pager -l | tail -n 10 ");
system("journalctl -p err --no-pager -l | wc -l");
cout << endl;
cout << endl;
cout << "Фильтр записи с приоритетом 'crit' (критические) за день " << endl;
system("journalctl -p crit --since '1 day ago'");
cout << endl;
}break;
case 11:{
cout << endl;
cout << "Обнаружение сканирования портов" << endl;
system("netstat -tulpn");
cout << endl;
}
break;
case 12:{
cout << endl;
cout << "Проверка состояния гостевой сессии:" << endl;
if (isGuestSessionEnabled()) {
cout << "Гостевой вход разрешен." << endl;
} else {
cout << "Гостевой вход запрещен или LightDM не используется." << endl;
}
cout << "Кэширование паролей через sssd:" << endl;
if (isPasswordCachingEnabled()) {
cout << "Кэширование паролей включено." << endl;
} else {
cout << "Кэширование паролей выключено или sssd не используется." << endl;
}
cout << endl;
}break;
case 13:{
cout << "выход"<< endl;
return 0;
}
default: {
cerr << "Выбран неверный сценарий. Выберите цифру" << endl;
}
}
}
}