• Stars
    star
    100
  • Rank 339,024 (Top 7 %)
  • Language
    C#
  • Created over 6 years ago
  • Updated almost 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A tool to run .Net DLLs from the command line

RunDotNetDll32 - Execute a .Net DLL method from the command line

Execute a static method with Assembly.LoadFile

rundotnetdll32.exe assembly.dll,class,method arguments

Execute a static method with Type.GetType

rundotnetdll32.exe -t assembly.dll,class,method arguments

  • Execute Implant.RunCMD method

    • rundotnetdll32.exe -t WheresMyImplant.dll,Implant,RunCMD whoami

Listing the contents of and assembly

  • Listing namespaces in an assembly

    • rundotnetdll32.exe -l WheresMyImplant.dll
  • Listing classes in a namespace

    • rundotnetdll32.exe -l WheresMyImplant.dll -n WheresMyImplant
  • Listing methods in a class

    • rundotnetdll32.exe -l WheresMyImplant.dll -n WheresMyImplant -c Implant
  • Listing parameters for a method

    • rundotnetdll32.exe -l WheresMyImplant.dll -n WheresMyImplant -c Implant -m RunPowerShell