Skip to content

Instantly share code, notes, and snippets.

View OJ's full-sized avatar
🧗
E_NOTENOUGHTIME

OJ Reeves OJ

🧗
E_NOTENOUGHTIME
View GitHub Profile
@hfiref0x
hfiref0x / main.c
Last active May 15, 2023 17:33
NtLoadEnclaveData Windows 10 RS3 DSE bypass
// Original source link https://twitter.com/hFireF0X/status/887930221466443776
// If you are here from any other link - do know that they just steal original info without giving any credit to source
// This bug has been fixed in 16273 public build.
#include "global.h"
HINSTANCE g_hInstance;
HANDLE g_ConOut = NULL;
BOOL g_ConsoleOutput = FALSE;
WCHAR g_BE = 0xFEFF;
@scaryghost
scaryghost / win_dnssd.cpp
Last active December 23, 2015 02:29
How to do SRV and TXT query with windns.h
/**
* Compiled on VS2012
*/
#include <winsock2.h> //winsock
#include <windns.h> //DNS api's
#include <Rpc.h>
#include <iostream>
#include <functional>
#include <map>
@brianlow
brianlow / FindConflictingReferences.cs
Created January 3, 2012 03:04
Find conflicting assembly references
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using NUnit.Framework;
namespace MyProject
{
[TestFixture]