├── .vs └── SharpSQLPwn │ ├── project-colors.json │ └── v17 │ └── .suo ├── LICENSE ├── README.md ├── SharpSQLPwn.sln └── SharpSQLPwn ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SharpSQLPwn.csproj ├── Utilities ├── Authentication.cs ├── Functions.cs └── Options.cs ├── bin └── Release │ ├── SharpSQLPwn.exe │ ├── SharpSQLPwn.exe.config │ └── SharpSQLPwn.pdb └── obj └── Release ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs ├── DesignTimeResolveAssemblyReferencesInput.cache ├── SharpSQLPwn.csproj.AssemblyReference.cache ├── SharpSQLPwn.csproj.CoreCompileInputs.cache ├── SharpSQLPwn.csproj.FileListAbsolute.txt ├── SharpSQLPwn.csproj.SuggestedBindingRedirects.cache ├── SharpSQLPwn.exe └── SharpSQLPwn.pdb /.vs/SharpSQLPwn/project-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/.vs/SharpSQLPwn/project-colors.json -------------------------------------------------------------------------------- /.vs/SharpSQLPwn/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/.vs/SharpSQLPwn/v17/.suo -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/README.md -------------------------------------------------------------------------------- /SharpSQLPwn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn.sln -------------------------------------------------------------------------------- /SharpSQLPwn/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/App.config -------------------------------------------------------------------------------- /SharpSQLPwn/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/Program.cs -------------------------------------------------------------------------------- /SharpSQLPwn/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpSQLPwn/SharpSQLPwn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/SharpSQLPwn.csproj -------------------------------------------------------------------------------- /SharpSQLPwn/Utilities/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/Utilities/Authentication.cs -------------------------------------------------------------------------------- /SharpSQLPwn/Utilities/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/Utilities/Functions.cs -------------------------------------------------------------------------------- /SharpSQLPwn/Utilities/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/Utilities/Options.cs -------------------------------------------------------------------------------- /SharpSQLPwn/bin/Release/SharpSQLPwn.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/bin/Release/SharpSQLPwn.exe -------------------------------------------------------------------------------- /SharpSQLPwn/bin/Release/SharpSQLPwn.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/bin/Release/SharpSQLPwn.exe.config -------------------------------------------------------------------------------- /SharpSQLPwn/bin/Release/SharpSQLPwn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/bin/Release/SharpSQLPwn.pdb -------------------------------------------------------------------------------- /SharpSQLPwn/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SharpSQLPwn/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SharpSQLPwn/obj/Release/SharpSQLPwn.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /SharpSQLPwn/obj/Release/SharpSQLPwn.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8b0f2ffeba32081f27dedc2f4ce925c9c9c47161 2 | -------------------------------------------------------------------------------- /SharpSQLPwn/obj/Release/SharpSQLPwn.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/obj/Release/SharpSQLPwn.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SharpSQLPwn/obj/Release/SharpSQLPwn.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharpSQLPwn/obj/Release/SharpSQLPwn.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/obj/Release/SharpSQLPwn.exe -------------------------------------------------------------------------------- /SharpSQLPwn/obj/Release/SharpSQLPwn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefayjey/SharpSQLPwn/HEAD/SharpSQLPwn/obj/Release/SharpSQLPwn.pdb --------------------------------------------------------------------------------