Skip to content

Instantly share code, notes, and snippets.

View D4stiny's full-sized avatar
🎯
Focusing

Bill Demirkapi D4stiny

🎯
Focusing
View GitHub Profile
@D4stiny
D4stiny / LowUtilities.cpp
Last active February 19, 2026 05:36
A dependency-less implementation of GetModuleHandle and GetProcAddress.
//
// An implementation of GetModuleHandle and GetProcAddress that works with manually mapped modules, forwarded exports,
// without a CRT standard library, and uses no Windows API or dependencies.
//
// Author: Bill Demirkapi
// License: MIT, appended at the bottom of this document if you care about licensing and want to credit me in your own project.
//
#include <Windows.h>
#include <winternl.h>
D779D38405E8828F5CB27C2C3D75867C6A9AA30E0BD003FECF0401BFA6F9C8C7
@D4stiny
D4stiny / gist:f339cbac4a9f8f2eeec63778bf546f28
Created February 4, 2021 01:28
Hello stranger, another hash for my collection.
5169c2b0b13a9b713b3d388e61eb007672e2377afd53720a61231491a4b627f7
@D4stiny
D4stiny / gist:c5309533b3b07cb5f6067757e449a759
Created January 25, 2021 00:01
Just a hash for later...
3C6F60C412CCB3AADBF09887C82D50A0B1DA250445EB8970D86087C086CDF48C
@D4stiny
D4stiny / Macro_Scrambler.py
Created September 16, 2020 07:08
Corrupts macro documents to prevent static analysis by anti-virus while still allowing for the document to be opened in Microsoft Word.
import sys
import zipfile
import random
def get_zip_file_header_offset(zip_filename, target_filename):
"""
Parse the file header offset for a target_filename.
:param zip_filename: The name of the zip file to read.
:param target_filename: The name of the file to find the header of.