├── .gitignore ├── AgentCode ├── AgentFunctions │ ├── BofExec │ │ ├── BofExec_Code │ │ │ ├── BofExec.cs │ │ │ └── Internals │ │ │ │ ├── BofRunner.cs │ │ │ │ ├── Coff.cs │ │ │ │ ├── IAT.cs │ │ │ │ ├── ImageParts.cs │ │ │ │ ├── NativeDeclarations.cs │ │ │ │ └── ParsedArgs.cs │ │ └── beacon_funcs │ │ │ ├── Makefile │ │ │ ├── beacon_funcs.c │ │ │ ├── beacon_funcs.h │ │ │ ├── beacon_funcs.x64.o │ │ │ └── beacon_funcs.x86.o │ ├── CommandInterface.cs │ ├── Download.cs │ ├── InlineAssembly.cs │ ├── InlinePE.cs │ ├── Ls.cs │ ├── Powershell.cs │ ├── Shell.cs │ ├── Sleep.cs │ └── Upload.cs ├── App.config ├── Communications │ ├── Comms.cs │ └── Utils.cs ├── Compile.proj ├── Config.cs ├── HavocImplant.csproj ├── HavocImplant.sln ├── Implant.cs ├── NativeUtilities │ ├── Delegates.cs │ ├── Structs.cs │ ├── Utils.cs │ ├── Wrappers.cs │ └── ntdll.cs ├── Properties │ └── AssemblyInfo.cs └── System.Management.Automation.dll ├── Assemblies └── Seatbelt.exe ├── Dockerfile ├── OFs ├── arp.x64.o ├── driversigs.x64.o ├── ipconfig.x64.o ├── listdns.x64.o ├── locale.x64.o ├── netstat.x64.o ├── resources.x64.o ├── routeprint.x64.o ├── uptime.x64.o ├── whoami.x64.o └── windowlist.x64.o ├── PEs └── mimikatz.exe ├── Powershell ├── Invoke-Mimikatz.ps1 └── PowerView.ps1 ├── README.md ├── docker-compose.yml ├── handler.py └── havoc ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc ├── agent.cpython-310.pyc ├── externalc2.cpython-310.pyc └── service.cpython-310.pyc ├── agent.py ├── externalc2.py └── service.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/.gitignore -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/BofExec_Code/BofExec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/BofExec_Code/BofExec.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/BofRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/BofRunner.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/Coff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/Coff.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/IAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/IAT.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/ImageParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/ImageParts.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/NativeDeclarations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/NativeDeclarations.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/ParsedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/BofExec_Code/Internals/ParsedArgs.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/beacon_funcs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/beacon_funcs/Makefile -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/beacon_funcs/beacon_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/beacon_funcs/beacon_funcs.c -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/beacon_funcs/beacon_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/beacon_funcs/beacon_funcs.h -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/beacon_funcs/beacon_funcs.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/beacon_funcs/beacon_funcs.x64.o -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/BofExec/beacon_funcs/beacon_funcs.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/BofExec/beacon_funcs/beacon_funcs.x86.o -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/CommandInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/CommandInterface.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/Download.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/InlineAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/InlineAssembly.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/InlinePE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/InlinePE.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/Ls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/Ls.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/Powershell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/Powershell.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/Shell.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/Sleep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/Sleep.cs -------------------------------------------------------------------------------- /AgentCode/AgentFunctions/Upload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/AgentFunctions/Upload.cs -------------------------------------------------------------------------------- /AgentCode/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/App.config -------------------------------------------------------------------------------- /AgentCode/Communications/Comms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/Communications/Comms.cs -------------------------------------------------------------------------------- /AgentCode/Communications/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/Communications/Utils.cs -------------------------------------------------------------------------------- /AgentCode/Compile.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/Compile.proj -------------------------------------------------------------------------------- /AgentCode/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/Config.cs -------------------------------------------------------------------------------- /AgentCode/HavocImplant.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/HavocImplant.csproj -------------------------------------------------------------------------------- /AgentCode/HavocImplant.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/HavocImplant.sln -------------------------------------------------------------------------------- /AgentCode/Implant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/Implant.cs -------------------------------------------------------------------------------- /AgentCode/NativeUtilities/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/NativeUtilities/Delegates.cs -------------------------------------------------------------------------------- /AgentCode/NativeUtilities/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/NativeUtilities/Structs.cs -------------------------------------------------------------------------------- /AgentCode/NativeUtilities/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/NativeUtilities/Utils.cs -------------------------------------------------------------------------------- /AgentCode/NativeUtilities/Wrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/NativeUtilities/Wrappers.cs -------------------------------------------------------------------------------- /AgentCode/NativeUtilities/ntdll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/NativeUtilities/ntdll.cs -------------------------------------------------------------------------------- /AgentCode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AgentCode/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/AgentCode/System.Management.Automation.dll -------------------------------------------------------------------------------- /Assemblies/Seatbelt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/Assemblies/Seatbelt.exe -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/Dockerfile -------------------------------------------------------------------------------- /OFs/arp.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/OFs/arp.x64.o -------------------------------------------------------------------------------- /OFs/driversigs.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/OFs/driversigs.x64.o -------------------------------------------------------------------------------- /OFs/ipconfig.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/OFs/ipconfig.x64.o -------------------------------------------------------------------------------- /OFs/listdns.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/OFs/listdns.x64.o -------------------------------------------------------------------------------- /OFs/locale.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/OFs/locale.x64.o -------------------------------------------------------------------------------- /OFs/netstat.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/OFs/netstat.x64.o -------------------------------------------------------------------------------- /OFs/resources.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/OFs/resources.x64.o -------------------------------------------------------------------------------- /OFs/routeprint.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/OFs/routeprint.x64.o -------------------------------------------------------------------------------- /OFs/uptime.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/OFs/uptime.x64.o -------------------------------------------------------------------------------- /OFs/whoami.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/OFs/whoami.x64.o -------------------------------------------------------------------------------- /OFs/windowlist.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/OFs/windowlist.x64.o -------------------------------------------------------------------------------- /PEs/mimikatz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/PEs/mimikatz.exe -------------------------------------------------------------------------------- /Powershell/Invoke-Mimikatz.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/Powershell/Invoke-Mimikatz.ps1 -------------------------------------------------------------------------------- /Powershell/PowerView.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/Powershell/PowerView.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/handler.py -------------------------------------------------------------------------------- /havoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /havoc/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/havoc/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /havoc/__pycache__/agent.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/havoc/__pycache__/agent.cpython-310.pyc -------------------------------------------------------------------------------- /havoc/__pycache__/externalc2.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/havoc/__pycache__/externalc2.cpython-310.pyc -------------------------------------------------------------------------------- /havoc/__pycache__/service.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/havoc/__pycache__/service.cpython-310.pyc -------------------------------------------------------------------------------- /havoc/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/havoc/agent.py -------------------------------------------------------------------------------- /havoc/externalc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/havoc/externalc2.py -------------------------------------------------------------------------------- /havoc/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susMdT/SharpAgent/HEAD/havoc/service.py --------------------------------------------------------------------------------