├── .gitignore ├── Crypt ├── App.config ├── Crypt.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── ExecuteKatz ├── App.config ├── ExecuteKatz.cs ├── ExecuteKatz.csproj ├── FodyWeavers.xml ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── KatzAssembly ├── App.config ├── KatzAssembly.cs ├── KatzAssembly.csproj ├── KatzAssemblyKey.snk └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── LICENSE ├── NewApproach ├── App.config ├── NewApproach.cs ├── NewApproach.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── gam.snk ├── NonInteractiveMimikatz ├── App.config ├── Execution │ ├── DynamicInvoke │ │ ├── Generic.cs │ │ └── Native.cs │ ├── Native.cs │ ├── PE.cs │ ├── PlatformInvoke │ │ └── Win32.cs │ └── Win32.cs ├── Generic │ └── Generic.cs ├── Misc │ └── Utilities.cs ├── NonInteractiveKatz.cs ├── NonInteractiveKatz.csproj └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── README.md ├── ReadOnlyFileIconOverlayHandler ├── App.config ├── Key.snk ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── ReadOnlyFileIconOverlayHandler.cs ├── ReadOnlyFileIconOverlayHandler.csproj ├── Resources │ └── ReadOnly.ico └── packages.config ├── RegWizards ├── reg_all.bat ├── reg_all_hku.bat ├── reg_del_all.bat └── reg_del_all_hku.bat ├── SneakyRun.sln └── TestLoadb64 ├── App.config ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── Resources └── download.dat ├── TestLoadb64.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/.gitignore -------------------------------------------------------------------------------- /Crypt/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/Crypt/App.config -------------------------------------------------------------------------------- /Crypt/Crypt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/Crypt/Crypt.csproj -------------------------------------------------------------------------------- /Crypt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/Crypt/Program.cs -------------------------------------------------------------------------------- /Crypt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/Crypt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExecuteKatz/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ExecuteKatz/App.config -------------------------------------------------------------------------------- /ExecuteKatz/ExecuteKatz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ExecuteKatz/ExecuteKatz.cs -------------------------------------------------------------------------------- /ExecuteKatz/ExecuteKatz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ExecuteKatz/ExecuteKatz.csproj -------------------------------------------------------------------------------- /ExecuteKatz/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ExecuteKatz/FodyWeavers.xml -------------------------------------------------------------------------------- /ExecuteKatz/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ExecuteKatz/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExecuteKatz/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ExecuteKatz/packages.config -------------------------------------------------------------------------------- /KatzAssembly/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/KatzAssembly/App.config -------------------------------------------------------------------------------- /KatzAssembly/KatzAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/KatzAssembly/KatzAssembly.cs -------------------------------------------------------------------------------- /KatzAssembly/KatzAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/KatzAssembly/KatzAssembly.csproj -------------------------------------------------------------------------------- /KatzAssembly/KatzAssemblyKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/KatzAssembly/KatzAssemblyKey.snk -------------------------------------------------------------------------------- /KatzAssembly/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/KatzAssembly/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KatzAssembly/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/KatzAssembly/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /KatzAssembly/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/KatzAssembly/Properties/Resources.resx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/LICENSE -------------------------------------------------------------------------------- /NewApproach/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NewApproach/App.config -------------------------------------------------------------------------------- /NewApproach/NewApproach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NewApproach/NewApproach.cs -------------------------------------------------------------------------------- /NewApproach/NewApproach.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NewApproach/NewApproach.csproj -------------------------------------------------------------------------------- /NewApproach/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NewApproach/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NewApproach/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NewApproach/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /NewApproach/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NewApproach/Properties/Resources.resx -------------------------------------------------------------------------------- /NewApproach/gam.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NewApproach/gam.snk -------------------------------------------------------------------------------- /NonInteractiveMimikatz/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/App.config -------------------------------------------------------------------------------- /NonInteractiveMimikatz/Execution/DynamicInvoke/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/Execution/DynamicInvoke/Generic.cs -------------------------------------------------------------------------------- /NonInteractiveMimikatz/Execution/DynamicInvoke/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/Execution/DynamicInvoke/Native.cs -------------------------------------------------------------------------------- /NonInteractiveMimikatz/Execution/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/Execution/Native.cs -------------------------------------------------------------------------------- /NonInteractiveMimikatz/Execution/PE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/Execution/PE.cs -------------------------------------------------------------------------------- /NonInteractiveMimikatz/Execution/PlatformInvoke/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/Execution/PlatformInvoke/Win32.cs -------------------------------------------------------------------------------- /NonInteractiveMimikatz/Execution/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/Execution/Win32.cs -------------------------------------------------------------------------------- /NonInteractiveMimikatz/Generic/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/Generic/Generic.cs -------------------------------------------------------------------------------- /NonInteractiveMimikatz/Misc/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/Misc/Utilities.cs -------------------------------------------------------------------------------- /NonInteractiveMimikatz/NonInteractiveKatz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/NonInteractiveKatz.cs -------------------------------------------------------------------------------- /NonInteractiveMimikatz/NonInteractiveKatz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/NonInteractiveKatz.csproj -------------------------------------------------------------------------------- /NonInteractiveMimikatz/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NonInteractiveMimikatz/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /NonInteractiveMimikatz/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/NonInteractiveMimikatz/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SneakyRun 2 | Run Assembly in separate AppDomain 3 | -------------------------------------------------------------------------------- /ReadOnlyFileIconOverlayHandler/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ReadOnlyFileIconOverlayHandler/App.config -------------------------------------------------------------------------------- /ReadOnlyFileIconOverlayHandler/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ReadOnlyFileIconOverlayHandler/Key.snk -------------------------------------------------------------------------------- /ReadOnlyFileIconOverlayHandler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ReadOnlyFileIconOverlayHandler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ReadOnlyFileIconOverlayHandler/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ReadOnlyFileIconOverlayHandler/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ReadOnlyFileIconOverlayHandler/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ReadOnlyFileIconOverlayHandler/Properties/Resources.resx -------------------------------------------------------------------------------- /ReadOnlyFileIconOverlayHandler/ReadOnlyFileIconOverlayHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ReadOnlyFileIconOverlayHandler/ReadOnlyFileIconOverlayHandler.cs -------------------------------------------------------------------------------- /ReadOnlyFileIconOverlayHandler/ReadOnlyFileIconOverlayHandler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ReadOnlyFileIconOverlayHandler/ReadOnlyFileIconOverlayHandler.csproj -------------------------------------------------------------------------------- /ReadOnlyFileIconOverlayHandler/Resources/ReadOnly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ReadOnlyFileIconOverlayHandler/Resources/ReadOnly.ico -------------------------------------------------------------------------------- /ReadOnlyFileIconOverlayHandler/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/ReadOnlyFileIconOverlayHandler/packages.config -------------------------------------------------------------------------------- /RegWizards/reg_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/RegWizards/reg_all.bat -------------------------------------------------------------------------------- /RegWizards/reg_all_hku.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/RegWizards/reg_all_hku.bat -------------------------------------------------------------------------------- /RegWizards/reg_del_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/RegWizards/reg_del_all.bat -------------------------------------------------------------------------------- /RegWizards/reg_del_all_hku.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/RegWizards/reg_del_all_hku.bat -------------------------------------------------------------------------------- /SneakyRun.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/SneakyRun.sln -------------------------------------------------------------------------------- /TestLoadb64/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/TestLoadb64/App.config -------------------------------------------------------------------------------- /TestLoadb64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/TestLoadb64/Program.cs -------------------------------------------------------------------------------- /TestLoadb64/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/TestLoadb64/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestLoadb64/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/TestLoadb64/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TestLoadb64/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/TestLoadb64/Properties/Resources.resx -------------------------------------------------------------------------------- /TestLoadb64/Resources/download.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/TestLoadb64/Resources/download.dat -------------------------------------------------------------------------------- /TestLoadb64/TestLoadb64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/TestLoadb64/TestLoadb64.csproj -------------------------------------------------------------------------------- /TestLoadb64/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gam4er/SneakyRun/HEAD/TestLoadb64/packages.config --------------------------------------------------------------------------------