Skip to content

Instantly share code, notes, and snippets.

@visuve
visuve / ProcessInjector5000000.cpp
Last active October 29, 2020 19:13
Process Injector 5 000 000
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <Windows.h>
struct AutoClose
{
void operator()(void* handle)
{
@visuve
visuve / b64.py
Created April 16, 2019 16:43
Convert files to base64 and back
import argparse
import base64
'''
Convert files to b64 or back.
Author: visuve
'''
parser = argparse.ArgumentParser(description="Encode or decode file to base64")