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
@mivade
mivade / zmq_auth.py
Last active December 30, 2023 12:57
ZeroMQ Curve authentication demo
"""Simple demonstration of using ZMQ's Curve authentication.
This demo is adapted from the examples given in the `PyZMQ repository`__. Key
differences include:
* Using ``setsockopt`` to set Curve parameters instead of setting attributes
directly (help out your IDE!)
* Integration with ``asyncio``
__ https://github.com/zeromq/pyzmq/tree/master/examples
@blakebjorn
blakebjorn / app.py
Created June 18, 2019 12:37
Example communication between flask application and python worker using zeroMQ
import zmq
from flask import Flask
from threading import Thread
HOST = '127.0.0.1'
PORT = 9090
TASK_SOCKET = zmq.Context().socket(zmq.REQ)
TASK_SOCKET.connect('tcp://{}:{}'.format(HOST, PORT))
app = Flask("app")
@raulqf
raulqf / Install_OpenCV4_CUDA12.6_CUDNN8.9.md
Last active April 2, 2025 02:44
How to install OpenCV 4.10 with CUDA 12 in Ubuntu 24.04

Install OpenCV 4.10 with CUDA 12.6 and CUDNN 8.9 in Ubuntu 24.04

First of all install update and upgrade your system:

    $ sudo apt update
    $ sudo apt upgrade

Then, install required libraries:

@jagannath-sahoo
jagannath-sahoo / CharDriver.c
Created June 1, 2019 12:27
Char Device Driver Example
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/version.h>
#include <linux/init.h>
#include <linux/device.h>
#include <linux/pci.h>
#include <linux/ioport.h>
#include <asm/unistd.h>
#include <linux/slab.h>
#include <linux/fs.h>
@rikka0w0
rikka0w0 / KernelModule_Armbian_4.19.20.md
Last active January 18, 2024 00:16
Build kernel module for Armbian with 4.19.20 kernel
  1. Get the kernel headers from https://apt.armbian.com/pool/main/l/linux-4.19.20-sunxi/
  2. Download and unzip the linux-headers-next-sunxi_5.75_armhf.deb file and then unzip the data.tar.xz
  3. Extract /./usr/src/linux-headers-4.19.20-sunxi to any location
  4. Goto that folder, execute ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make scripts. Athough it throws tons of error, it should be able to build the necessary scripts.
  5. Makefile:
export ARCH:=arm
export CROSS_COMPILE:=arm-linux-gnueabihf-
@mpusz
mpusz / alternatives.sh
Last active February 12, 2025 17:45
Ubuntu scripts
#/bin/bash
sudo update-alternatives --remove-all gcc
sudo update-alternatives --remove-all g++
sudo update-alternatives --remove-all clang
sudo update-alternatives --remove-all clang++
sudo update-alternatives --remove-all cc
sudo update-alternatives --remove-all c++
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70 --slave /usr/bin/g++ g++ /usr/bin/g++-7
@unoexperto
unoexperto / patch_apk_for_sniffing.md
Last active March 22, 2025 12:56
How to patch Android app to sniff its HTTPS traffic with self-signed certificate

How to patch Android app to sniff its HTTPS traffic with self-signed certificate

  • Download apktool from https://ibotpeaches.github.io/Apktool/
  • Unpack apk file: java -jar /home/expert/work/tools/apktool.jar d [email protected]
  • Modify AndroidManifest.xml by adding android:networkSecurityConfig="@xml/network_security_config" attribute to application element.
  • Create file /res/xml/network_security_config.xml with following content:
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <base-config>
@tkaewplik
tkaewplik / threadpool.md
Created February 14, 2018 03:29
Thread Pool And TQDM

Thread Pool

In python you can run multiple processes, I will write the example which we create our own class.

# thread pool
from Queue import Queue
from threading import Thread
from swf2cpp_logger import rootLogger
import sys
import time
@mgeeky
mgeeky / xml-attacks.md
Last active March 14, 2025 17:33
XML Vulnerabilities and Attacks cheatsheet

XML Vulnerabilities

XML processing modules may be not secure against maliciously constructed data. An attacker could abuse XML features to carry out denial of service attacks, access logical files, generate network connections to other machines, or circumvent firewalls.

The penetration tester running XML tests against application will have to determine which XML parser is in use, and then to what kinds of below listed attacks that parser will be vulnerable.


@jaradc
jaradc / entropy_calculation_in_python.py
Last active November 18, 2024 16:15
Four different ways to calculate entropy in Python
import numpy as np
from scipy.stats import entropy
from math import log, e
import pandas as pd
import timeit
def entropy1(labels, base=None):
value,counts = np.unique(labels, return_counts=True)
return entropy(counts, base=base)