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
#!/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
#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
#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 <string> | |
#include <boost/asio.hpp> | |
// Функция для обработки HTTP запроса и отправки его на сервер | |
void handleRequest(boost::asio::ip::tcp::socket& clientSocket, const std::string& serverHost, const std::string& serverPort) { | |
// Создание объекта io_context | |
boost::asio::io_context ioContext; | |
// Создание объекта resolver для разрешения имени хоста сервера |
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 <string> | |
#include <jsoncpp/json/json.h> | |
// Структура правила | |
struct Rule { | |
std::string condition; | |
std::string action; |
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 <linux/kernel.h> | |
#include <linux/module.h> | |
#include <linux/fs.h> | |
#include <linux/types.h> | |
#include <linux/cdev.h> | |
#include <linux/device.h> | |
#include <linux/slab.h> | |
#define MODULE_NAME "camera_emulator" | |
#define DEVICE_NAME "camera" |
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 pandas as pd | |
# Создаем пример DataFrame | |
data = { | |
'Name': ['John', 'Alice', 'Bob', 'Charlie'], | |
'Age': [25, 30, 35, 40], | |
'Country': ['USA', 'Canada', 'UK', 'Australia'] | |
} | |
df = pd.DataFrame(data) |
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 <stdlib.h> | |
#include <Packet.h> | |
#include <PcapLiveDeviceList.h> | |
#include <HttpLayer.h> | |
void packetHandler(pcpp::RawPacket* packet, pcpp::PcapLiveDevice* dev, void* cookie) { | |
// Получаем пакет HTTP | |
pcpp::Packet parsedPacket(packet); | |
pcpp::HttpRequestLayer* httpLayer = parsedPacket.getLayerOfType<pcpp::HttpRequestLayer>(); |
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 <stdlib.h> | |
#include <Packet.h> | |
#include <PcapLiveDeviceList.h> | |
#include <TcpLayer.h> | |
void packetHandler(pcpp::RawPacket* packet, pcpp::PcapLiveDevice* dev, void* cookie) { | |
// Получаем пакет TCP | |
pcpp::Packet parsedPacket(packet); | |
pcpp::TcpLayer* tcpLayer = parsedPacket.getLayerOfType<pcpp::TcpLayer>(); |