Skip to content

Instantly share code, notes, and snippets.

View Bang1338's full-sized avatar
:octocat:
real

Bang1338 Bang1338

:octocat:
real
View GitHub Profile
@Washi1337
Washi1337 / DynamicLibrary.cpp
Last active October 25, 2023 16:52
Injecting unconventional entry points in a .NET module. Blog post: https://washi.dev/blog/posts/entry-points/
#include <cstdio>
#include <windows.h>
VOID WINAPI TlsCallback(PVOID DllHandle, DWORD Reason, PVOID Reserved)
{
puts("[DynamicLibrary.dll]: TLS Callback");
}
#ifdef _WIN64
#pragma comment (linker, "/INCLUDE:_tls_used")
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active May 20, 2024 18:34 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy
@tomykaira
tomykaira / Base64.h
Last active May 16, 2024 08:58
C++ single header base64 decode/encoder for C++ 11 and above.
#ifndef _MACARON_BASE64_H_
#define _MACARON_BASE64_H_
/**
* The MIT License (MIT)
* Copyright (c) 2016-2024 tomykaira
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including