Skip to content

Instantly share code, notes, and snippets.

View wireless90's full-sized avatar
💭
I may be slow to respond.

wireless90

💭
I may be slow to respond.
View GitHub Profile
@wireless90
wireless90 / evil.cs
Created January 8, 2022 23:49 — forked from nicholasmckinney/evil.cs
Execute a DLL via Regsvr32
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using RGiesecke.DllExport;
namespace Export
{
class Test
{
@wireless90
wireless90 / Win10Bypass.cs
Created January 8, 2022 23:49 — forked from nicholasmckinney/Win10Bypass.cs
Windows 10 Prototype Bypass Applocker
using System;
using System.Diagnostics;
using System.Reflection;
using System.Configuration.Install;
using System.Runtime.InteropServices;
/*
Author: Casey Smith, Twitter: @subTee
License: BSD 3-Clause
Step One:
/*
* A simple Windows 32-bit DLL injector
*
* Note that this does not attempt to be "stealthy". If you are
* using this to inject hacks into games, prepare to be banned.
*
* To start a process and inject a DLL before main() is called:
* CreateProcessWithDll("path/to/program.exe", "--program-args", "path/to/library.dll");
*
* To inject a DLL into an already-running process: