├── .gitignore ├── GetBearerToken ├── FodyWeavers.xml ├── GetBearerToken.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── LICENSE ├── README.md ├── SnaffPoint.sln └── SnaffPoint ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SearchQueryTool ├── Helpers │ ├── CookieReader.cs │ ├── DataConverter.cs │ ├── Extensions.cs │ ├── HttpRequestResponsePair.cs │ ├── HttpRequestRunner.cs │ ├── HttpWebRequestExtensions.cs │ ├── JsonHelper.cs │ └── XmlHelper.cs ├── Model │ ├── SearchConnection.cs │ ├── SearchHistory.cs │ ├── SearchPreset.cs │ ├── SearchPresetList.cs │ ├── SearchQueryRequest.cs │ ├── SearchQueryResult.cs │ ├── SearchRequest.cs │ ├── SearchResult.cs │ ├── SearchResultPresentationSettings.cs │ ├── SearchSuggestionsRequest.cs │ └── SearchSuggestionsResult.cs └── SPAuthenticationClient │ └── AuthenticationClient.cs ├── SnaffPoint.csproj └── presets ├── AWSCFKeysInCode.xml ├── CSharpDbConnStrings.xml ├── CSharpViewstateKeys.xml ├── CmdCredentials.xml ├── ConfigPasswordsVeryNoisy.xml ├── CyberArkCredFile.xml ├── DatabaseByExtension.xml ├── DbConnStringPw.xml ├── DbMgtConfigByName.xml ├── DeployImageByExtension.xml ├── DomainJoinCredsByPath.xml ├── FirefoxLoginsJson.xml ├── FtpClientConfigConfigByName.xml ├── FtpServerConfigByName.xml ├── GitCredsByName.xml ├── InfraAsCodeConfigByExtension.xml ├── InlinePrivateKey.xml ├── JavaDbConnStrings.xml ├── JenkinsByName.xml ├── MemDumpByExtension.xml ├── MemDumpByName.xml ├── NetConfigCreds.xml ├── NetConfigFileByName.xml ├── PHPDbConnStrings.xml ├── PassMgrsByExtension.xml ├── PcapByExtension.xml ├── PsCredentials.xml ├── PyDbConnStrings.xml ├── RdpPasswords.xml ├── RemoteAccessConfByExtension.xml ├── RemoteAccessConfByName.xml ├── RubyConfigFiles.xml ├── RubyDbConnStrings.xml ├── SSHKeysByFileName.xml ├── ShellHistoryByName.xml ├── SqlAccountCreation.xml └── UnattendXML.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/.gitignore -------------------------------------------------------------------------------- /GetBearerToken/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/GetBearerToken/FodyWeavers.xml -------------------------------------------------------------------------------- /GetBearerToken/GetBearerToken.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/GetBearerToken/GetBearerToken.csproj -------------------------------------------------------------------------------- /GetBearerToken/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/GetBearerToken/Program.cs -------------------------------------------------------------------------------- /GetBearerToken/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/GetBearerToken/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GetBearerToken/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/GetBearerToken/app.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/README.md -------------------------------------------------------------------------------- /SnaffPoint.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint.sln -------------------------------------------------------------------------------- /SnaffPoint/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/App.config -------------------------------------------------------------------------------- /SnaffPoint/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/Program.cs -------------------------------------------------------------------------------- /SnaffPoint/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Helpers/CookieReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Helpers/CookieReader.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Helpers/DataConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Helpers/DataConverter.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Helpers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Helpers/Extensions.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Helpers/HttpRequestResponsePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Helpers/HttpRequestResponsePair.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Helpers/HttpRequestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Helpers/HttpRequestRunner.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Helpers/HttpWebRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Helpers/HttpWebRequestExtensions.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Helpers/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Helpers/JsonHelper.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Helpers/XmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Helpers/XmlHelper.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Model/SearchConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Model/SearchConnection.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Model/SearchHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Model/SearchHistory.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Model/SearchPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Model/SearchPreset.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Model/SearchPresetList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Model/SearchPresetList.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Model/SearchQueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Model/SearchQueryRequest.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Model/SearchQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Model/SearchQueryResult.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Model/SearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Model/SearchRequest.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Model/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Model/SearchResult.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Model/SearchResultPresentationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Model/SearchResultPresentationSettings.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Model/SearchSuggestionsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Model/SearchSuggestionsRequest.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/Model/SearchSuggestionsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/Model/SearchSuggestionsResult.cs -------------------------------------------------------------------------------- /SnaffPoint/SearchQueryTool/SPAuthenticationClient/AuthenticationClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SearchQueryTool/SPAuthenticationClient/AuthenticationClient.cs -------------------------------------------------------------------------------- /SnaffPoint/SnaffPoint.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/SnaffPoint.csproj -------------------------------------------------------------------------------- /SnaffPoint/presets/AWSCFKeysInCode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/AWSCFKeysInCode.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/CSharpDbConnStrings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/CSharpDbConnStrings.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/CSharpViewstateKeys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/CSharpViewstateKeys.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/CmdCredentials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/CmdCredentials.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/ConfigPasswordsVeryNoisy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/ConfigPasswordsVeryNoisy.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/CyberArkCredFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/CyberArkCredFile.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/DatabaseByExtension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/DatabaseByExtension.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/DbConnStringPw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/DbConnStringPw.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/DbMgtConfigByName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/DbMgtConfigByName.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/DeployImageByExtension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/DeployImageByExtension.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/DomainJoinCredsByPath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/DomainJoinCredsByPath.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/FirefoxLoginsJson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/FirefoxLoginsJson.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/FtpClientConfigConfigByName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/FtpClientConfigConfigByName.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/FtpServerConfigByName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/FtpServerConfigByName.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/GitCredsByName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/GitCredsByName.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/InfraAsCodeConfigByExtension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/InfraAsCodeConfigByExtension.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/InlinePrivateKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/InlinePrivateKey.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/JavaDbConnStrings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/JavaDbConnStrings.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/JenkinsByName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/JenkinsByName.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/MemDumpByExtension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/MemDumpByExtension.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/MemDumpByName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/MemDumpByName.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/NetConfigCreds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/NetConfigCreds.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/NetConfigFileByName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/NetConfigFileByName.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/PHPDbConnStrings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/PHPDbConnStrings.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/PassMgrsByExtension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/PassMgrsByExtension.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/PcapByExtension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/PcapByExtension.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/PsCredentials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/PsCredentials.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/PyDbConnStrings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/PyDbConnStrings.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/RdpPasswords.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/RdpPasswords.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/RemoteAccessConfByExtension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/RemoteAccessConfByExtension.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/RemoteAccessConfByName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/RemoteAccessConfByName.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/RubyConfigFiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/RubyConfigFiles.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/RubyDbConnStrings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/RubyDbConnStrings.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/SSHKeysByFileName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/SSHKeysByFileName.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/ShellHistoryByName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/ShellHistoryByName.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/SqlAccountCreation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/SqlAccountCreation.xml -------------------------------------------------------------------------------- /SnaffPoint/presets/UnattendXML.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheiniger/SnaffPoint/HEAD/SnaffPoint/presets/UnattendXML.xml --------------------------------------------------------------------------------