├── .gitattributes ├── .gitignore ├── README.md ├── SCCM_SQL_Collector.sln └── SCCM_SQL_Collector ├── App.config ├── Impersonate.cs ├── Print.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SCCM_SQL_Collector.csproj ├── SCCM_SQL_Collector.csproj.user ├── SQLConnectionFactory.cs ├── SqlAuthentication.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | packages 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/README.md -------------------------------------------------------------------------------- /SCCM_SQL_Collector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/SCCM_SQL_Collector.sln -------------------------------------------------------------------------------- /SCCM_SQL_Collector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/SCCM_SQL_Collector/App.config -------------------------------------------------------------------------------- /SCCM_SQL_Collector/Impersonate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/SCCM_SQL_Collector/Impersonate.cs -------------------------------------------------------------------------------- /SCCM_SQL_Collector/Print.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/SCCM_SQL_Collector/Print.cs -------------------------------------------------------------------------------- /SCCM_SQL_Collector/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/SCCM_SQL_Collector/Program.cs -------------------------------------------------------------------------------- /SCCM_SQL_Collector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/SCCM_SQL_Collector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SCCM_SQL_Collector/SCCM_SQL_Collector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/SCCM_SQL_Collector/SCCM_SQL_Collector.csproj -------------------------------------------------------------------------------- /SCCM_SQL_Collector/SCCM_SQL_Collector.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/SCCM_SQL_Collector/SCCM_SQL_Collector.csproj.user -------------------------------------------------------------------------------- /SCCM_SQL_Collector/SQLConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/SCCM_SQL_Collector/SQLConnectionFactory.cs -------------------------------------------------------------------------------- /SCCM_SQL_Collector/SqlAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/SCCM_SQL_Collector/SqlAuthentication.cs -------------------------------------------------------------------------------- /SCCM_SQL_Collector/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G0ldenGunSec/SCCM_SQL_Collector/HEAD/SCCM_SQL_Collector/packages.config --------------------------------------------------------------------------------