├── .gitignore ├── LICENSE ├── README.md ├── SharpUp.sln └── SharpUp ├── Checks ├── AlwaysInstallElevated.cs ├── CachedGPPPassword.cs ├── DomainGPPPassword.cs ├── HijackablePaths.cs ├── McAfeeSitelistFiles.cs ├── ModifiableScheduledTaskFile.cs ├── ModifiableServiceBinaries.cs ├── ModifiableServiceRegistryKeys.cs ├── ModifiableServices.cs ├── ProcessDLLHijack.cs ├── RegistryAutoLogons.cs ├── RegistryAutoruns.cs ├── TokenPrivileges.cs ├── UnattendedInstallFiles.cs └── UnquotedServicePath.cs ├── Classes └── VulnerabilityCheck.cs ├── Interfaces └── IVulnerabilityCheck.cs ├── Native └── Win32.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SharpUp.csproj └── Utilities ├── FileUtils.cs ├── IdentityUtils.cs └── RegistryUtils.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/README.md -------------------------------------------------------------------------------- /SharpUp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp.sln -------------------------------------------------------------------------------- /SharpUp/Checks/AlwaysInstallElevated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/AlwaysInstallElevated.cs -------------------------------------------------------------------------------- /SharpUp/Checks/CachedGPPPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/CachedGPPPassword.cs -------------------------------------------------------------------------------- /SharpUp/Checks/DomainGPPPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/DomainGPPPassword.cs -------------------------------------------------------------------------------- /SharpUp/Checks/HijackablePaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/HijackablePaths.cs -------------------------------------------------------------------------------- /SharpUp/Checks/McAfeeSitelistFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/McAfeeSitelistFiles.cs -------------------------------------------------------------------------------- /SharpUp/Checks/ModifiableScheduledTaskFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/ModifiableScheduledTaskFile.cs -------------------------------------------------------------------------------- /SharpUp/Checks/ModifiableServiceBinaries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/ModifiableServiceBinaries.cs -------------------------------------------------------------------------------- /SharpUp/Checks/ModifiableServiceRegistryKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/ModifiableServiceRegistryKeys.cs -------------------------------------------------------------------------------- /SharpUp/Checks/ModifiableServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/ModifiableServices.cs -------------------------------------------------------------------------------- /SharpUp/Checks/ProcessDLLHijack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/ProcessDLLHijack.cs -------------------------------------------------------------------------------- /SharpUp/Checks/RegistryAutoLogons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/RegistryAutoLogons.cs -------------------------------------------------------------------------------- /SharpUp/Checks/RegistryAutoruns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/RegistryAutoruns.cs -------------------------------------------------------------------------------- /SharpUp/Checks/TokenPrivileges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/TokenPrivileges.cs -------------------------------------------------------------------------------- /SharpUp/Checks/UnattendedInstallFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/UnattendedInstallFiles.cs -------------------------------------------------------------------------------- /SharpUp/Checks/UnquotedServicePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Checks/UnquotedServicePath.cs -------------------------------------------------------------------------------- /SharpUp/Classes/VulnerabilityCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Classes/VulnerabilityCheck.cs -------------------------------------------------------------------------------- /SharpUp/Interfaces/IVulnerabilityCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Interfaces/IVulnerabilityCheck.cs -------------------------------------------------------------------------------- /SharpUp/Native/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Native/Win32.cs -------------------------------------------------------------------------------- /SharpUp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Program.cs -------------------------------------------------------------------------------- /SharpUp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpUp/SharpUp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/SharpUp.csproj -------------------------------------------------------------------------------- /SharpUp/Utilities/FileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Utilities/FileUtils.cs -------------------------------------------------------------------------------- /SharpUp/Utilities/IdentityUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Utilities/IdentityUtils.cs -------------------------------------------------------------------------------- /SharpUp/Utilities/RegistryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostPack/SharpUp/HEAD/SharpUp/Utilities/RegistryUtils.cs --------------------------------------------------------------------------------