SharpSploit icon indicating copy to clipboard operation
SharpSploit copied to clipboard

SharpSploit is a .NET post-exploitation library written in C#

Results 12 SharpSploit issues
Sort by recently updated
recently updated
newest added

## Context One may not want to install a Windows VM + install Visual Studio just to build a tool. So I tried to build SharpSploit DLL with [Mono](https://www.mono-project.com/), [MSBuild](https://github.com/dotnet/msbuild),...

@cobbr Do you have any view on when the SharpSploit.Execution.PE.Load() method will be fixed? Or could you or someone else provide some hints on where the issue currently is? I...

When calling SharpSploit.Execution.DynamicInvoke.Generic.GetSyscallStub() the call to NtFreeVirtualMemory returns an NTSTATUS = STATUS_INVALID_PARAMETER_4 (0xC00000F2). I was attempting to call "NtAllocateVirtualMemory" this way: `` IntPtr pSyscall = SharpSploit.Execution.DynamicInvoke.Generic.GetSyscallStub("NtAllocateVirtualMemory"); `` This eventually causes...

Added pass the hash functionality into SharpSploit, WMIExecute and SMBExecute based on the Invoke-TheHash codebase. Code can be tested with the following runner: ``` using System; using System.Collections.Generic; using System.Linq;...

Hi, I've been trying to build the solution and it always fails with the errors listed below. Now, I know these are because the SharpSploit project is failing to load...

The current implementation for resolving API sets (used when rebuilding the IAT) will fail if an API set is present in the import directory and uses a patch number not...

Currently, the PE loader in SharpSploit does not support passing command-line arguments. Add it.

Added signatures, structs and functions for CreateProcess using PInvoke in order to obtain the PROCESS_INFORMATION structure. This will allow us to better manage process creations and leverage features such as...

Added a modified version of [ConfigPersist](https://github.com/NotoriousRebel/ConfigPersist). What this does: 1. Create a keyfile 2. Invoke C# compiler to compile assembly with C# payload of user's choice Compilation also signs the...

## Abstract ## Two days ago I discussed with @TheWover and @FuzzySecurity about contributing to this project, and they both mentioned that D/Invoke wasn't supporting Windows on Windows x64 (hereby...