├── .gitattributes ├── .gitignore ├── Controller.py ├── EmailExternalC2.cna ├── README.md ├── SharpEmailC2.sln ├── SharpEmailC2 ├── App.config ├── Constants.cs ├── DraftsIO.cs ├── FodyWeavers.xml ├── Interfaces.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SharpEmailC2.csproj ├── packages.config ├── pipeOptions.cs └── spawnBeacon.cs ├── starfire.jpeg └── video.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/.gitignore -------------------------------------------------------------------------------- /Controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/Controller.py -------------------------------------------------------------------------------- /EmailExternalC2.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/EmailExternalC2.cna -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/README.md -------------------------------------------------------------------------------- /SharpEmailC2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2.sln -------------------------------------------------------------------------------- /SharpEmailC2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2/App.config -------------------------------------------------------------------------------- /SharpEmailC2/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2/Constants.cs -------------------------------------------------------------------------------- /SharpEmailC2/DraftsIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2/DraftsIO.cs -------------------------------------------------------------------------------- /SharpEmailC2/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2/FodyWeavers.xml -------------------------------------------------------------------------------- /SharpEmailC2/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2/Interfaces.cs -------------------------------------------------------------------------------- /SharpEmailC2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2/Program.cs -------------------------------------------------------------------------------- /SharpEmailC2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpEmailC2/SharpEmailC2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2/SharpEmailC2.csproj -------------------------------------------------------------------------------- /SharpEmailC2/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2/packages.config -------------------------------------------------------------------------------- /SharpEmailC2/pipeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2/pipeOptions.cs -------------------------------------------------------------------------------- /SharpEmailC2/spawnBeacon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/SharpEmailC2/spawnBeacon.cs -------------------------------------------------------------------------------- /starfire.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/starfire.jpeg -------------------------------------------------------------------------------- /video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0ub1ec0d3/SharpEmailC2/HEAD/video.gif --------------------------------------------------------------------------------