├── .vs ├── ProjectSettings.json ├── slnx.sqlite ├── Arina │ ├── v16 │ │ └── .suo │ └── DesignTimeBuild │ │ └── .dtbcache.v2 └── VSWorkspaceState.json ├── Arina ├── obj │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── Arina.csproj.AssemblyReference.cache │ │ │ ├── Arina.AssemblyInfoInputs.cache │ │ │ ├── Arina.genruntimeconfig.cache │ │ │ ├── Arina.csproj.CoreCompileInputs.cache │ │ │ ├── Arina.dll │ │ │ ├── Arina.pdb │ │ │ ├── apphost.exe │ │ │ ├── Arina.assets.cache │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── Arina.AssemblyInfo.cs │ │ │ └── Arina.csproj.FileListAbsolute.txt │ ├── Release │ │ └── netcoreapp3.1 │ │ │ ├── linux-x64 │ │ │ ├── Arina.csproj.AssemblyReference.cache │ │ │ ├── Arina.AssemblyInfoInputs.cache │ │ │ ├── Arina.genruntimeconfig.cache │ │ │ ├── Arina.csproj.CoreCompileInputs.cache │ │ │ ├── apphost │ │ │ ├── Arina.dll │ │ │ ├── Arina.pdb │ │ │ ├── Arina.assets.cache │ │ │ ├── Arina.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── PublishOutputs.2d241b0534.txt │ │ │ ├── PublishOutputs.f94ba48bc8.txt │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── Arina.AssemblyInfo.cs │ │ │ └── Arina.csproj.FileListAbsolute.txt │ │ │ ├── Arina.AssemblyInfoInputs.cache │ │ │ ├── Arina.genruntimeconfig.cache │ │ │ ├── Arina.csproj.CoreCompileInputs.cache │ │ │ ├── Arina.dll │ │ │ ├── Arina.pdb │ │ │ ├── apphost.exe │ │ │ ├── Arina.assets.cache │ │ │ ├── Arina.csproj.AssemblyReference.cache │ │ │ ├── Arina.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── Arina.AssemblyInfo.cs │ │ │ └── Arina.csproj.FileListAbsolute.txt │ ├── project.nuget.cache │ ├── Arina.csproj.nuget.g.targets │ ├── publish │ │ └── linux-x64 │ │ │ ├── Arina.csproj.nuget.g.targets │ │ │ ├── project.nuget.cache │ │ │ ├── Arina.csproj.nuget.g.props │ │ │ ├── Arina.csproj.nuget.dgspec.json │ │ │ └── project.assets.json │ ├── Arina.csproj.nuget.g.props │ ├── Arina.csproj.nuget.dgspec.json │ └── project.assets.json ├── bin │ └── Release │ │ └── netcoreapp3.1 │ │ ├── win.zip │ │ ├── Arina.dll │ │ ├── Arina.exe │ │ ├── Arina.pdb │ │ ├── linux-x64 │ │ ├── Arina │ │ ├── Arina.dll │ │ ├── Arina.pdb │ │ ├── Arina.runtimeconfig.json │ │ ├── Arina.runtimeconfig.dev.json │ │ └── Arina.deps.json │ │ ├── publish │ │ ├── Arina │ │ └── Arina.pdb │ │ ├── Arina.runtimeconfig.json │ │ ├── Arina.runtimeconfig.dev.json │ │ └── Arina.deps.json ├── Arina.csproj ├── Arina.csproj.user ├── Properties │ └── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user ├── Program.cs └── usernameMode.cs ├── LICENSE ├── Arina.sln └── README.md /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /Arina/obj/Debug/netcoreapp3.1/Arina.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Arina/obj/Debug/netcoreapp3.1/Arina.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1a33eb2a013dca5401a0faae103e573c66c69fd2 2 | -------------------------------------------------------------------------------- /Arina/obj/Debug/netcoreapp3.1/Arina.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 21d878759ce38aa1d1b1accbca05727851af9b07 2 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/Arina.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ea938fd6d55e5936e8976e4c5226cf8b84e6e14e 2 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/Arina.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 84cd504e1a2f591a428af58dcaab6d83dc91c492 2 | -------------------------------------------------------------------------------- /.vs/Arina/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/.vs/Arina/v16/.suo -------------------------------------------------------------------------------- /Arina/obj/Debug/netcoreapp3.1/Arina.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 574898cc3902a066c9be9db262284829b84a2be3 2 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/Arina.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ea84c9da4d42f1625586b758206a82bffb38696e 2 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ea938fd6d55e5936e8976e4c5226cf8b84e6e14e 2 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 89ccd918faa27aea48315a40001985a255ee0e32 2 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f954c46d2cb8b77cb953d306a48a32887dd87794 2 | -------------------------------------------------------------------------------- /.vs/Arina/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/.vs/Arina/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/win.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/bin/Release/netcoreapp3.1/win.zip -------------------------------------------------------------------------------- /Arina/obj/Debug/netcoreapp3.1/Arina.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Debug/netcoreapp3.1/Arina.dll -------------------------------------------------------------------------------- /Arina/obj/Debug/netcoreapp3.1/Arina.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Debug/netcoreapp3.1/Arina.pdb -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- 1 | { 2 | "ExpandedNodes": [ 3 | "" 4 | ], 5 | "SelectedNode": "\\Arina.sln", 6 | "PreviewInSolutionExplorer": false 7 | } -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/Arina.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/bin/Release/netcoreapp3.1/Arina.dll -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/Arina.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/bin/Release/netcoreapp3.1/Arina.exe -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/Arina.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/bin/Release/netcoreapp3.1/Arina.pdb -------------------------------------------------------------------------------- /Arina/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/Arina.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Release/netcoreapp3.1/Arina.dll -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/Arina.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Release/netcoreapp3.1/Arina.pdb -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Release/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/linux-x64/Arina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/bin/Release/netcoreapp3.1/linux-x64/Arina -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/publish/Arina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/bin/Release/netcoreapp3.1/publish/Arina -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/publish/Arina.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/bin/Release/netcoreapp3.1/publish/Arina.pdb -------------------------------------------------------------------------------- /Arina/obj/Debug/netcoreapp3.1/Arina.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Debug/netcoreapp3.1/Arina.assets.cache -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Release/netcoreapp3.1/linux-x64/apphost -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/linux-x64/Arina.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/bin/Release/netcoreapp3.1/linux-x64/Arina.dll -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/linux-x64/Arina.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/bin/Release/netcoreapp3.1/linux-x64/Arina.pdb -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/Arina.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Release/netcoreapp3.1/Arina.assets.cache -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.dll -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.pdb -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.assets.cache -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/Arina.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexC-ux/Arina-OSINT-nickname-checker-/HEAD/Arina/obj/Release/netcoreapp3.1/Arina.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/Arina.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = Arina 3 | build_property.ProjectDir = C:\Users\eunv2\source\repos\Arina\Arina\ 4 | -------------------------------------------------------------------------------- /Arina/Arina.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp3.1 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = Arina 3 | build_property.ProjectDir = C:\Users\eunv2\source\repos\Arina\Arina\ 4 | -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/Arina.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/PublishOutputs.2d241b0534.txt: -------------------------------------------------------------------------------- 1 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\publish\Arina.pdb 2 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\publish\Arina 3 | -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/linux-x64/Arina.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/PublishOutputs.f94ba48bc8.txt: -------------------------------------------------------------------------------- 1 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\publish\Arina.pdb 2 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\publish\Arina 3 | -------------------------------------------------------------------------------- /Arina/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Arina/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "vDpduqWobg/d0jYmd4cy/nzwTOJSspR56CjH3a9h3m66KHkK/QYKkYOi/bl18hY7JkNPQ/UCBWTBhnJI4VfHLA==", 4 | "success": true, 5 | "projectFilePath": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /Arina/obj/Arina.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /Arina/obj/publish/linux-x64/Arina.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /Arina/Arina.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <_LastSelectedProfileId>C:\Users\AlexC-ux\source\repos\Arina\Arina\Properties\PublishProfiles\FolderProfile.pubxml 5 | 6 | -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/Arina.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\eunv2\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\eunv2\\.nuget\\packages", 6 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 7 | "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/linux-x64/Arina.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\eunv2\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\eunv2\\.nuget\\packages", 6 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 7 | "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /Arina/obj/publish/linux-x64/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "McNDS/ZhLusNGaKKMRYUI+1urrHUbhlePUHVOwHb8sY3IO1n8sX+20eN2rraoYU15asLYo95NmFfSptAxjpVOw==", 4 | "success": true, 5 | "projectFilePath": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\eunv2\\.nuget\\packages\\microsoft.netcore.app.host.linux-x64\\3.1.21\\microsoft.netcore.app.host.linux-x64.3.1.21.nupkg.sha512" 8 | ], 9 | "logs": [] 10 | } -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/Arina.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": { 9 | "Arina/1.0.0": { 10 | "runtime": { 11 | "Arina.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Arina/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Arina/bin/Release/netcoreapp3.1/linux-x64/Arina.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1/linux-x64", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": {}, 9 | ".NETCoreApp,Version=v3.1/linux-x64": { 10 | "Arina/1.0.0": { 11 | "runtime": { 12 | "Arina.dll": {} 13 | } 14 | } 15 | } 16 | }, 17 | "libraries": { 18 | "Arina/1.0.0": { 19 | "type": "project", 20 | "serviceable": false, 21 | "sha512": "" 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /Arina/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | Release 8 | Any CPU 9 | bin\Release\netcoreapp3.1\publish\ 10 | FileSystem 11 | netcoreapp3.1 12 | linux-x64 13 | false 14 | True 15 | 16 | -------------------------------------------------------------------------------- /Arina/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | True|2021-06-30T00:58:14.8712117Z;True|2021-06-28T02:59:01.4065229+03:00;True|2021-06-27T20:51:41.4079071+03:00;True|2021-06-27T18:46:42.6009999+03:00;True|2021-06-27T03:29:14.6593363+03:00;True|2021-06-27T03:27:09.8191959+03:00;True|2021-06-26T23:23:13.8787828+03:00;True|2021-06-26T23:12:39.1214767+03:00;True|2021-06-26T15:43:47.8216361+03:00;True|2021-06-26T12:14:53.5840512+03:00;True|2021-06-25T01:02:32.8809411+03:00;False|2021-06-25T01:02:11.3127075+03:00; 8 | 9 | -------------------------------------------------------------------------------- /Arina/obj/Debug/netcoreapp3.1/Arina.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Этот код создан программой. 4 | // Исполняемая версия:4.0.30319.42000 5 | // 6 | // Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае 7 | // повторной генерации кода. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Arina")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Arina")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Arina")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Создано классом WriteCodeFragment MSBuild. 23 | 24 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/Arina.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Этот код создан программой. 4 | // Исполняемая версия:4.0.30319.42000 5 | // 6 | // Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае 7 | // повторной генерации кода. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Arina")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Arina")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Arina")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Создано классом WriteCodeFragment MSBuild. 23 | 24 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Этот код создан программой. 4 | // Исполняемая версия:4.0.30319.42000 5 | // 6 | // Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае 7 | // повторной генерации кода. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Arina")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Arina")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Arina")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Создано классом WriteCodeFragment MSBuild. 23 | 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 AlexC-ux 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Arina.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.31402.337 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Arina", "Arina\Arina.csproj", "{C25AA214-ECDD-428D-9504-62CBC1C67433}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {C25AA214-ECDD-428D-9504-62CBC1C67433}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {C25AA214-ECDD-428D-9504-62CBC1C67433}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {C25AA214-ECDD-428D-9504-62CBC1C67433}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {C25AA214-ECDD-428D-9504-62CBC1C67433}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {3BB59FB5-B2C5-4840-9771-0441E3F00108} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Arina/obj/Debug/netcoreapp3.1/Arina.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Debug\netcoreapp3.1\Arina.exe 2 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Debug\netcoreapp3.1\Arina.deps.json 3 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Debug\netcoreapp3.1\Arina.runtimeconfig.json 4 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Debug\netcoreapp3.1\Arina.runtimeconfig.dev.json 5 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Debug\netcoreapp3.1\Arina.dll 6 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Debug\netcoreapp3.1\Arina.pdb 7 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Debug\netcoreapp3.1\Arina.csproj.AssemblyReference.cache 8 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Debug\netcoreapp3.1\Arina.AssemblyInfoInputs.cache 9 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Debug\netcoreapp3.1\Arina.AssemblyInfo.cs 10 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Debug\netcoreapp3.1\Arina.csproj.CoreCompileInputs.cache 11 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Debug\netcoreapp3.1\Arina.dll 12 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Debug\netcoreapp3.1\Arina.pdb 13 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Debug\netcoreapp3.1\Arina.genruntimeconfig.cache 14 | -------------------------------------------------------------------------------- /Arina/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | 4 | namespace Arina 5 | { 6 | class Program 7 | { 8 | 9 | 10 | static void Main(string[] args) 11 | { 12 | 13 | Console.Title = "Arina checker"; 14 | Console.WriteLine("Select mode:\n 1 - username"); 15 | Console.WriteLine(" \n 2 - usernames list (.txt)"); 16 | string mode = Console.ReadLine(); 17 | switch (mode) 18 | { 19 | case "1": 20 | Console.WriteLine("\n username:"); 21 | string target = Console.ReadLine(); 22 | usernameMode.Start(target); 23 | break; 24 | case "2": 25 | Console.WriteLine("\n path:"); 26 | target = Console.ReadLine(); 27 | string[] usernames = File.ReadAllLines(target); 28 | foreach (string username in usernames) 29 | { 30 | usernameMode.Start(username); 31 | } 32 | break; 33 | 34 | } 35 | 36 | 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Arina-OSINT 2 | An OSINT (open source intelligence tool) to find info about your old pages. 3 | 4 | If you want to support the project, you can give it a ⭐ 5 | 6 | # Resources: 7 | - GitHub 8 | - VKontakte 9 | - Pinterest 10 | - YouTube 11 | - Telegram 12 | - Facebook 13 | - Akniga 14 | - Blogger 15 | - Jimbo 16 | - Reddit 17 | - Pikabu 18 | - About.me 19 | - Archive.is 20 | - Patreon 21 | - YandexZen 22 | - YandexMarket 23 | - YandexMusic 24 | - Spotify 25 | - SoundCloud 26 | - Habr 27 | - Twitch 28 | - TikTok 29 | - Ebay 30 | - PayPal 31 | - PornHub 32 | - Wikipedia 33 | - Steam 34 | - Tumblr 35 | - Flicklr 36 | - WordPress 37 | - Vimeo 38 | - SlideShare 39 | - FanPop 40 | - MySpace 41 | - Gravatar 42 | - HubPages 43 | - 7 Cups 44 | - TenChat 45 | - 9GAG 46 | - EyeEm 47 | - Disqus 48 | - BuyMeACoffe 49 | 50 | 51 | **In plans:** 52 | - [ ] Tinder 53 | - [ ] Roblox 54 | - [ ] Another 55 | 56 | # Dependencies: 57 | - .NET Core 3.1 58 | 59 | # How to install .NetCore 3.1 runtime. 60 | Debain: https://docs.microsoft.com/ru-ru/dotnet/core/install/linux-debian 61 | 62 | Ubuntu: https://docs.microsoft.com/ru-ru/dotnet/core/install/linux-ubuntu 63 | 64 | P.s. not worth installing over .NetCore 5.x 65 | 66 | Windows: https://docs.microsoft.com/ru-ru/dotnet/core/install/windows?tabs=net50 67 | 68 | # Tool installation: 69 | 1. Install dependencies (if you need) 70 | 2. Clone repository 71 | 3. - Find your compiled virsion in Arina/bin (or https://github.com/AlexC-ux/Arina-OSINT/releases/). 72 | - Compile .cs source files. 73 | -------------------------------------------------------------------------------- /Arina/obj/Arina.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\eunv2\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\ 9 | PackageReference 10 | 5.11.1 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 19 | 20 | -------------------------------------------------------------------------------- /Arina/obj/publish/linux-x64/Arina.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\eunv2\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\ 9 | PackageReference 10 | 5.11.1 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 19 | 20 | -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/Arina.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.exe 2 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.deps.json 3 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.runtimeconfig.json 4 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.runtimeconfig.dev.json 5 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.dll 6 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.pdb 7 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.AssemblyInfoInputs.cache 8 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.AssemblyInfo.cs 9 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.csproj.CoreCompileInputs.cache 10 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.dll 11 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.pdb 12 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.genruntimeconfig.cache 13 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.exe 14 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.deps.json 15 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.runtimeconfig.json 16 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.runtimeconfig.dev.json 17 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.dll 18 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\Arina.pdb 19 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.csproj.AssemblyReference.cache 20 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.GeneratedMSBuildEditorConfig.editorconfig 21 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.AssemblyInfoInputs.cache 22 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.AssemblyInfo.cs 23 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.csproj.CoreCompileInputs.cache 24 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.dll 25 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.pdb 26 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\Arina.genruntimeconfig.cache 27 | -------------------------------------------------------------------------------- /Arina/obj/Arina.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj", 11 | "projectName": "Arina", 12 | "projectPath": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj", 13 | "packagesPath": "C:\\Users\\eunv2\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 18 | "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" 19 | ], 20 | "configFilePaths": [ 21 | "C:\\Users\\eunv2\\AppData\\Roaming\\NuGet\\NuGet.Config", 22 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", 23 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", 24 | "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" 25 | ], 26 | "originalTargetFrameworks": [ 27 | "netcoreapp3.1" 28 | ], 29 | "sources": { 30 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 31 | "https://api.nuget.org/v3/index.json": {} 32 | }, 33 | "frameworks": { 34 | "netcoreapp3.1": { 35 | "targetAlias": "netcoreapp3.1", 36 | "projectReferences": {} 37 | } 38 | }, 39 | "warningProperties": { 40 | "warnAsError": [ 41 | "NU1605" 42 | ] 43 | } 44 | }, 45 | "frameworks": { 46 | "netcoreapp3.1": { 47 | "targetAlias": "netcoreapp3.1", 48 | "imports": [ 49 | "net461", 50 | "net462", 51 | "net47", 52 | "net471", 53 | "net472", 54 | "net48" 55 | ], 56 | "assetTargetFallback": true, 57 | "warn": true, 58 | "frameworkReferences": { 59 | "Microsoft.NETCore.App": { 60 | "privateAssets": "all" 61 | } 62 | }, 63 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json" 64 | } 65 | } 66 | } 67 | } 68 | } -------------------------------------------------------------------------------- /Arina/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETCoreApp,Version=v3.1": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | ".NETCoreApp,Version=v3.1": [] 9 | }, 10 | "packageFolders": { 11 | "C:\\Users\\eunv2\\.nuget\\packages\\": {}, 12 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, 13 | "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {} 14 | }, 15 | "project": { 16 | "version": "1.0.0", 17 | "restore": { 18 | "projectUniqueName": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj", 19 | "projectName": "Arina", 20 | "projectPath": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj", 21 | "packagesPath": "C:\\Users\\eunv2\\.nuget\\packages\\", 22 | "outputPath": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\obj\\", 23 | "projectStyle": "PackageReference", 24 | "fallbackFolders": [ 25 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 26 | "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" 27 | ], 28 | "configFilePaths": [ 29 | "C:\\Users\\eunv2\\AppData\\Roaming\\NuGet\\NuGet.Config", 30 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", 31 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", 32 | "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" 33 | ], 34 | "originalTargetFrameworks": [ 35 | "netcoreapp3.1" 36 | ], 37 | "sources": { 38 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 39 | "https://api.nuget.org/v3/index.json": {} 40 | }, 41 | "frameworks": { 42 | "netcoreapp3.1": { 43 | "targetAlias": "netcoreapp3.1", 44 | "projectReferences": {} 45 | } 46 | }, 47 | "warningProperties": { 48 | "warnAsError": [ 49 | "NU1605" 50 | ] 51 | } 52 | }, 53 | "frameworks": { 54 | "netcoreapp3.1": { 55 | "targetAlias": "netcoreapp3.1", 56 | "imports": [ 57 | "net461", 58 | "net462", 59 | "net47", 60 | "net471", 61 | "net472", 62 | "net48" 63 | ], 64 | "assetTargetFallback": true, 65 | "warn": true, 66 | "frameworkReferences": { 67 | "Microsoft.NETCore.App": { 68 | "privateAssets": "all" 69 | } 70 | }, 71 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json" 72 | } 73 | } 74 | } 75 | } -------------------------------------------------------------------------------- /Arina/obj/Release/netcoreapp3.1/linux-x64/Arina.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina 2 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina.deps.json 3 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina.runtimeconfig.json 4 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina.runtimeconfig.dev.json 5 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina.dll 6 | C:\Users\AlexC-ux\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina.pdb 7 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.AssemblyInfoInputs.cache 8 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.AssemblyInfo.cs 9 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.csproj.CoreCompileInputs.cache 10 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.dll 11 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.pdb 12 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.genruntimeconfig.cache 13 | C:\Users\AlexC-ux\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.csproj.AssemblyReference.cache 14 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina 15 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina.deps.json 16 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina.runtimeconfig.json 17 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina.runtimeconfig.dev.json 18 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina.dll 19 | C:\Users\eunv2\source\repos\Arina\Arina\bin\Release\netcoreapp3.1\linux-x64\Arina.pdb 20 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.csproj.AssemblyReference.cache 21 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.GeneratedMSBuildEditorConfig.editorconfig 22 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.AssemblyInfoInputs.cache 23 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.AssemblyInfo.cs 24 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.csproj.CoreCompileInputs.cache 25 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.dll 26 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.pdb 27 | C:\Users\eunv2\source\repos\Arina\Arina\obj\Release\netcoreapp3.1\linux-x64\Arina.genruntimeconfig.cache 28 | -------------------------------------------------------------------------------- /Arina/obj/publish/linux-x64/Arina.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj", 11 | "projectName": "Arina", 12 | "projectPath": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj", 13 | "packagesPath": "C:\\Users\\eunv2\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\obj\\publish\\linux-x64\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 18 | "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" 19 | ], 20 | "configFilePaths": [ 21 | "C:\\Users\\eunv2\\AppData\\Roaming\\NuGet\\NuGet.Config", 22 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", 23 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", 24 | "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" 25 | ], 26 | "originalTargetFrameworks": [ 27 | "netcoreapp3.1" 28 | ], 29 | "sources": { 30 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 31 | "https://api.nuget.org/v3/index.json": {} 32 | }, 33 | "frameworks": { 34 | "netcoreapp3.1": { 35 | "targetAlias": "netcoreapp3.1", 36 | "projectReferences": {} 37 | } 38 | }, 39 | "warningProperties": { 40 | "warnAsError": [ 41 | "NU1605" 42 | ] 43 | } 44 | }, 45 | "frameworks": { 46 | "netcoreapp3.1": { 47 | "targetAlias": "netcoreapp3.1", 48 | "imports": [ 49 | "net461", 50 | "net462", 51 | "net47", 52 | "net471", 53 | "net472", 54 | "net48" 55 | ], 56 | "assetTargetFallback": true, 57 | "warn": true, 58 | "downloadDependencies": [ 59 | { 60 | "name": "Microsoft.NETCore.App.Host.linux-x64", 61 | "version": "[3.1.21, 3.1.21]" 62 | } 63 | ], 64 | "frameworkReferences": { 65 | "Microsoft.NETCore.App": { 66 | "privateAssets": "all" 67 | } 68 | }, 69 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json" 70 | } 71 | }, 72 | "runtimes": { 73 | "linux-x64": { 74 | "#import": [] 75 | } 76 | } 77 | } 78 | } 79 | } -------------------------------------------------------------------------------- /Arina/obj/publish/linux-x64/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETCoreApp,Version=v3.1": {}, 5 | ".NETCoreApp,Version=v3.1/linux-x64": {} 6 | }, 7 | "libraries": {}, 8 | "projectFileDependencyGroups": { 9 | ".NETCoreApp,Version=v3.1": [] 10 | }, 11 | "packageFolders": { 12 | "C:\\Users\\eunv2\\.nuget\\packages\\": {}, 13 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, 14 | "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {} 15 | }, 16 | "project": { 17 | "version": "1.0.0", 18 | "restore": { 19 | "projectUniqueName": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj", 20 | "projectName": "Arina", 21 | "projectPath": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\Arina.csproj", 22 | "packagesPath": "C:\\Users\\eunv2\\.nuget\\packages\\", 23 | "outputPath": "C:\\Users\\eunv2\\source\\repos\\Arina\\Arina\\obj\\publish\\linux-x64\\", 24 | "projectStyle": "PackageReference", 25 | "fallbackFolders": [ 26 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 27 | "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" 28 | ], 29 | "configFilePaths": [ 30 | "C:\\Users\\eunv2\\AppData\\Roaming\\NuGet\\NuGet.Config", 31 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", 32 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", 33 | "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" 34 | ], 35 | "originalTargetFrameworks": [ 36 | "netcoreapp3.1" 37 | ], 38 | "sources": { 39 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 40 | "https://api.nuget.org/v3/index.json": {} 41 | }, 42 | "frameworks": { 43 | "netcoreapp3.1": { 44 | "targetAlias": "netcoreapp3.1", 45 | "projectReferences": {} 46 | } 47 | }, 48 | "warningProperties": { 49 | "warnAsError": [ 50 | "NU1605" 51 | ] 52 | } 53 | }, 54 | "frameworks": { 55 | "netcoreapp3.1": { 56 | "targetAlias": "netcoreapp3.1", 57 | "imports": [ 58 | "net461", 59 | "net462", 60 | "net47", 61 | "net471", 62 | "net472", 63 | "net48" 64 | ], 65 | "assetTargetFallback": true, 66 | "warn": true, 67 | "downloadDependencies": [ 68 | { 69 | "name": "Microsoft.NETCore.App.Host.linux-x64", 70 | "version": "[3.1.21, 3.1.21]" 71 | } 72 | ], 73 | "frameworkReferences": { 74 | "Microsoft.NETCore.App": { 75 | "privateAssets": "all" 76 | } 77 | }, 78 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json" 79 | } 80 | }, 81 | "runtimes": { 82 | "linux-x64": { 83 | "#import": [] 84 | } 85 | } 86 | } 87 | } -------------------------------------------------------------------------------- /Arina/usernameMode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Net; 3 | using System.Web; 4 | namespace Arina 5 | { 6 | 7 | class usernameMode 8 | { 9 | static public void Start(string username) 10 | { 11 | 12 | Console.WriteLine($"\nProfiles of {username}:"); 13 | if (username.Contains(" ")) 14 | { 15 | 16 | string[] parts = username.Split(" "); 17 | Console.WriteLine("Username contains space, which separator to use? (_|.|none|another character)"); 18 | string sep = Console.ReadLine(); 19 | //Заполнение пробелов 20 | username = ""; 21 | int i = 0; 22 | if (i + 2 == parts.Length) 23 | { 24 | username += parts[i] + sep + parts[i + 1]; 25 | Console.WriteLine(username); 26 | } 27 | for (i = 0; i < parts.Length - 2; i++) 28 | { 29 | username += parts[i] + sep; 30 | 31 | 32 | if (i + 1 >= parts.Length - 2) 33 | { 34 | username += parts[i + 1] + sep + parts[i + 2]; 35 | } 36 | 37 | } 38 | 39 | Console.WriteLine("Username: " + username); 40 | } 41 | 42 | 43 | github_username.Check(username); 44 | steam_username.Check(username); 45 | tg_username.Check(username); 46 | akniga_username.Check(username); 47 | myspace_username.Check(username); 48 | blogger_username.Check(username); 49 | aboutme_username.Check(username); 50 | gravatar_username.Check(username); 51 | jimbo_username.Check(username); 52 | tumblr_username.Check(username); 53 | wp_username.Check(username); 54 | reddit_username.Check(username); 55 | pikabu_username.Check(username); 56 | vk_username.Check(username); 57 | tt_username.Check(username); 58 | pinterest_username.Check(username); 59 | twitch_username.Check(username); 60 | yt_username.Check(username); 61 | vimeo_username.Check(username); 62 | fb_username.Check(username); 63 | habr_username.Check(username); 64 | patreon_username.Check(username); 65 | spotif_username.Check(username); 66 | ya_music_username.Check(username); 67 | ya_market_username.Check(username); 68 | ya_zen_username.Check(username); 69 | soundc_username.Check(username); 70 | ebay_username.Check(username); 71 | pp_username.Check(username); 72 | wiki_username.Check(username); 73 | hubpages_username.Check(username); 74 | ph_userame.Check(username); 75 | archive_is_username.Check(username); 76 | flicklr_username.Check(username); 77 | slideshare_username.Check(username); 78 | fanpop_username.Check(username); 79 | tenchat_username.Check(username); 80 | buymeacoffee_username.Check(username); 81 | _9gag_username.Check(username); 82 | last_fm_username.Check(username); 83 | eyeem_username.Check(username); 84 | disqus_username.Check(username); 85 | 86 | } 87 | } 88 | 89 | #region UsernameCheckClasses 90 | 91 | 92 | class disqus_username 93 | { 94 | public static void Check(string username) 95 | { 96 | try 97 | { 98 | string url = $"https://disqus.com/by/{username}/"; 99 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 100 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 101 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 102 | if (response.StatusCode == HttpStatusCode.OK) 103 | { 104 | Console.WriteLine($"[+] Disqus : https://disqus.com/by/{username}/"); 105 | } 106 | else { Console.WriteLine("[-] Disqus : NOT FOUND"); } 107 | } 108 | catch { Console.WriteLine("[-] Disqus : NOT FOUND"); } 109 | } 110 | } 111 | 112 | 113 | class eyeem_username 114 | { 115 | public static void Check(string username) 116 | { 117 | try 118 | { 119 | string url = $"https://www.eyeem.com/u/{username}/photos"; 120 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 121 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 122 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 123 | if (response.StatusCode == HttpStatusCode.OK) 124 | { 125 | Console.WriteLine($"[+] EyeEm : https://www.eyeem.com/u/{username}/photos"); 126 | } 127 | else { Console.WriteLine("[-] EyeEm : NOT FOUND"); } 128 | } 129 | catch { Console.WriteLine("[-] EyeEm : NOT FOUND"); } 130 | } 131 | } 132 | 133 | 134 | class last_fm_username 135 | { 136 | public static void Check(string username) 137 | { 138 | try 139 | { 140 | string url = $"https://www.last.fm/user/{username}"; 141 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 142 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 143 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 144 | if (response.StatusCode == HttpStatusCode.OK) 145 | { 146 | Console.WriteLine($"[+] LastFm : https://www.last.fm/user/{username}"); 147 | } 148 | else { Console.WriteLine("[-] LastFm : NOT FOUND"); } 149 | } 150 | catch { Console.WriteLine("[-] LastFm : NOT FOUND"); } 151 | } 152 | } 153 | 154 | 155 | class _9gag_username 156 | { 157 | public static void Check(string username) 158 | { 159 | try 160 | { 161 | string url = $"https://9gag.com/u/{username}"; 162 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 163 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 164 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 165 | if (response.StatusCode == HttpStatusCode.OK) 166 | { 167 | Console.WriteLine($"[+] 9GAG : https://9gag.com/u/{username}"); 168 | } 169 | else { Console.WriteLine("[-] 9GAG : NOT FOUND"); } 170 | } 171 | catch { Console.WriteLine("[-] 9GAG : NOT FOUND"); } 172 | } 173 | } 174 | 175 | 176 | class buymeacoffee_username 177 | { 178 | public static void Check(string username) 179 | { 180 | try 181 | { 182 | string url = $"https://www.buymeacoffee.com/{username}"; 183 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 184 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 185 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 186 | if (response.StatusCode == HttpStatusCode.OK) 187 | { 188 | Console.WriteLine($"[+] BuyMeACoffe : https://www.buymeacoffee.com/{username}"); 189 | } 190 | else { Console.WriteLine("[-] BuyMeACoffe : NOT FOUND"); } 191 | } 192 | catch { Console.WriteLine("[-] BuyMeACoffe : NOT FOUND"); } 193 | } 194 | } 195 | 196 | 197 | class tenchat_username 198 | { 199 | public static void Check(string username) 200 | { 201 | try 202 | { 203 | string url = $"https://tenchat.ru/{username}"; 204 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 205 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 206 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 207 | if (response.StatusCode == HttpStatusCode.OK) 208 | { 209 | Console.WriteLine($"[+] TenChat : https://tenchat.ru/{username}"); 210 | } 211 | else { Console.WriteLine("[-] TenChat : NOT FOUND"); } 212 | } 213 | catch { Console.WriteLine("[-] TenChat : NOT FOUND"); } 214 | } 215 | 216 | } 217 | 218 | 219 | class github_username 220 | { 221 | public static void Check(string username) 222 | { 223 | try 224 | { 225 | string url = $"https://api.github.com/users/{username}/events/public"; 226 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 227 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 228 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 229 | if (response.StatusCode == HttpStatusCode.NotFound) 230 | { 231 | Console.WriteLine("[-] GitHub : NOT FOUND"); 232 | } 233 | else { Console.WriteLine($"[+] GitHub : https://github.com/{username}"); } 234 | } 235 | catch { Console.WriteLine("[-] GitHub : NOT FOUND"); } 236 | } 237 | } 238 | 239 | 240 | class tg_username 241 | { 242 | public static void Check(string username) 243 | { 244 | try 245 | { 246 | string url = $"https://t.me/{username}"; 247 | WebClient wc = new WebClient(); 248 | string response = wc.DownloadString(url); 249 | 250 | if (response.Contains($", you can contact ")) 251 | { 252 | Console.WriteLine("[-] Telegram : NOT FOUND"); 253 | } 254 | else { Console.WriteLine($"[+] Telegram : https://t.me/{username}"); } 255 | } 256 | catch { Console.WriteLine("[-] Telegram : NOT FOUND"); } 257 | 258 | } 259 | } 260 | 261 | class blogger_username 262 | { 263 | public static void Check(string username) 264 | { 265 | try 266 | { 267 | string url = $"http://{username}.blogspot.com"; 268 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 269 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 270 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 271 | if (response.StatusCode == HttpStatusCode.NotFound) 272 | { 273 | Console.WriteLine("[-] Blogger : NOT FOUND"); 274 | } 275 | else { Console.WriteLine($"[+] Blogger : http://{username}.blogspot.com"); } 276 | } 277 | catch { Console.WriteLine("[-] Blogger : NOT FOUND"); } 278 | } 279 | } 280 | 281 | class reddit_username 282 | { 283 | public static void Check(string username) 284 | { 285 | try 286 | { 287 | string url = $"https://www.reddit.com/user/{username}"; 288 | 289 | if (new WebClient().DownloadString(url).Contains("Dive into anything")) 290 | { 291 | Console.WriteLine("[-] Reddit : NOT FOUND"); 292 | } 293 | else { Console.WriteLine($"[+] Reddit : https://www.reddit.com/user/{username}"); } 294 | } 295 | catch { Console.WriteLine("[-] Reddit : NOT FOUND"); } 296 | } 297 | } 298 | 299 | 300 | class archive_is_username 301 | { 302 | public static void Check(string username) 303 | { 304 | Console.WriteLine($"[+] ArchiveIs : http://archive.is/search/?text={username}"); 305 | } 306 | } 307 | 308 | class vk_username 309 | { 310 | public static void Check(string username) 311 | { 312 | try 313 | { 314 | string url = $"https://m.vk.com/{username}"; 315 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 316 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 317 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 318 | if (response.StatusCode == HttpStatusCode.NotFound) 319 | { 320 | Console.WriteLine("[-] VK : NOT FOUND"); 321 | } 322 | else { Console.WriteLine($"[+] VK : https://vk.com/{username}"); } 323 | } 324 | catch { Console.WriteLine("[-] VK : NOT FOUND"); } 325 | } 326 | } 327 | 328 | class pikabu_username 329 | { 330 | public static void Check(string username) 331 | { 332 | try 333 | { 334 | string url = $"http://pikabu.ru/@{username}"; 335 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 336 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 337 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 338 | if (response.StatusCode == HttpStatusCode.NotFound) 339 | { 340 | Console.WriteLine("[-] Pikabu : NOT FOUND"); 341 | } 342 | else { Console.WriteLine($"[+] Pikabu : http://pikabu.ru/@{username}"); } 343 | } 344 | catch { Console.WriteLine("[-] Pikabu : NOT FOUND"); } 345 | } 346 | } 347 | 348 | class akniga_username 349 | { 350 | public static void Check(string username) 351 | { 352 | try 353 | { 354 | string url = $"http://akniga.org/profile/{username}/"; 355 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 356 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 357 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 358 | if (response.StatusCode == HttpStatusCode.NotFound) 359 | { 360 | Console.WriteLine("[-] Akniga : NOT FOUND"); 361 | } 362 | else { Console.WriteLine($"[+] Akniga : http://akniga.org/profile/{username}/"); } 363 | } 364 | catch { Console.WriteLine("[-] Akniga : NOT FOUND"); } 365 | } 366 | } 367 | 368 | 369 | class pinterest_username 370 | { 371 | public static void Check(string username) 372 | { 373 | try 374 | { 375 | string url = $"https://www.pinterest.com/{username}/_saved/"; 376 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 377 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 378 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 379 | if (response.StatusCode != HttpStatusCode.OK) 380 | { 381 | Console.WriteLine("[-] Pinterest : NOT FOUND"); 382 | } 383 | else { Console.WriteLine($"[+] Pinterest : https://www.pinterest.com/{username}/_saved/"); } 384 | } 385 | catch { Console.WriteLine("[-] Pinterest : NOT FOUND"); } 386 | } 387 | } 388 | 389 | 390 | class yt_username 391 | { 392 | public static void Check(string username) 393 | { 394 | try 395 | { 396 | string url = $"https://www.youtube.com/user/{username}"; 397 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 398 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 399 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 400 | if (response.StatusCode != HttpStatusCode.OK) 401 | { 402 | Console.WriteLine("[-] YouTube : NOT FOUND"); 403 | } 404 | else { Console.WriteLine($"[+] YouTube : https://www.youtube.com/user/{username}"); } 405 | } 406 | catch { Console.WriteLine("[-] YouTube : NOT FOUND"); } 407 | } 408 | } 409 | 410 | class fb_username 411 | { 412 | public static void Check(string username) 413 | { 414 | try 415 | { 416 | string url = $"https://www.facebook.com/{username}"; 417 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 418 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 419 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 420 | if (response.StatusCode == HttpStatusCode.NotFound) 421 | { 422 | Console.WriteLine("[-] FaceBook : NOT FOUND"); 423 | } 424 | else { Console.WriteLine($"[+] FaceBook : https://www.facebook.com/{username}"); } 425 | } 426 | catch { Console.WriteLine("[-] FaceBook : NOT FOUND"); } 427 | } 428 | } 429 | 430 | class ya_music_username 431 | { 432 | public static void Check(string username) 433 | { 434 | try 435 | { 436 | string url = $"https://music.yandex.ru/users/{username}/playlists"; 437 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 438 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 439 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 440 | if (response.StatusCode == HttpStatusCode.NotFound) 441 | { 442 | Console.WriteLine("[-] YandexMusic : NOT FOUND"); 443 | } 444 | else { Console.WriteLine($"[+] YandexMusic : https://music.yandex.ru/users/{username}/playlists"); } 445 | } 446 | catch { Console.WriteLine("[-] YandexMusic : NOT FOUND"); } 447 | } 448 | } 449 | 450 | 451 | class ya_market_username 452 | { 453 | public static void Check(string username) 454 | { 455 | try 456 | { 457 | string url = $"https://market.yandex.ru/user/{username}/reviews"; 458 | WebClient wc = new WebClient(); 459 | string response = wc.DownloadString(url); 460 | if (response.Contains(": 404")) 461 | { 462 | Console.WriteLine("[-] YandexMarket : NOT FOUND"); 463 | } 464 | else { Console.WriteLine($"[+] YandexMarket : https://market.yandex.ru/user/{username}/reviews"); } 465 | } 466 | catch { Console.WriteLine("[-] YandexMarket : NOT FOUND"); } 467 | } 468 | } 469 | 470 | 471 | class ya_zen_username 472 | { 473 | public static void Check(string username) 474 | { 475 | try 476 | { 477 | string url = $"https://zen.yandex.com/{username}"; 478 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 479 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 480 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 481 | if (response.StatusCode == HttpStatusCode.NotFound) 482 | { 483 | Console.WriteLine("[-] YandexZen : NOT FOUND"); 484 | } 485 | else { Console.WriteLine($"[+] YandexZen : https://zen.yandex.com/{username}"); } 486 | } 487 | catch { Console.WriteLine("[-] YandexZen : NOT FOUND"); } 488 | } 489 | } 490 | 491 | class spotif_username 492 | { 493 | public static void Check(string username) 494 | { 495 | try 496 | { 497 | string url = $"https://open.spotify.com/user/{username}"; 498 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 499 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 500 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 501 | if (response.StatusCode == HttpStatusCode.NotFound) 502 | { 503 | Console.WriteLine("[-] Spotify : NOT FOUND"); 504 | } 505 | else { Console.WriteLine($"[+] Spotify : https://open.spotify.com/user/{username}"); } 506 | } 507 | catch { Console.WriteLine("[-] Spotify : NOT FOUND"); } 508 | } 509 | } 510 | 511 | 512 | class habr_username 513 | { 514 | 515 | public static void Check(string username) 516 | { 517 | try 518 | { 519 | string url = $"https://habr.com/ru/users/{username}/"; 520 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 521 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 522 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 523 | if (response.StatusCode == HttpStatusCode.NotFound) 524 | { 525 | Console.WriteLine("[-] Habr : NOT FOUND"); 526 | } 527 | else { Console.WriteLine($"[+] Habr : https://habr.com/ru/users/{username}/"); } 528 | } 529 | catch { Console.WriteLine("[-] Habr : NOT FOUND"); } 530 | } 531 | } 532 | 533 | class twitch_username 534 | { 535 | // 536 | public static void Check(string username) 537 | { 538 | try 539 | { 540 | string url = $"https://m.twitch.tv/{username}?desktop-redirect=true"; 541 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 542 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 543 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 544 | if (response.StatusCode == HttpStatusCode.NotFound) 545 | { 546 | Console.WriteLine("[-] Twitch : NOT FOUND"); 547 | } 548 | else { Console.WriteLine($"[+] Twitch : https://m.twitch.tv/{username}"); } 549 | } 550 | catch { Console.WriteLine("[-] Twitch : NOT FOUND"); } 551 | } 552 | } 553 | 554 | class ph_userame 555 | { 556 | // 557 | public static void Check(string username) 558 | { 559 | try 560 | { 561 | string url = $"https://rt.pornhub.com/users/{username}"; 562 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 563 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 564 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 565 | if (response.StatusCode == HttpStatusCode.NotFound) 566 | { 567 | Console.WriteLine("[-] PornHub : NOT FOUND"); 568 | } 569 | else { Console.WriteLine($"[+] PornHub : https://rt.pornhub.com/users/{username}"); } 570 | } 571 | catch { Console.WriteLine("[-] PornHub : NOT FOUND"); } 572 | } 573 | } 574 | 575 | class tt_username 576 | { 577 | public static void Check(string username) 578 | { 579 | try 580 | { 581 | string url = $"https://www.tiktok.com/@{username}"; 582 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 583 | request.UserAgent = "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"; 584 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 585 | if (response.StatusCode == HttpStatusCode.NotFound) 586 | { 587 | Console.WriteLine("[-] TikTok : NOT FOUND"); 588 | } 589 | else { Console.WriteLine($"[+] TikTok : https://www.tiktok.com/@{username}"); } 590 | } 591 | catch { Console.WriteLine("[-] TikTok : NOT FOUND"); } 592 | } 593 | } 594 | class ebay_username 595 | { 596 | public static void Check(string username) 597 | { 598 | try 599 | { 600 | string url = $"https://www.ebay.com/usr/{username}"; 601 | WebClient wc = new WebClient(); 602 | string response = wc.DownloadString(url); 603 | if (response.Contains($"Profile - error")) 604 | { 605 | Console.WriteLine("[-] Ebay : NOT FOUND"); 606 | } 607 | else { Console.WriteLine($"[+] Ebay : https://www.ebay.com/usr/{username}"); } 608 | } 609 | catch { Console.WriteLine("[-] Ebay : NOT FOUND"); } 610 | } 611 | } 612 | 613 | class pp_username 614 | { 615 | // 616 | public static void Check(string username) 617 | { 618 | try 619 | { 620 | 621 | 622 | string url = $"https://www.paypal.com/paypalme/{username}"; 623 | WebClient wc = new WebClient(); 624 | 625 | wc.Headers.Add("User-Agent", "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36"); 626 | string response = wc.DownloadString(url); 627 | if (!response.Contains($"PayPal.me/{username}")) 628 | { 629 | Console.WriteLine("[-] PayPal : NOT FOUND"); 630 | } 631 | else { Console.WriteLine($"[+] PayPal : https://www.paypal.com/paypalme/{username}"); } 632 | } 633 | catch { Console.WriteLine("[-] PayPal : NOT FOUND"); } 634 | } 635 | } 636 | 637 | class patreon_username 638 | { 639 | public static void Check(string username) 640 | { 641 | try 642 | { 643 | string url = $"https://www.patreon.com/{username}/creators"; 644 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 645 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 646 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 647 | if (response.StatusCode == HttpStatusCode.NotFound) 648 | { 649 | Console.WriteLine("[-] Patreon : NOT FOUND"); 650 | } 651 | else { Console.WriteLine($"[+] Patreon : https://www.patreon.com/{username}/creators"); } 652 | } 653 | catch (Exception ex){ 654 | if (ex.ToString().Contains("404")) 655 | { 656 | Console.WriteLine("[-] Patreon : NOT FOUND"); 657 | } 658 | else 659 | { 660 | Console.WriteLine($"[+] Patreon : https://www.patreon.com/{username}/creators"); 661 | } 662 | 663 | } 664 | } 665 | } 666 | 667 | class soundc_username 668 | { 669 | public static void Check(string username) 670 | { 671 | try 672 | { 673 | string url = $"https://soundcloud.com/{username}"; 674 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 675 | request.UserAgent = "Mozilla/5.0 (Linux; Android 9; Pixel 2 XL Build/PPP3.180510.008) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36"; 676 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 677 | if (response.StatusCode == HttpStatusCode.NotFound) 678 | { 679 | Console.WriteLine("[-] SoundCloud : NOT FOUND"); 680 | } 681 | else { Console.WriteLine($"[+] SoundCloud : https://soundcloud.com/{username}"); } 682 | } 683 | catch { Console.WriteLine("[-] SoundCloud : NOT FOUND"); } 684 | } 685 | } 686 | 687 | class aboutme_username 688 | { 689 | public static void Check(string username) 690 | { 691 | try 692 | { 693 | string url = $"https://about.me/{username}"; 694 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 695 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 696 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 697 | if (response.StatusCode == HttpStatusCode.NotFound) 698 | { 699 | Console.WriteLine("[-] AboutMe : NOT FOUND"); 700 | } 701 | else { Console.WriteLine($"[+] AboutMe : https://about.me/{username}"); } 702 | } 703 | catch { Console.WriteLine("[-] AboutMe : NOT FOUND"); } 704 | } 705 | } 706 | 707 | 708 | class wiki_username 709 | { 710 | public static void Check(string username) 711 | { 712 | try 713 | { 714 | string url = $"https://ru.wikipedia.org/wiki/Участник:{username}"; 715 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 716 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 717 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 718 | if (response.StatusCode == HttpStatusCode.NotFound) 719 | { 720 | Console.WriteLine("[-] Wikipedia : NOT FOUND"); 721 | } 722 | else { Console.WriteLine($"[+] Wikipedia : https://ru.wikipedia.org/wiki/Участник:{username}"); } 723 | } 724 | catch { Console.WriteLine("[-] Wikipedia : NOT FOUND"); } 725 | } 726 | } 727 | 728 | class jimbo_username 729 | { 730 | public static void Check(string username) 731 | { 732 | try 733 | { 734 | string url = $"https://{username}.jimdofree.com"; 735 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 736 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 737 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 738 | if (response.StatusCode != HttpStatusCode.OK) 739 | { 740 | Console.WriteLine("[-] Jimbo : NOT FOUND"); 741 | } 742 | else { Console.WriteLine($"[+] Jimbo : https://{username}.jimdofree.com"); } 743 | } 744 | catch { Console.WriteLine("[-] Jimbo : NOT FOUND"); } 745 | } 746 | } 747 | 748 | 749 | class tumblr_username 750 | { 751 | public static void Check(string username) 752 | { 753 | try 754 | { 755 | string url = $"https://{username}.tumblr.com/"; 756 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 757 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 758 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 759 | if (response.StatusCode != HttpStatusCode.OK) 760 | { 761 | Console.WriteLine("[-] Tumblr : NOT FOUND"); 762 | } 763 | else { Console.WriteLine($"[+] Tumblr : https://{username}.tumblr.com/"); } 764 | } 765 | catch { Console.WriteLine("[-] Tumblr : NOT FOUND"); } 766 | } 767 | } 768 | 769 | 770 | class flicklr_username 771 | { 772 | public static void Check(string username) 773 | { 774 | try 775 | { 776 | string url = $"https://www.flickr.com/people/{username}/"; 777 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 778 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 779 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 780 | if (response.StatusCode == HttpStatusCode.NotFound) 781 | { 782 | Console.WriteLine("[-] Flicklr : NOT FOUND"); 783 | } 784 | else { Console.WriteLine($"[+] Flicklr : https://www.flickr.com/people/{username}/"); } 785 | } 786 | catch { Console.WriteLine("[-] Flicklr : NOT FOUND"); } 787 | } 788 | } 789 | 790 | 791 | class wp_username 792 | { 793 | public static void Check(string username) 794 | { 795 | try 796 | { 797 | string url = $"https://{username.ToLower()}.wordpress.com"; 798 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 799 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 800 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 801 | if (response.ResponseUri.ToString().Contains($"subdomain={username.ToLower()}")) 802 | { 803 | Console.WriteLine("[-] WordPress : NOT FOUND"); 804 | } 805 | else { Console.WriteLine($"[+] WordPress : https://{username}.wordpress.com"); } 806 | } 807 | catch (Exception ex) 808 | { 809 | if (ex.ToString().Contains(" ")) 810 | { 811 | Console.WriteLine(ex.ToString()); 812 | } 813 | } 814 | } 815 | } 816 | 817 | 818 | class vimeo_username 819 | { 820 | public static void Check(string username) 821 | { 822 | try 823 | { 824 | string url = $"https://vimeo.com/{username}"; 825 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 826 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 827 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 828 | if (response.StatusCode == HttpStatusCode.NotFound) 829 | { 830 | Console.WriteLine("[-] Vimeo : NOT FOUND"); 831 | } 832 | else { Console.WriteLine($"[+] Vimeo : https://vimeo.com/{username}"); } 833 | } 834 | catch { Console.WriteLine("[-] Vimeo : NOT FOUND"); } 835 | } 836 | } 837 | 838 | 839 | class slideshare_username 840 | { 841 | public static void Check(string username) 842 | { 843 | try 844 | { 845 | string url = $"https://www.slideshare.net/{username}"; 846 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 847 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 848 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 849 | if (response.StatusCode == HttpStatusCode.NotFound) 850 | { 851 | Console.WriteLine("[-] SlideShare : NOT FOUND"); 852 | } 853 | else { Console.WriteLine($"[+] SlideShare : https://www.slideshare.net/{username}"); } 854 | } 855 | catch { Console.WriteLine("[-] SlideShare : NOT FOUND"); } 856 | } 857 | } 858 | 859 | 860 | class fanpop_username 861 | { 862 | public static void Check(string username) 863 | { 864 | try 865 | { 866 | string url = $"https://www.fanpop.com/fans/{username}"; 867 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 868 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 869 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 870 | if (response.StatusCode != HttpStatusCode.OK) 871 | { 872 | Console.WriteLine("[-] FanPop : NOT FOUND"); 873 | } 874 | else { Console.WriteLine($"[+] FanPop : https://ru.wikipedia.org/wiki/Участник:{username}"); } 875 | } 876 | catch { Console.WriteLine("[-] FanPop : NOT FOUND"); } 877 | } 878 | } 879 | 880 | class myspace_username 881 | { 882 | public static void Check(string username) 883 | { 884 | try 885 | { 886 | string url = $"https://myspace.com/{username}"; 887 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 888 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 889 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 890 | if (response.StatusCode == HttpStatusCode.NotFound) 891 | { 892 | Console.WriteLine("[-] MySpace : NOT FOUND"); 893 | } 894 | else { Console.WriteLine($"[+] MySpace : https://myspace.com/{username}"); } 895 | } 896 | catch { Console.WriteLine("[-] MySpace : NOT FOUND"); } 897 | } 898 | } 899 | 900 | class steam_username 901 | { 902 | public static void Check(string username) 903 | { 904 | try 905 | { 906 | string url = $"https://steamcommunity.com/id/{username}"; 907 | WebClient wc = new WebClient(); 908 | wc.Headers.Add("User-Agent", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"); 909 | string response = wc.DownloadString(url); 910 | if (response.Contains("linkStandard")) 911 | { 912 | Console.WriteLine("[-] Steam : NOT FOUND"); 913 | } 914 | else { Console.WriteLine($"[+] Steam : https://steamcommunity.com/id/{username}"); } 915 | } 916 | catch { Console.WriteLine("[-] Steam : NOT FOUND"); } 917 | } 918 | } 919 | 920 | 921 | class gravatar_username 922 | { 923 | public static void Check(string username) 924 | { 925 | try 926 | { 927 | string url = $"http://en.gravatar.com/{username}"; 928 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 929 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 930 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 931 | if (response.StatusCode == HttpStatusCode.NotFound) 932 | { 933 | Console.WriteLine("[-] Gravatar : NOT FOUND"); 934 | } 935 | else { Console.WriteLine($"[+] Gravatar : http://en.gravatar.com/{username}"); } 936 | } 937 | catch { Console.WriteLine("[-] Gravatar : NOT FOUND"); } 938 | } 939 | } 940 | 941 | 942 | class hubpages_username 943 | { 944 | public static void Check(string username) 945 | { 946 | try 947 | { 948 | string url = $"https://hubpages.com/@{username}"; 949 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); 950 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90"; 951 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 952 | if (response.StatusCode == HttpStatusCode.NotFound) 953 | { 954 | Console.WriteLine("[-] HubPages : NOT FOUND"); 955 | } 956 | else { Console.WriteLine($"[+] HubPages : https://hubpages.com/@{username}"); } 957 | } 958 | catch { Console.WriteLine("[-] HubPages : NOT FOUND"); } 959 | } 960 | } 961 | 962 | 963 | 964 | 965 | #endregion 966 | 967 | } 968 | --------------------------------------------------------------------------------