Skip to content

Instantly share code, notes, and snippets.

View M0nteCarl0's full-sized avatar
evolve or repeat

Alex M0nteCarl0

evolve or repeat
View GitHub Profile
@M0nteCarl0
M0nteCarl0 / check_auth_anomalies.py
Created July 27, 2023 06:27
Trivial SIEM python stages for MITM attack
import datetime
def analyze_authentication_logs(log_file):
with open(log_file, 'r') as file:
for line in file:
# Анализ строк лога для обнаружения аномалий аутентификации
# Например, обнаружение повышенной активности в аккаунтах пользователей
if 'login failed' in line:
# Ваш код обработки аномалии повышенной активности в аккаунтах
@M0nteCarl0
M0nteCarl0 / RdJson.sh
Created July 27, 2023 06:21
Redis to json
#!/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 "*")
@M0nteCarl0
M0nteCarl0 / siem_corelation.cpp
Created July 26, 2023 08:33
SIEM json corelation engine
#include <iostream>
#include <fstream>
#include <vector>
#include <unordered_map>
#include <functional>
#include <cstdlib>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
@M0nteCarl0
M0nteCarl0 / waf_request_parsing.cpp
Created July 26, 2023 06:34
Web aplication firewall request parsing example
#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
@M0nteCarl0
M0nteCarl0 / Boost_HTTP_proxy.cpp
Last active July 29, 2023 10:56
Simple HTTP Proxy on C++, python, Golang, Julia
#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 для разрешения имени хоста сервера
@M0nteCarl0
M0nteCarl0 / rules_from_file.cpp
Created July 26, 2023 06:23
System of rules from json
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <jsoncpp/json/json.h>
// Структура правила
struct Rule {
std::string condition;
std::string action;
@M0nteCarl0
M0nteCarl0 / camera_emulator_kernel.c
Created July 25, 2023 05:55
Linux camera emulation module
#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"
@M0nteCarl0
M0nteCarl0 / pandas_complex_filter.py
Created July 24, 2023 11:13
Complex pandas example
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)
@M0nteCarl0
M0nteCarl0 / http_data_extractor.c
Created July 24, 2023 11:04
Example for extact HTTP header and body from raw packets via PcapPlusPlus
#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>();
@M0nteCarl0
M0nteCarl0 / capture_and_extract_tcp_flags.c
Created July 24, 2023 10:45
Capture via PcapPlusPlus and extarct tcp flahs
#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>();