Skip to content

Instantly share code, notes, and snippets.

@cobbr
Created November 6, 2018 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cobbr/02437512aca6426492762bc607241268 to your computer and use it in GitHub Desktop.
Save cobbr/02437512aca6426492762bc607241268 to your computer and use it in GitHub Desktop.
--> SharpGen
|---> Source // Generated binaries will be compiled against all source code under this directory
|---> SharpSploit // SharpSploit source code
|---> References // Generated binaries will references DLLs listed under this directory during compilation
|---> references.yml // References configuration file that directs SharpGen on which DLLs to reference during compilation
|---> net35 // Directory for .NET Framework 3.5 references DLLs
|---> net40 // Directory for .NET Framework 4.0 references DLLs
|---> Resources // Generated binaries will embed resources under this directory during compilation
|---> resources.yml // Resources configuration file that directs SharpGen on which resources to embed in generated binaries
|---> powerkatz_x64.dll // Mimikatz 64-bit dll
|---> powerkatz_x64.dll.comp // Mimikatz 64-bit dll, compressed using the built-in System.IO.Compression library
|---> powerkatz_x86.dll // Mimikatz 32-bit dll
|---> powerkatz_x86.dll.comp // Mimikatz 32-bit dll, compressed using the built-in System.IO.Compression library
|---> confuse.cr // ConfuserEx project file, used to (optionally) protect generated binaries with ConfuserEx
|---> Output // Generated binaries will be written under the Output directory.
|---> SharpGen.csproj // SharpGen Project file
|---> Dockerfile // Used to execute SharpGen from a docker container!
|---> bin // SharpGen binaries
|---> obj // SharpGen obj folder
|---> refs // SharpGen references
|---> src // SharpGen source
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment