├── .gitattributes ├── .vs └── SharpSniper │ └── v16 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── GetDomain.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── QueryDC.cs ├── README.md ├── SharpSniper.csproj ├── SharpSniper.sln ├── app.config ├── bin └── Release │ └── SharpSniper.exe └── obj ├── Debug ├── DesignTimeResolveAssemblyReferencesInput.cache ├── SharpSniper.csproj.CoreCompileInputs.cache ├── SharpSniper.csproj.FileListAbsolute.txt ├── SharpSniper.csprojAssemblyReference.cache ├── SharpSniper.exe └── SharpSniper.pdb └── Release ├── SharpSniper.csproj.CoreCompileInputs.cache ├── SharpSniper.csproj.FileListAbsolute.txt ├── SharpSniper.csprojAssemblyReference.cache ├── SharpSniper.exe └── SharpSniper.pdb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vs/SharpSniper/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/.vs/SharpSniper/v16/.suo -------------------------------------------------------------------------------- /.vs/SharpSniper/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/.vs/SharpSniper/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/SharpSniper/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/.vs/SharpSniper/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/SharpSniper/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/.vs/SharpSniper/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /GetDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/GetDomain.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /QueryDC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/QueryDC.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/README.md -------------------------------------------------------------------------------- /SharpSniper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/SharpSniper.csproj -------------------------------------------------------------------------------- /SharpSniper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/SharpSniper.sln -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/app.config -------------------------------------------------------------------------------- /bin/Release/SharpSniper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/bin/Release/SharpSniper.exe -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/Debug/SharpSniper.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8d04856903599688273e6731202a051f84bf5f43 2 | -------------------------------------------------------------------------------- /obj/Debug/SharpSniper.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/obj/Debug/SharpSniper.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/SharpSniper.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/obj/Debug/SharpSniper.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/SharpSniper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/obj/Debug/SharpSniper.exe -------------------------------------------------------------------------------- /obj/Debug/SharpSniper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/obj/Debug/SharpSniper.pdb -------------------------------------------------------------------------------- /obj/Release/SharpSniper.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/obj/Release/SharpSniper.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /obj/Release/SharpSniper.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/obj/Release/SharpSniper.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Release/SharpSniper.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/obj/Release/SharpSniper.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Release/SharpSniper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/obj/Release/SharpSniper.exe -------------------------------------------------------------------------------- /obj/Release/SharpSniper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HunnicCyber/SharpSniper/HEAD/obj/Release/SharpSniper.pdb --------------------------------------------------------------------------------