This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <regex> | |
bool isRequestMalicious(const std::string& request) { | |
// Define the patterns to match for malicious requests | |
std::regex xssPattern("<script>|<\\/script>|<img\\s+src=[\"']javascript:"); | |
std::regex sqlInjectionPattern(";\\s*(?:--|#|\\/\\*)"); | |
// Check if the request matches any of the malicious patterns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <fstream> | |
#include <vector> | |
#include <unordered_map> | |
#include <functional> | |
#include <cstdlib> | |
#include <nlohmann/json.hpp> | |
using json = nlohmann::json; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Установите имя базы данных Redis | |
redis_db_name="my_redis_db" | |
# Установите имя JSON файла для сохранения данных | |
json_file_name="${redis_db_name}.json" | |
# Получите все ключи Redis из базы данных | |
redis_keys=$(redis-cli -n 0 keys "*") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import datetime | |
def analyze_authentication_logs(log_file): | |
with open(log_file, 'r') as file: | |
for line in file: | |
# Анализ строк лога для обнаружения аномалий аутентификации | |
# Например, обнаружение повышенной активности в аккаунтах пользователей | |
if 'login failed' in line: | |
# Ваш код обработки аномалии повышенной активности в аккаунтах |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import syslog | |
import redis | |
import sqlite3 | |
# Подключение к Redis | |
redis_client = redis.Redis(host='localhost', port=6379) | |
# Подключение к SQLite | |
conn = sqlite3.connect('syslog.db') | |
cursor = conn.cursor() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Notifications</title> | |
<script> | |
var socket = new WebSocket("ws://" + window.location.host + "/ws"); | |
socket.onmessage = function(event) { | |
var notification = JSON.parse(event.data); | |
alert("Title: " + notification.title + "\nMessage: " + notification.message); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Есть несколько алгоритмов балансировки нагрузки, которые могут быть использованы в балансировщиках нагрузки. Вот несколько примеров: | |
Round Robin (циклический): | |
Балансировщик нагрузки последовательно отправляет запросы к каждому серверу в циклическом порядке. | |
Каждый следующий запрос отправляется на следующий сервер в списке. | |
Этот алгоритм прост в реализации, но не учитывает текущую нагрузку серверов. | |
Least Connection (с наименьшим количеством соединений): | |
Балансировщик нагрузки направляет запросы к серверу с наименьшим количеством активных соединений. | |
Это позволяет распределить нагрузку равномерно между серверами в зависимости от их текущей загрузки. | |
Однако этот алгоритм требует отслеживания состояния каждого соединения на всех серверах. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"net" | |
"sync" | |
) | |
type ActiveConnection struct { | |
conn net.Conn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
"net" | |
"os" | |
) | |
func readMessages(reader *bufio.Reader) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"sync" | |
) | |
// ConnectionManager интерфейс определяет методы для управления соединениями | |
type ConnectionManager interface { | |
AddConnection(connection Connection) |