├── CrackedIOServerEmulator.sln
├── CrackedIOServerEmulator
├── CrackedIOServerEmulator.csproj
├── FodyWeavers.xml
├── FodyWeavers.xsd
├── Host
│ └── HostEditor.cs
├── Program.cs
├── ServerHelper
│ ├── Emulator
│ │ └── AuthEmulator
│ │ │ └── Credentials.cs
│ └── Server.cs
├── Utils
│ └── Utils.cs
└── bin
│ └── Debug
│ └── net7.0
│ ├── CertificateBypass.pfx
│ ├── CrackedIOServerEmulator.deps.json
│ ├── CrackedIOServerEmulator.dll
│ ├── CrackedIOServerEmulator.exe
│ └── CrackedIOServerEmulator.runtimeconfig.json
└── README.md
/CrackedIOServerEmulator.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Version 17
4 | VisualStudioVersion = 17.4.33213.308
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CrackedIOServerEmulator", "CrackedIOServerEmulator\CrackedIOServerEmulator.csproj", "{63457596-97BA-4DCB-9882-FB0281E72662}"
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 | {63457596-97BA-4DCB-9882-FB0281E72662}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {63457596-97BA-4DCB-9882-FB0281E72662}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {63457596-97BA-4DCB-9882-FB0281E72662}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 | {63457596-97BA-4DCB-9882-FB0281E72662}.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 = {A3D67B69-10AC-4622-BA32-5229BF61294E}
24 | EndGlobalSection
25 | EndGlobal
26 |
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/CrackedIOServerEmulator.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | net7.0
6 | enable
7 | enable
8 |
9 |
10 |
11 |
12 | all
13 | runtime; build; native; contentfiles; analyzers; buildtransitive
14 |
15 |
16 |
17 |
18 |
19 | ..\..\NetCoreServer-7.0.0\source\NetCoreServer\bin\Debug\net7.0\NetCoreServer.dll
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/FodyWeavers.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks
13 |
14 |
15 |
16 |
17 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.
18 |
19 |
20 |
21 |
22 | A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks
23 |
24 |
25 |
26 |
27 | A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.
28 |
29 |
30 |
31 |
32 | A list of unmanaged 32 bit assembly names to include, delimited with line breaks.
33 |
34 |
35 |
36 |
37 | A list of unmanaged 64 bit assembly names to include, delimited with line breaks.
38 |
39 |
40 |
41 |
42 | The order of preloaded assemblies, delimited with line breaks.
43 |
44 |
45 |
46 |
47 |
48 | This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file.
49 |
50 |
51 |
52 |
53 | Controls if .pdbs for reference assemblies are also embedded.
54 |
55 |
56 |
57 |
58 | Controls if runtime assemblies are also embedded.
59 |
60 |
61 |
62 |
63 | Controls whether the runtime assemblies are embedded with their full path or only with their assembly name.
64 |
65 |
66 |
67 |
68 | Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option.
69 |
70 |
71 |
72 |
73 | As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off.
74 |
75 |
76 |
77 |
78 | Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code.
79 |
80 |
81 |
82 |
83 | Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior.
84 |
85 |
86 |
87 |
88 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with |
89 |
90 |
91 |
92 |
93 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |.
94 |
95 |
96 |
97 |
98 | A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with |
99 |
100 |
101 |
102 |
103 | A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |.
104 |
105 |
106 |
107 |
108 | A list of unmanaged 32 bit assembly names to include, delimited with |.
109 |
110 |
111 |
112 |
113 | A list of unmanaged 64 bit assembly names to include, delimited with |.
114 |
115 |
116 |
117 |
118 | The order of preloaded assemblies, delimited with |.
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 | 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed.
127 |
128 |
129 |
130 |
131 | A comma-separated list of error codes that can be safely ignored in assembly verification.
132 |
133 |
134 |
135 |
136 | 'false' to turn off automatic generation of the XML Schema file.
137 |
138 |
139 |
140 |
141 |
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/Host/HostEditor.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace CrackedIOServerEmulator.Host
8 | {
9 | internal class HostEditor
10 | {
11 | const string Path = "C:\\Windows\\System32\\drivers\\etc\\hosts";
12 | const string Match = "127.0.0.1 cracked.io";
13 | public static bool Edit()
14 | {
15 | try
16 | {
17 | foreach (var item in File.ReadLines(Path))
18 | {
19 | if (item == Match)
20 | {
21 | return true;
22 | }
23 | }
24 | File.AppendAllText(Path, $"\n{Match}\n");
25 | return true;
26 | }
27 | catch (Exception ex)
28 | {
29 | Program.Log($"Could not edit/read Hosts File. Please try running Server Emulator with Administrator Perms.\nError: {ex.Message}", "ERROR", ConsoleColor.Red);
30 | return false;
31 | }
32 | }
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/Program.cs:
--------------------------------------------------------------------------------
1 | using System.Net;
2 | using System.Security.Authentication;
3 | using System.Security.Cryptography.X509Certificates;
4 | using NetCoreServer;
5 |
6 | namespace CrackedIOServerEmulator
7 | {
8 | class Program
9 | {
10 | static void Main(string[] args)
11 | {
12 | Console.Title = $"[{DateTime.Now}] Cracked.io Server Emulator by https://t.me/CabboShiba & https://t.me/OfficialChaos || https://github.com/CabboShiba & https://github.com/FaxHack";
13 | Console.SetWindowSize(134, 30);
14 | Utils.Logo();
15 | Console.WriteLine("\n");
16 | Log("Starting Server Emulator. Be sure you have previously installed SSL Certificate. Password is \"shiba\".", "CONFIG", ConsoleColor.Cyan);
17 | Log("Editing Hosts File...", "CONFIG", ConsoleColor.Cyan);
18 | if(Host.HostEditor.Edit() == true)
19 | {
20 | Log("Succesfully edited Hosts File. Now Server Emulator will be able to run without problem.", "BYPASS", ConsoleColor.Cyan);
21 | }
22 | else
23 | {
24 | Utils.Leave();
25 | }
26 | try
27 | {
28 | var context = new SslContext(SslProtocols.Tls12, new X509Certificate2(Environment.CurrentDirectory + @"\CertificateBypass.pfx", "shiba"));
29 | var server = new CrackedIOServerEmulator.ServerHelper.HttpsCacheServer(context, IPAddress.Parse("127.0.0.1"), 443);
30 | server.Start();
31 | Log("Succesfully started Server Emulator...", "SUCCESS", ConsoleColor.Green);
32 | }
33 | catch(Exception ex)
34 | {
35 | Log($"Could not start Server Emulator.\nError: {ex.Message}", "ERROR", ConsoleColor.Red);
36 | }
37 | for(;;)
38 | {
39 |
40 | }
41 | }
42 |
43 |
44 |
45 | public static void Log(string Data, string Type, ConsoleColor Color)
46 | {
47 | Console.ForegroundColor = Color;
48 | Console.WriteLine($"[{DateTime.Now} - {Type}] {Data}");
49 | Console.ResetColor();
50 | }
51 | }
52 | }
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/ServerHelper/Emulator/AuthEmulator/Credentials.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace CrackedIOServerEmulator.ServerHelper.Emulator.AuthEmulator
8 | {
9 | internal class Credentials
10 | {
11 | private const int SupremeID = 12;
12 | private const bool Authenticated = true;
13 | public static string GetValidResponse()
14 | {
15 | string Response = $"{{\"auth\":{Authenticated},\"uid\":\"{GetRandomNumber(100000, 500000)}\",\"username\":\"{GetRandomString(8)}\",\"posts\":\"{GetRandomNumber(40, 120)}\",\"likes\":\"{GetRandomNumber(100, 200)}\",\"group\":\"{SupremeID}\",\"hash\":\"{GetRandomString(64)}\",\"vars\":\"\",\"blacklist\":0}}";
16 | return Response;
17 | }
18 |
19 | private static Random ran = new Random();
20 | private static int GetRandomNumber(int Min, int Max)
21 | {
22 | if(Min >= Max)
23 | {
24 | Min = Max - 1;
25 | }
26 | return ran.Next(Min, Max);
27 | }
28 |
29 | private static string GetRandomString(int length)
30 | {
31 | const string chars = "qwertyuioplkjhgfdsazxcvbnmABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
32 | return new string(Enumerable.Repeat(chars, length)
33 | .Select(s => s[ran.Next(s.Length)]).ToArray());
34 | }
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/ServerHelper/Server.cs:
--------------------------------------------------------------------------------
1 | using NetCoreServer;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Linq;
5 | using System.Net;
6 | using System.Text;
7 | using System.Threading.Tasks;
8 | using static CrackedIOServerEmulator.Program;
9 |
10 | namespace CrackedIOServerEmulator.ServerHelper
11 | {
12 | public class HttpsCacheSession : HttpsSession
13 | {
14 | private const int HTTPStatusCode = 200;
15 | public HttpsCacheSession(NetCoreServer.HttpsServer server) : base(server) { }
16 |
17 | protected override void OnReceivedRequest(HttpRequest Request)
18 | {
19 | Console.WriteLine("--------------------------------------------------------------------------------------------");
20 | Log($"Accepted request from: {Request.Url}", "SERVER", ConsoleColor.Magenta);
21 | var result = Request.ToString().Split("\n\r".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
22 | foreach (var data in result)
23 | {
24 | Log(data, "SERVER", ConsoleColor.Green);
25 | }
26 | if (Request.Method == "HEAD")
27 | SendResponseAsync(Response.MakeHeadResponse());
28 | else if (Request.Method == "GET")
29 | {
30 | SendResponseAsync(Response.MakeErrorResponse(200, "[{DateTime.Now}] Cracked.io Server Emulator by https://t.me/CabboShiba & https://t.me/OfficialChaos || https://github.com/CabboShiba & https://github.com/FaxHack\n\nhttps://github.com/CabboShiba/Cracked.ioServerEmulator\nhttps://github.com/FaxHack/Cracked.ioServerEmulator"));
31 | }
32 | else if ((Request.Method == "POST") || (Request.Method == "PUT"))
33 | {
34 | string bypass = CrackedIOServerEmulator.ServerHelper.Emulator.AuthEmulator.Credentials.GetValidResponse();
35 | SendResponseAsync(Response.MakeErrorResponse(200, bypass));
36 | }
37 | }
38 | }
39 |
40 | class HttpsCacheServer : NetCoreServer.HttpsServer
41 | {
42 | public HttpsCacheServer(SslContext context, IPAddress address, int port) : base(context, address, port) { }
43 |
44 | protected override SslSession CreateSession() { return new HttpsCacheSession(this); }
45 | }
46 |
47 | }
48 |
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/Utils/Utils.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using System.Diagnostics;
7 | using System.Drawing;
8 | using System.Resources;
9 |
10 | namespace CrackedIOServerEmulator
11 | {
12 | internal class Utils
13 | {
14 | public static void Leave()
15 | {
16 | Program.Log("Press enter to leave", "LEAVE", ConsoleColor.Red);
17 | Console.ReadLine();
18 | Process.GetCurrentProcess().Kill();
19 | }
20 |
21 | public static void Logo()
22 | {
23 | Console.ForegroundColor = ConsoleColor.Magenta;
24 | string Logo = " _____ _ _ ____ \r\n / ____| | | | | _ \\ \r\n | | _ __ __ _ ___| | _____ __| | |_) |_ _ _ __ __ _ ___ ___ \r\n | | | '__/ _` |/ __| |/ / _ \\/ _` | _ <| | | | '_ \\ / _` / __/ __|\r\n | |____| | | (_| | (__| < __/ (_| | |_) | |_| | |_) | (_| \\__ \\__ \\\r\n \\_____|_| \\__,_|\\___|_|\\_\\___|\\__,_|____/ \\__, | .__/ \\__,_|___/___/\r\n __/ | | \r\n |___/|_| ";
25 | Console.WriteLine(Logo);
26 | Console.ResetColor();
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/bin/Debug/net7.0/CertificateBypass.pfx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FaxHack/Cracked.io-ServerEmulator/3388c806c107cb7b969e08b31d78c8bdb4082688/CrackedIOServerEmulator/bin/Debug/net7.0/CertificateBypass.pfx
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/bin/Debug/net7.0/CrackedIOServerEmulator.deps.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeTarget": {
3 | "name": ".NETCoreApp,Version=v7.0",
4 | "signature": ""
5 | },
6 | "compilationOptions": {},
7 | "targets": {
8 | ".NETCoreApp,Version=v7.0": {
9 | "CrackedIOServerEmulator/1.0.0": {
10 | "dependencies": {
11 | "Costura.Fody": "5.7.0",
12 | "NetCoreServer": "7.0.0.0"
13 | },
14 | "runtime": {
15 | "CrackedIOServerEmulator.dll": {}
16 | }
17 | },
18 | "Costura.Fody/5.7.0": {
19 | "dependencies": {
20 | "Fody": "6.5.5",
21 | "NETStandard.Library": "1.6.1"
22 | },
23 | "runtime": {
24 | "lib/netstandard1.0/Costura.dll": {
25 | "assemblyVersion": "5.7.0.0",
26 | "fileVersion": "5.7.0.0"
27 | }
28 | }
29 | },
30 | "Fody/6.5.5": {},
31 | "Microsoft.NETCore.Platforms/1.1.0": {},
32 | "Microsoft.NETCore.Targets/1.1.0": {},
33 | "Microsoft.Win32.Primitives/4.3.0": {
34 | "dependencies": {
35 | "Microsoft.NETCore.Platforms": "1.1.0",
36 | "Microsoft.NETCore.Targets": "1.1.0",
37 | "System.Runtime": "4.3.0"
38 | }
39 | },
40 | "NETStandard.Library/1.6.1": {
41 | "dependencies": {
42 | "Microsoft.NETCore.Platforms": "1.1.0",
43 | "Microsoft.Win32.Primitives": "4.3.0",
44 | "System.AppContext": "4.3.0",
45 | "System.Collections": "4.3.0",
46 | "System.Collections.Concurrent": "4.3.0",
47 | "System.Console": "4.3.0",
48 | "System.Diagnostics.Debug": "4.3.0",
49 | "System.Diagnostics.Tools": "4.3.0",
50 | "System.Diagnostics.Tracing": "4.3.0",
51 | "System.Globalization": "4.3.0",
52 | "System.Globalization.Calendars": "4.3.0",
53 | "System.IO": "4.3.0",
54 | "System.IO.Compression": "4.3.0",
55 | "System.IO.Compression.ZipFile": "4.3.0",
56 | "System.IO.FileSystem": "4.3.0",
57 | "System.IO.FileSystem.Primitives": "4.3.0",
58 | "System.Linq": "4.3.0",
59 | "System.Linq.Expressions": "4.3.0",
60 | "System.Net.Http": "4.3.0",
61 | "System.Net.Primitives": "4.3.0",
62 | "System.Net.Sockets": "4.3.0",
63 | "System.ObjectModel": "4.3.0",
64 | "System.Reflection": "4.3.0",
65 | "System.Reflection.Extensions": "4.3.0",
66 | "System.Reflection.Primitives": "4.3.0",
67 | "System.Resources.ResourceManager": "4.3.0",
68 | "System.Runtime": "4.3.0",
69 | "System.Runtime.Extensions": "4.3.0",
70 | "System.Runtime.Handles": "4.3.0",
71 | "System.Runtime.InteropServices": "4.3.0",
72 | "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
73 | "System.Runtime.Numerics": "4.3.0",
74 | "System.Security.Cryptography.Algorithms": "4.3.0",
75 | "System.Security.Cryptography.Encoding": "4.3.0",
76 | "System.Security.Cryptography.Primitives": "4.3.0",
77 | "System.Security.Cryptography.X509Certificates": "4.3.0",
78 | "System.Text.Encoding": "4.3.0",
79 | "System.Text.Encoding.Extensions": "4.3.0",
80 | "System.Text.RegularExpressions": "4.3.0",
81 | "System.Threading": "4.3.0",
82 | "System.Threading.Tasks": "4.3.0",
83 | "System.Threading.Timer": "4.3.0",
84 | "System.Xml.ReaderWriter": "4.3.0",
85 | "System.Xml.XDocument": "4.3.0"
86 | }
87 | },
88 | "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
89 | "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
90 | "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
91 | "runtime.native.System/4.3.0": {
92 | "dependencies": {
93 | "Microsoft.NETCore.Platforms": "1.1.0",
94 | "Microsoft.NETCore.Targets": "1.1.0"
95 | }
96 | },
97 | "runtime.native.System.IO.Compression/4.3.0": {
98 | "dependencies": {
99 | "Microsoft.NETCore.Platforms": "1.1.0",
100 | "Microsoft.NETCore.Targets": "1.1.0"
101 | }
102 | },
103 | "runtime.native.System.Net.Http/4.3.0": {
104 | "dependencies": {
105 | "Microsoft.NETCore.Platforms": "1.1.0",
106 | "Microsoft.NETCore.Targets": "1.1.0"
107 | }
108 | },
109 | "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
110 | "dependencies": {
111 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
112 | }
113 | },
114 | "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
115 | "dependencies": {
116 | "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
117 | "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
118 | "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
119 | "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
120 | "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
121 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
122 | "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
123 | "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
124 | "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
125 | "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
126 | }
127 | },
128 | "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
129 | "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
130 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
131 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
132 | "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
133 | "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
134 | "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
135 | "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
136 | "System.AppContext/4.3.0": {
137 | "dependencies": {
138 | "System.Runtime": "4.3.0"
139 | }
140 | },
141 | "System.Buffers/4.3.0": {
142 | "dependencies": {
143 | "System.Diagnostics.Debug": "4.3.0",
144 | "System.Diagnostics.Tracing": "4.3.0",
145 | "System.Resources.ResourceManager": "4.3.0",
146 | "System.Runtime": "4.3.0",
147 | "System.Threading": "4.3.0"
148 | }
149 | },
150 | "System.Collections/4.3.0": {
151 | "dependencies": {
152 | "Microsoft.NETCore.Platforms": "1.1.0",
153 | "Microsoft.NETCore.Targets": "1.1.0",
154 | "System.Runtime": "4.3.0"
155 | }
156 | },
157 | "System.Collections.Concurrent/4.3.0": {
158 | "dependencies": {
159 | "System.Collections": "4.3.0",
160 | "System.Diagnostics.Debug": "4.3.0",
161 | "System.Diagnostics.Tracing": "4.3.0",
162 | "System.Globalization": "4.3.0",
163 | "System.Reflection": "4.3.0",
164 | "System.Resources.ResourceManager": "4.3.0",
165 | "System.Runtime": "4.3.0",
166 | "System.Runtime.Extensions": "4.3.0",
167 | "System.Threading": "4.3.0",
168 | "System.Threading.Tasks": "4.3.0"
169 | }
170 | },
171 | "System.Console/4.3.0": {
172 | "dependencies": {
173 | "Microsoft.NETCore.Platforms": "1.1.0",
174 | "Microsoft.NETCore.Targets": "1.1.0",
175 | "System.IO": "4.3.0",
176 | "System.Runtime": "4.3.0",
177 | "System.Text.Encoding": "4.3.0"
178 | }
179 | },
180 | "System.Diagnostics.Debug/4.3.0": {
181 | "dependencies": {
182 | "Microsoft.NETCore.Platforms": "1.1.0",
183 | "Microsoft.NETCore.Targets": "1.1.0",
184 | "System.Runtime": "4.3.0"
185 | }
186 | },
187 | "System.Diagnostics.DiagnosticSource/4.3.0": {
188 | "dependencies": {
189 | "System.Collections": "4.3.0",
190 | "System.Diagnostics.Tracing": "4.3.0",
191 | "System.Reflection": "4.3.0",
192 | "System.Runtime": "4.3.0",
193 | "System.Threading": "4.3.0"
194 | }
195 | },
196 | "System.Diagnostics.Tools/4.3.0": {
197 | "dependencies": {
198 | "Microsoft.NETCore.Platforms": "1.1.0",
199 | "Microsoft.NETCore.Targets": "1.1.0",
200 | "System.Runtime": "4.3.0"
201 | }
202 | },
203 | "System.Diagnostics.Tracing/4.3.0": {
204 | "dependencies": {
205 | "Microsoft.NETCore.Platforms": "1.1.0",
206 | "Microsoft.NETCore.Targets": "1.1.0",
207 | "System.Runtime": "4.3.0"
208 | }
209 | },
210 | "System.Globalization/4.3.0": {
211 | "dependencies": {
212 | "Microsoft.NETCore.Platforms": "1.1.0",
213 | "Microsoft.NETCore.Targets": "1.1.0",
214 | "System.Runtime": "4.3.0"
215 | }
216 | },
217 | "System.Globalization.Calendars/4.3.0": {
218 | "dependencies": {
219 | "Microsoft.NETCore.Platforms": "1.1.0",
220 | "Microsoft.NETCore.Targets": "1.1.0",
221 | "System.Globalization": "4.3.0",
222 | "System.Runtime": "4.3.0"
223 | }
224 | },
225 | "System.Globalization.Extensions/4.3.0": {
226 | "dependencies": {
227 | "Microsoft.NETCore.Platforms": "1.1.0",
228 | "System.Globalization": "4.3.0",
229 | "System.Resources.ResourceManager": "4.3.0",
230 | "System.Runtime": "4.3.0",
231 | "System.Runtime.Extensions": "4.3.0",
232 | "System.Runtime.InteropServices": "4.3.0"
233 | }
234 | },
235 | "System.IO/4.3.0": {
236 | "dependencies": {
237 | "Microsoft.NETCore.Platforms": "1.1.0",
238 | "Microsoft.NETCore.Targets": "1.1.0",
239 | "System.Runtime": "4.3.0",
240 | "System.Text.Encoding": "4.3.0",
241 | "System.Threading.Tasks": "4.3.0"
242 | }
243 | },
244 | "System.IO.Compression/4.3.0": {
245 | "dependencies": {
246 | "Microsoft.NETCore.Platforms": "1.1.0",
247 | "System.Buffers": "4.3.0",
248 | "System.Collections": "4.3.0",
249 | "System.Diagnostics.Debug": "4.3.0",
250 | "System.IO": "4.3.0",
251 | "System.Resources.ResourceManager": "4.3.0",
252 | "System.Runtime": "4.3.0",
253 | "System.Runtime.Extensions": "4.3.0",
254 | "System.Runtime.Handles": "4.3.0",
255 | "System.Runtime.InteropServices": "4.3.0",
256 | "System.Text.Encoding": "4.3.0",
257 | "System.Threading": "4.3.0",
258 | "System.Threading.Tasks": "4.3.0",
259 | "runtime.native.System": "4.3.0",
260 | "runtime.native.System.IO.Compression": "4.3.0"
261 | }
262 | },
263 | "System.IO.Compression.ZipFile/4.3.0": {
264 | "dependencies": {
265 | "System.Buffers": "4.3.0",
266 | "System.IO": "4.3.0",
267 | "System.IO.Compression": "4.3.0",
268 | "System.IO.FileSystem": "4.3.0",
269 | "System.IO.FileSystem.Primitives": "4.3.0",
270 | "System.Resources.ResourceManager": "4.3.0",
271 | "System.Runtime": "4.3.0",
272 | "System.Runtime.Extensions": "4.3.0",
273 | "System.Text.Encoding": "4.3.0"
274 | }
275 | },
276 | "System.IO.FileSystem/4.3.0": {
277 | "dependencies": {
278 | "Microsoft.NETCore.Platforms": "1.1.0",
279 | "Microsoft.NETCore.Targets": "1.1.0",
280 | "System.IO": "4.3.0",
281 | "System.IO.FileSystem.Primitives": "4.3.0",
282 | "System.Runtime": "4.3.0",
283 | "System.Runtime.Handles": "4.3.0",
284 | "System.Text.Encoding": "4.3.0",
285 | "System.Threading.Tasks": "4.3.0"
286 | }
287 | },
288 | "System.IO.FileSystem.Primitives/4.3.0": {
289 | "dependencies": {
290 | "System.Runtime": "4.3.0"
291 | }
292 | },
293 | "System.Linq/4.3.0": {
294 | "dependencies": {
295 | "System.Collections": "4.3.0",
296 | "System.Diagnostics.Debug": "4.3.0",
297 | "System.Resources.ResourceManager": "4.3.0",
298 | "System.Runtime": "4.3.0",
299 | "System.Runtime.Extensions": "4.3.0"
300 | }
301 | },
302 | "System.Linq.Expressions/4.3.0": {
303 | "dependencies": {
304 | "System.Collections": "4.3.0",
305 | "System.Diagnostics.Debug": "4.3.0",
306 | "System.Globalization": "4.3.0",
307 | "System.IO": "4.3.0",
308 | "System.Linq": "4.3.0",
309 | "System.ObjectModel": "4.3.0",
310 | "System.Reflection": "4.3.0",
311 | "System.Reflection.Emit": "4.3.0",
312 | "System.Reflection.Emit.ILGeneration": "4.3.0",
313 | "System.Reflection.Emit.Lightweight": "4.3.0",
314 | "System.Reflection.Extensions": "4.3.0",
315 | "System.Reflection.Primitives": "4.3.0",
316 | "System.Reflection.TypeExtensions": "4.3.0",
317 | "System.Resources.ResourceManager": "4.3.0",
318 | "System.Runtime": "4.3.0",
319 | "System.Runtime.Extensions": "4.3.0",
320 | "System.Threading": "4.3.0"
321 | }
322 | },
323 | "System.Net.Http/4.3.0": {
324 | "dependencies": {
325 | "Microsoft.NETCore.Platforms": "1.1.0",
326 | "System.Collections": "4.3.0",
327 | "System.Diagnostics.Debug": "4.3.0",
328 | "System.Diagnostics.DiagnosticSource": "4.3.0",
329 | "System.Diagnostics.Tracing": "4.3.0",
330 | "System.Globalization": "4.3.0",
331 | "System.Globalization.Extensions": "4.3.0",
332 | "System.IO": "4.3.0",
333 | "System.IO.FileSystem": "4.3.0",
334 | "System.Net.Primitives": "4.3.0",
335 | "System.Resources.ResourceManager": "4.3.0",
336 | "System.Runtime": "4.3.0",
337 | "System.Runtime.Extensions": "4.3.0",
338 | "System.Runtime.Handles": "4.3.0",
339 | "System.Runtime.InteropServices": "4.3.0",
340 | "System.Security.Cryptography.Algorithms": "4.3.0",
341 | "System.Security.Cryptography.Encoding": "4.3.0",
342 | "System.Security.Cryptography.OpenSsl": "4.3.0",
343 | "System.Security.Cryptography.Primitives": "4.3.0",
344 | "System.Security.Cryptography.X509Certificates": "4.3.0",
345 | "System.Text.Encoding": "4.3.0",
346 | "System.Threading": "4.3.0",
347 | "System.Threading.Tasks": "4.3.0",
348 | "runtime.native.System": "4.3.0",
349 | "runtime.native.System.Net.Http": "4.3.0",
350 | "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
351 | }
352 | },
353 | "System.Net.Primitives/4.3.0": {
354 | "dependencies": {
355 | "Microsoft.NETCore.Platforms": "1.1.0",
356 | "Microsoft.NETCore.Targets": "1.1.0",
357 | "System.Runtime": "4.3.0",
358 | "System.Runtime.Handles": "4.3.0"
359 | }
360 | },
361 | "System.Net.Sockets/4.3.0": {
362 | "dependencies": {
363 | "Microsoft.NETCore.Platforms": "1.1.0",
364 | "Microsoft.NETCore.Targets": "1.1.0",
365 | "System.IO": "4.3.0",
366 | "System.Net.Primitives": "4.3.0",
367 | "System.Runtime": "4.3.0",
368 | "System.Threading.Tasks": "4.3.0"
369 | }
370 | },
371 | "System.ObjectModel/4.3.0": {
372 | "dependencies": {
373 | "System.Collections": "4.3.0",
374 | "System.Diagnostics.Debug": "4.3.0",
375 | "System.Resources.ResourceManager": "4.3.0",
376 | "System.Runtime": "4.3.0",
377 | "System.Threading": "4.3.0"
378 | }
379 | },
380 | "System.Reflection/4.3.0": {
381 | "dependencies": {
382 | "Microsoft.NETCore.Platforms": "1.1.0",
383 | "Microsoft.NETCore.Targets": "1.1.0",
384 | "System.IO": "4.3.0",
385 | "System.Reflection.Primitives": "4.3.0",
386 | "System.Runtime": "4.3.0"
387 | }
388 | },
389 | "System.Reflection.Emit/4.3.0": {
390 | "dependencies": {
391 | "System.IO": "4.3.0",
392 | "System.Reflection": "4.3.0",
393 | "System.Reflection.Emit.ILGeneration": "4.3.0",
394 | "System.Reflection.Primitives": "4.3.0",
395 | "System.Runtime": "4.3.0"
396 | }
397 | },
398 | "System.Reflection.Emit.ILGeneration/4.3.0": {
399 | "dependencies": {
400 | "System.Reflection": "4.3.0",
401 | "System.Reflection.Primitives": "4.3.0",
402 | "System.Runtime": "4.3.0"
403 | }
404 | },
405 | "System.Reflection.Emit.Lightweight/4.3.0": {
406 | "dependencies": {
407 | "System.Reflection": "4.3.0",
408 | "System.Reflection.Emit.ILGeneration": "4.3.0",
409 | "System.Reflection.Primitives": "4.3.0",
410 | "System.Runtime": "4.3.0"
411 | }
412 | },
413 | "System.Reflection.Extensions/4.3.0": {
414 | "dependencies": {
415 | "Microsoft.NETCore.Platforms": "1.1.0",
416 | "Microsoft.NETCore.Targets": "1.1.0",
417 | "System.Reflection": "4.3.0",
418 | "System.Runtime": "4.3.0"
419 | }
420 | },
421 | "System.Reflection.Primitives/4.3.0": {
422 | "dependencies": {
423 | "Microsoft.NETCore.Platforms": "1.1.0",
424 | "Microsoft.NETCore.Targets": "1.1.0",
425 | "System.Runtime": "4.3.0"
426 | }
427 | },
428 | "System.Reflection.TypeExtensions/4.3.0": {
429 | "dependencies": {
430 | "System.Reflection": "4.3.0",
431 | "System.Runtime": "4.3.0"
432 | }
433 | },
434 | "System.Resources.ResourceManager/4.3.0": {
435 | "dependencies": {
436 | "Microsoft.NETCore.Platforms": "1.1.0",
437 | "Microsoft.NETCore.Targets": "1.1.0",
438 | "System.Globalization": "4.3.0",
439 | "System.Reflection": "4.3.0",
440 | "System.Runtime": "4.3.0"
441 | }
442 | },
443 | "System.Runtime/4.3.0": {
444 | "dependencies": {
445 | "Microsoft.NETCore.Platforms": "1.1.0",
446 | "Microsoft.NETCore.Targets": "1.1.0"
447 | }
448 | },
449 | "System.Runtime.Extensions/4.3.0": {
450 | "dependencies": {
451 | "Microsoft.NETCore.Platforms": "1.1.0",
452 | "Microsoft.NETCore.Targets": "1.1.0",
453 | "System.Runtime": "4.3.0"
454 | }
455 | },
456 | "System.Runtime.Handles/4.3.0": {
457 | "dependencies": {
458 | "Microsoft.NETCore.Platforms": "1.1.0",
459 | "Microsoft.NETCore.Targets": "1.1.0",
460 | "System.Runtime": "4.3.0"
461 | }
462 | },
463 | "System.Runtime.InteropServices/4.3.0": {
464 | "dependencies": {
465 | "Microsoft.NETCore.Platforms": "1.1.0",
466 | "Microsoft.NETCore.Targets": "1.1.0",
467 | "System.Reflection": "4.3.0",
468 | "System.Reflection.Primitives": "4.3.0",
469 | "System.Runtime": "4.3.0",
470 | "System.Runtime.Handles": "4.3.0"
471 | }
472 | },
473 | "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
474 | "dependencies": {
475 | "System.Reflection": "4.3.0",
476 | "System.Reflection.Extensions": "4.3.0",
477 | "System.Resources.ResourceManager": "4.3.0",
478 | "System.Runtime": "4.3.0",
479 | "System.Runtime.InteropServices": "4.3.0",
480 | "System.Threading": "4.3.0",
481 | "runtime.native.System": "4.3.0"
482 | }
483 | },
484 | "System.Runtime.Numerics/4.3.0": {
485 | "dependencies": {
486 | "System.Globalization": "4.3.0",
487 | "System.Resources.ResourceManager": "4.3.0",
488 | "System.Runtime": "4.3.0",
489 | "System.Runtime.Extensions": "4.3.0"
490 | }
491 | },
492 | "System.Security.Cryptography.Algorithms/4.3.0": {
493 | "dependencies": {
494 | "Microsoft.NETCore.Platforms": "1.1.0",
495 | "System.Collections": "4.3.0",
496 | "System.IO": "4.3.0",
497 | "System.Resources.ResourceManager": "4.3.0",
498 | "System.Runtime": "4.3.0",
499 | "System.Runtime.Extensions": "4.3.0",
500 | "System.Runtime.Handles": "4.3.0",
501 | "System.Runtime.InteropServices": "4.3.0",
502 | "System.Runtime.Numerics": "4.3.0",
503 | "System.Security.Cryptography.Encoding": "4.3.0",
504 | "System.Security.Cryptography.Primitives": "4.3.0",
505 | "System.Text.Encoding": "4.3.0",
506 | "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
507 | "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
508 | }
509 | },
510 | "System.Security.Cryptography.Cng/4.3.0": {
511 | "dependencies": {
512 | "Microsoft.NETCore.Platforms": "1.1.0",
513 | "System.IO": "4.3.0",
514 | "System.Resources.ResourceManager": "4.3.0",
515 | "System.Runtime": "4.3.0",
516 | "System.Runtime.Extensions": "4.3.0",
517 | "System.Runtime.Handles": "4.3.0",
518 | "System.Runtime.InteropServices": "4.3.0",
519 | "System.Security.Cryptography.Algorithms": "4.3.0",
520 | "System.Security.Cryptography.Encoding": "4.3.0",
521 | "System.Security.Cryptography.Primitives": "4.3.0",
522 | "System.Text.Encoding": "4.3.0"
523 | }
524 | },
525 | "System.Security.Cryptography.Csp/4.3.0": {
526 | "dependencies": {
527 | "Microsoft.NETCore.Platforms": "1.1.0",
528 | "System.IO": "4.3.0",
529 | "System.Reflection": "4.3.0",
530 | "System.Resources.ResourceManager": "4.3.0",
531 | "System.Runtime": "4.3.0",
532 | "System.Runtime.Extensions": "4.3.0",
533 | "System.Runtime.Handles": "4.3.0",
534 | "System.Runtime.InteropServices": "4.3.0",
535 | "System.Security.Cryptography.Algorithms": "4.3.0",
536 | "System.Security.Cryptography.Encoding": "4.3.0",
537 | "System.Security.Cryptography.Primitives": "4.3.0",
538 | "System.Text.Encoding": "4.3.0",
539 | "System.Threading": "4.3.0"
540 | }
541 | },
542 | "System.Security.Cryptography.Encoding/4.3.0": {
543 | "dependencies": {
544 | "Microsoft.NETCore.Platforms": "1.1.0",
545 | "System.Collections": "4.3.0",
546 | "System.Collections.Concurrent": "4.3.0",
547 | "System.Linq": "4.3.0",
548 | "System.Resources.ResourceManager": "4.3.0",
549 | "System.Runtime": "4.3.0",
550 | "System.Runtime.Extensions": "4.3.0",
551 | "System.Runtime.Handles": "4.3.0",
552 | "System.Runtime.InteropServices": "4.3.0",
553 | "System.Security.Cryptography.Primitives": "4.3.0",
554 | "System.Text.Encoding": "4.3.0",
555 | "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
556 | }
557 | },
558 | "System.Security.Cryptography.OpenSsl/4.3.0": {
559 | "dependencies": {
560 | "System.Collections": "4.3.0",
561 | "System.IO": "4.3.0",
562 | "System.Resources.ResourceManager": "4.3.0",
563 | "System.Runtime": "4.3.0",
564 | "System.Runtime.Extensions": "4.3.0",
565 | "System.Runtime.Handles": "4.3.0",
566 | "System.Runtime.InteropServices": "4.3.0",
567 | "System.Runtime.Numerics": "4.3.0",
568 | "System.Security.Cryptography.Algorithms": "4.3.0",
569 | "System.Security.Cryptography.Encoding": "4.3.0",
570 | "System.Security.Cryptography.Primitives": "4.3.0",
571 | "System.Text.Encoding": "4.3.0",
572 | "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
573 | }
574 | },
575 | "System.Security.Cryptography.Primitives/4.3.0": {
576 | "dependencies": {
577 | "System.Diagnostics.Debug": "4.3.0",
578 | "System.Globalization": "4.3.0",
579 | "System.IO": "4.3.0",
580 | "System.Resources.ResourceManager": "4.3.0",
581 | "System.Runtime": "4.3.0",
582 | "System.Threading": "4.3.0",
583 | "System.Threading.Tasks": "4.3.0"
584 | }
585 | },
586 | "System.Security.Cryptography.X509Certificates/4.3.0": {
587 | "dependencies": {
588 | "Microsoft.NETCore.Platforms": "1.1.0",
589 | "System.Collections": "4.3.0",
590 | "System.Diagnostics.Debug": "4.3.0",
591 | "System.Globalization": "4.3.0",
592 | "System.Globalization.Calendars": "4.3.0",
593 | "System.IO": "4.3.0",
594 | "System.IO.FileSystem": "4.3.0",
595 | "System.IO.FileSystem.Primitives": "4.3.0",
596 | "System.Resources.ResourceManager": "4.3.0",
597 | "System.Runtime": "4.3.0",
598 | "System.Runtime.Extensions": "4.3.0",
599 | "System.Runtime.Handles": "4.3.0",
600 | "System.Runtime.InteropServices": "4.3.0",
601 | "System.Runtime.Numerics": "4.3.0",
602 | "System.Security.Cryptography.Algorithms": "4.3.0",
603 | "System.Security.Cryptography.Cng": "4.3.0",
604 | "System.Security.Cryptography.Csp": "4.3.0",
605 | "System.Security.Cryptography.Encoding": "4.3.0",
606 | "System.Security.Cryptography.OpenSsl": "4.3.0",
607 | "System.Security.Cryptography.Primitives": "4.3.0",
608 | "System.Text.Encoding": "4.3.0",
609 | "System.Threading": "4.3.0",
610 | "runtime.native.System": "4.3.0",
611 | "runtime.native.System.Net.Http": "4.3.0",
612 | "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
613 | }
614 | },
615 | "System.Text.Encoding/4.3.0": {
616 | "dependencies": {
617 | "Microsoft.NETCore.Platforms": "1.1.0",
618 | "Microsoft.NETCore.Targets": "1.1.0",
619 | "System.Runtime": "4.3.0"
620 | }
621 | },
622 | "System.Text.Encoding.Extensions/4.3.0": {
623 | "dependencies": {
624 | "Microsoft.NETCore.Platforms": "1.1.0",
625 | "Microsoft.NETCore.Targets": "1.1.0",
626 | "System.Runtime": "4.3.0",
627 | "System.Text.Encoding": "4.3.0"
628 | }
629 | },
630 | "System.Text.RegularExpressions/4.3.0": {
631 | "dependencies": {
632 | "System.Runtime": "4.3.0"
633 | }
634 | },
635 | "System.Threading/4.3.0": {
636 | "dependencies": {
637 | "System.Runtime": "4.3.0",
638 | "System.Threading.Tasks": "4.3.0"
639 | }
640 | },
641 | "System.Threading.Tasks/4.3.0": {
642 | "dependencies": {
643 | "Microsoft.NETCore.Platforms": "1.1.0",
644 | "Microsoft.NETCore.Targets": "1.1.0",
645 | "System.Runtime": "4.3.0"
646 | }
647 | },
648 | "System.Threading.Tasks.Extensions/4.3.0": {
649 | "dependencies": {
650 | "System.Collections": "4.3.0",
651 | "System.Runtime": "4.3.0",
652 | "System.Threading.Tasks": "4.3.0"
653 | }
654 | },
655 | "System.Threading.Timer/4.3.0": {
656 | "dependencies": {
657 | "Microsoft.NETCore.Platforms": "1.1.0",
658 | "Microsoft.NETCore.Targets": "1.1.0",
659 | "System.Runtime": "4.3.0"
660 | }
661 | },
662 | "System.Xml.ReaderWriter/4.3.0": {
663 | "dependencies": {
664 | "System.Collections": "4.3.0",
665 | "System.Diagnostics.Debug": "4.3.0",
666 | "System.Globalization": "4.3.0",
667 | "System.IO": "4.3.0",
668 | "System.IO.FileSystem": "4.3.0",
669 | "System.IO.FileSystem.Primitives": "4.3.0",
670 | "System.Resources.ResourceManager": "4.3.0",
671 | "System.Runtime": "4.3.0",
672 | "System.Runtime.Extensions": "4.3.0",
673 | "System.Runtime.InteropServices": "4.3.0",
674 | "System.Text.Encoding": "4.3.0",
675 | "System.Text.Encoding.Extensions": "4.3.0",
676 | "System.Text.RegularExpressions": "4.3.0",
677 | "System.Threading.Tasks": "4.3.0",
678 | "System.Threading.Tasks.Extensions": "4.3.0"
679 | }
680 | },
681 | "System.Xml.XDocument/4.3.0": {
682 | "dependencies": {
683 | "System.Collections": "4.3.0",
684 | "System.Diagnostics.Debug": "4.3.0",
685 | "System.Diagnostics.Tools": "4.3.0",
686 | "System.Globalization": "4.3.0",
687 | "System.IO": "4.3.0",
688 | "System.Reflection": "4.3.0",
689 | "System.Resources.ResourceManager": "4.3.0",
690 | "System.Runtime": "4.3.0",
691 | "System.Runtime.Extensions": "4.3.0",
692 | "System.Text.Encoding": "4.3.0",
693 | "System.Threading": "4.3.0",
694 | "System.Xml.ReaderWriter": "4.3.0"
695 | }
696 | },
697 | "NetCoreServer/7.0.0.0": {
698 | "runtime": {
699 | "NetCoreServer.dll": {
700 | "assemblyVersion": "7.0.0.0",
701 | "fileVersion": "7.0.0.0"
702 | }
703 | }
704 | }
705 | }
706 | },
707 | "libraries": {
708 | "CrackedIOServerEmulator/1.0.0": {
709 | "type": "project",
710 | "serviceable": false,
711 | "sha512": ""
712 | },
713 | "Costura.Fody/5.7.0": {
714 | "type": "package",
715 | "serviceable": true,
716 | "sha512": "sha512-MmL28WOOnJEBWORXj6bfSxfWaZW8gWSXEJTdrjB9AQi4COX6RXr2xdGL9HsxpWwn6f5Io0NmNuwFJe94w1YmQA==",
717 | "path": "costura.fody/5.7.0",
718 | "hashPath": "costura.fody.5.7.0.nupkg.sha512"
719 | },
720 | "Fody/6.5.5": {
721 | "type": "package",
722 | "serviceable": true,
723 | "sha512": "sha512-Krca41L/PDva1VsmDec5n52cQZxQAQp/bsHdzsNi8iLLI0lqKL94fNIkNaC8tVolUkCyWsbzvxfxJCeD2789fA==",
724 | "path": "fody/6.5.5",
725 | "hashPath": "fody.6.5.5.nupkg.sha512"
726 | },
727 | "Microsoft.NETCore.Platforms/1.1.0": {
728 | "type": "package",
729 | "serviceable": true,
730 | "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
731 | "path": "microsoft.netcore.platforms/1.1.0",
732 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
733 | },
734 | "Microsoft.NETCore.Targets/1.1.0": {
735 | "type": "package",
736 | "serviceable": true,
737 | "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
738 | "path": "microsoft.netcore.targets/1.1.0",
739 | "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
740 | },
741 | "Microsoft.Win32.Primitives/4.3.0": {
742 | "type": "package",
743 | "serviceable": true,
744 | "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
745 | "path": "microsoft.win32.primitives/4.3.0",
746 | "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
747 | },
748 | "NETStandard.Library/1.6.1": {
749 | "type": "package",
750 | "serviceable": true,
751 | "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
752 | "path": "netstandard.library/1.6.1",
753 | "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
754 | },
755 | "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
756 | "type": "package",
757 | "serviceable": true,
758 | "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
759 | "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
760 | "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
761 | },
762 | "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
763 | "type": "package",
764 | "serviceable": true,
765 | "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
766 | "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
767 | "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
768 | },
769 | "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
770 | "type": "package",
771 | "serviceable": true,
772 | "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
773 | "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
774 | "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
775 | },
776 | "runtime.native.System/4.3.0": {
777 | "type": "package",
778 | "serviceable": true,
779 | "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
780 | "path": "runtime.native.system/4.3.0",
781 | "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
782 | },
783 | "runtime.native.System.IO.Compression/4.3.0": {
784 | "type": "package",
785 | "serviceable": true,
786 | "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
787 | "path": "runtime.native.system.io.compression/4.3.0",
788 | "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
789 | },
790 | "runtime.native.System.Net.Http/4.3.0": {
791 | "type": "package",
792 | "serviceable": true,
793 | "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
794 | "path": "runtime.native.system.net.http/4.3.0",
795 | "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
796 | },
797 | "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
798 | "type": "package",
799 | "serviceable": true,
800 | "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
801 | "path": "runtime.native.system.security.cryptography.apple/4.3.0",
802 | "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
803 | },
804 | "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
805 | "type": "package",
806 | "serviceable": true,
807 | "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
808 | "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
809 | "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
810 | },
811 | "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
812 | "type": "package",
813 | "serviceable": true,
814 | "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
815 | "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
816 | "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
817 | },
818 | "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
819 | "type": "package",
820 | "serviceable": true,
821 | "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
822 | "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
823 | "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
824 | },
825 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
826 | "type": "package",
827 | "serviceable": true,
828 | "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
829 | "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
830 | "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
831 | },
832 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
833 | "type": "package",
834 | "serviceable": true,
835 | "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
836 | "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
837 | "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
838 | },
839 | "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
840 | "type": "package",
841 | "serviceable": true,
842 | "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
843 | "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
844 | "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
845 | },
846 | "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
847 | "type": "package",
848 | "serviceable": true,
849 | "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
850 | "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
851 | "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
852 | },
853 | "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
854 | "type": "package",
855 | "serviceable": true,
856 | "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
857 | "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
858 | "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
859 | },
860 | "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
861 | "type": "package",
862 | "serviceable": true,
863 | "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
864 | "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
865 | "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
866 | },
867 | "System.AppContext/4.3.0": {
868 | "type": "package",
869 | "serviceable": true,
870 | "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
871 | "path": "system.appcontext/4.3.0",
872 | "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
873 | },
874 | "System.Buffers/4.3.0": {
875 | "type": "package",
876 | "serviceable": true,
877 | "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
878 | "path": "system.buffers/4.3.0",
879 | "hashPath": "system.buffers.4.3.0.nupkg.sha512"
880 | },
881 | "System.Collections/4.3.0": {
882 | "type": "package",
883 | "serviceable": true,
884 | "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
885 | "path": "system.collections/4.3.0",
886 | "hashPath": "system.collections.4.3.0.nupkg.sha512"
887 | },
888 | "System.Collections.Concurrent/4.3.0": {
889 | "type": "package",
890 | "serviceable": true,
891 | "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
892 | "path": "system.collections.concurrent/4.3.0",
893 | "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
894 | },
895 | "System.Console/4.3.0": {
896 | "type": "package",
897 | "serviceable": true,
898 | "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
899 | "path": "system.console/4.3.0",
900 | "hashPath": "system.console.4.3.0.nupkg.sha512"
901 | },
902 | "System.Diagnostics.Debug/4.3.0": {
903 | "type": "package",
904 | "serviceable": true,
905 | "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
906 | "path": "system.diagnostics.debug/4.3.0",
907 | "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
908 | },
909 | "System.Diagnostics.DiagnosticSource/4.3.0": {
910 | "type": "package",
911 | "serviceable": true,
912 | "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
913 | "path": "system.diagnostics.diagnosticsource/4.3.0",
914 | "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
915 | },
916 | "System.Diagnostics.Tools/4.3.0": {
917 | "type": "package",
918 | "serviceable": true,
919 | "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
920 | "path": "system.diagnostics.tools/4.3.0",
921 | "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
922 | },
923 | "System.Diagnostics.Tracing/4.3.0": {
924 | "type": "package",
925 | "serviceable": true,
926 | "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
927 | "path": "system.diagnostics.tracing/4.3.0",
928 | "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
929 | },
930 | "System.Globalization/4.3.0": {
931 | "type": "package",
932 | "serviceable": true,
933 | "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
934 | "path": "system.globalization/4.3.0",
935 | "hashPath": "system.globalization.4.3.0.nupkg.sha512"
936 | },
937 | "System.Globalization.Calendars/4.3.0": {
938 | "type": "package",
939 | "serviceable": true,
940 | "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
941 | "path": "system.globalization.calendars/4.3.0",
942 | "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
943 | },
944 | "System.Globalization.Extensions/4.3.0": {
945 | "type": "package",
946 | "serviceable": true,
947 | "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
948 | "path": "system.globalization.extensions/4.3.0",
949 | "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
950 | },
951 | "System.IO/4.3.0": {
952 | "type": "package",
953 | "serviceable": true,
954 | "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
955 | "path": "system.io/4.3.0",
956 | "hashPath": "system.io.4.3.0.nupkg.sha512"
957 | },
958 | "System.IO.Compression/4.3.0": {
959 | "type": "package",
960 | "serviceable": true,
961 | "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
962 | "path": "system.io.compression/4.3.0",
963 | "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
964 | },
965 | "System.IO.Compression.ZipFile/4.3.0": {
966 | "type": "package",
967 | "serviceable": true,
968 | "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
969 | "path": "system.io.compression.zipfile/4.3.0",
970 | "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
971 | },
972 | "System.IO.FileSystem/4.3.0": {
973 | "type": "package",
974 | "serviceable": true,
975 | "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
976 | "path": "system.io.filesystem/4.3.0",
977 | "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
978 | },
979 | "System.IO.FileSystem.Primitives/4.3.0": {
980 | "type": "package",
981 | "serviceable": true,
982 | "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
983 | "path": "system.io.filesystem.primitives/4.3.0",
984 | "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
985 | },
986 | "System.Linq/4.3.0": {
987 | "type": "package",
988 | "serviceable": true,
989 | "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
990 | "path": "system.linq/4.3.0",
991 | "hashPath": "system.linq.4.3.0.nupkg.sha512"
992 | },
993 | "System.Linq.Expressions/4.3.0": {
994 | "type": "package",
995 | "serviceable": true,
996 | "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
997 | "path": "system.linq.expressions/4.3.0",
998 | "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
999 | },
1000 | "System.Net.Http/4.3.0": {
1001 | "type": "package",
1002 | "serviceable": true,
1003 | "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
1004 | "path": "system.net.http/4.3.0",
1005 | "hashPath": "system.net.http.4.3.0.nupkg.sha512"
1006 | },
1007 | "System.Net.Primitives/4.3.0": {
1008 | "type": "package",
1009 | "serviceable": true,
1010 | "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
1011 | "path": "system.net.primitives/4.3.0",
1012 | "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
1013 | },
1014 | "System.Net.Sockets/4.3.0": {
1015 | "type": "package",
1016 | "serviceable": true,
1017 | "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
1018 | "path": "system.net.sockets/4.3.0",
1019 | "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
1020 | },
1021 | "System.ObjectModel/4.3.0": {
1022 | "type": "package",
1023 | "serviceable": true,
1024 | "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
1025 | "path": "system.objectmodel/4.3.0",
1026 | "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
1027 | },
1028 | "System.Reflection/4.3.0": {
1029 | "type": "package",
1030 | "serviceable": true,
1031 | "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
1032 | "path": "system.reflection/4.3.0",
1033 | "hashPath": "system.reflection.4.3.0.nupkg.sha512"
1034 | },
1035 | "System.Reflection.Emit/4.3.0": {
1036 | "type": "package",
1037 | "serviceable": true,
1038 | "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
1039 | "path": "system.reflection.emit/4.3.0",
1040 | "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
1041 | },
1042 | "System.Reflection.Emit.ILGeneration/4.3.0": {
1043 | "type": "package",
1044 | "serviceable": true,
1045 | "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
1046 | "path": "system.reflection.emit.ilgeneration/4.3.0",
1047 | "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
1048 | },
1049 | "System.Reflection.Emit.Lightweight/4.3.0": {
1050 | "type": "package",
1051 | "serviceable": true,
1052 | "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
1053 | "path": "system.reflection.emit.lightweight/4.3.0",
1054 | "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
1055 | },
1056 | "System.Reflection.Extensions/4.3.0": {
1057 | "type": "package",
1058 | "serviceable": true,
1059 | "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
1060 | "path": "system.reflection.extensions/4.3.0",
1061 | "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
1062 | },
1063 | "System.Reflection.Primitives/4.3.0": {
1064 | "type": "package",
1065 | "serviceable": true,
1066 | "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
1067 | "path": "system.reflection.primitives/4.3.0",
1068 | "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
1069 | },
1070 | "System.Reflection.TypeExtensions/4.3.0": {
1071 | "type": "package",
1072 | "serviceable": true,
1073 | "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
1074 | "path": "system.reflection.typeextensions/4.3.0",
1075 | "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
1076 | },
1077 | "System.Resources.ResourceManager/4.3.0": {
1078 | "type": "package",
1079 | "serviceable": true,
1080 | "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
1081 | "path": "system.resources.resourcemanager/4.3.0",
1082 | "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
1083 | },
1084 | "System.Runtime/4.3.0": {
1085 | "type": "package",
1086 | "serviceable": true,
1087 | "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
1088 | "path": "system.runtime/4.3.0",
1089 | "hashPath": "system.runtime.4.3.0.nupkg.sha512"
1090 | },
1091 | "System.Runtime.Extensions/4.3.0": {
1092 | "type": "package",
1093 | "serviceable": true,
1094 | "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
1095 | "path": "system.runtime.extensions/4.3.0",
1096 | "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
1097 | },
1098 | "System.Runtime.Handles/4.3.0": {
1099 | "type": "package",
1100 | "serviceable": true,
1101 | "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
1102 | "path": "system.runtime.handles/4.3.0",
1103 | "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
1104 | },
1105 | "System.Runtime.InteropServices/4.3.0": {
1106 | "type": "package",
1107 | "serviceable": true,
1108 | "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
1109 | "path": "system.runtime.interopservices/4.3.0",
1110 | "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
1111 | },
1112 | "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
1113 | "type": "package",
1114 | "serviceable": true,
1115 | "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
1116 | "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
1117 | "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
1118 | },
1119 | "System.Runtime.Numerics/4.3.0": {
1120 | "type": "package",
1121 | "serviceable": true,
1122 | "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
1123 | "path": "system.runtime.numerics/4.3.0",
1124 | "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
1125 | },
1126 | "System.Security.Cryptography.Algorithms/4.3.0": {
1127 | "type": "package",
1128 | "serviceable": true,
1129 | "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
1130 | "path": "system.security.cryptography.algorithms/4.3.0",
1131 | "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
1132 | },
1133 | "System.Security.Cryptography.Cng/4.3.0": {
1134 | "type": "package",
1135 | "serviceable": true,
1136 | "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
1137 | "path": "system.security.cryptography.cng/4.3.0",
1138 | "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
1139 | },
1140 | "System.Security.Cryptography.Csp/4.3.0": {
1141 | "type": "package",
1142 | "serviceable": true,
1143 | "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
1144 | "path": "system.security.cryptography.csp/4.3.0",
1145 | "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
1146 | },
1147 | "System.Security.Cryptography.Encoding/4.3.0": {
1148 | "type": "package",
1149 | "serviceable": true,
1150 | "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
1151 | "path": "system.security.cryptography.encoding/4.3.0",
1152 | "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
1153 | },
1154 | "System.Security.Cryptography.OpenSsl/4.3.0": {
1155 | "type": "package",
1156 | "serviceable": true,
1157 | "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
1158 | "path": "system.security.cryptography.openssl/4.3.0",
1159 | "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
1160 | },
1161 | "System.Security.Cryptography.Primitives/4.3.0": {
1162 | "type": "package",
1163 | "serviceable": true,
1164 | "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
1165 | "path": "system.security.cryptography.primitives/4.3.0",
1166 | "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
1167 | },
1168 | "System.Security.Cryptography.X509Certificates/4.3.0": {
1169 | "type": "package",
1170 | "serviceable": true,
1171 | "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
1172 | "path": "system.security.cryptography.x509certificates/4.3.0",
1173 | "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
1174 | },
1175 | "System.Text.Encoding/4.3.0": {
1176 | "type": "package",
1177 | "serviceable": true,
1178 | "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
1179 | "path": "system.text.encoding/4.3.0",
1180 | "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
1181 | },
1182 | "System.Text.Encoding.Extensions/4.3.0": {
1183 | "type": "package",
1184 | "serviceable": true,
1185 | "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
1186 | "path": "system.text.encoding.extensions/4.3.0",
1187 | "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
1188 | },
1189 | "System.Text.RegularExpressions/4.3.0": {
1190 | "type": "package",
1191 | "serviceable": true,
1192 | "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
1193 | "path": "system.text.regularexpressions/4.3.0",
1194 | "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
1195 | },
1196 | "System.Threading/4.3.0": {
1197 | "type": "package",
1198 | "serviceable": true,
1199 | "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
1200 | "path": "system.threading/4.3.0",
1201 | "hashPath": "system.threading.4.3.0.nupkg.sha512"
1202 | },
1203 | "System.Threading.Tasks/4.3.0": {
1204 | "type": "package",
1205 | "serviceable": true,
1206 | "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
1207 | "path": "system.threading.tasks/4.3.0",
1208 | "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
1209 | },
1210 | "System.Threading.Tasks.Extensions/4.3.0": {
1211 | "type": "package",
1212 | "serviceable": true,
1213 | "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
1214 | "path": "system.threading.tasks.extensions/4.3.0",
1215 | "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
1216 | },
1217 | "System.Threading.Timer/4.3.0": {
1218 | "type": "package",
1219 | "serviceable": true,
1220 | "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
1221 | "path": "system.threading.timer/4.3.0",
1222 | "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
1223 | },
1224 | "System.Xml.ReaderWriter/4.3.0": {
1225 | "type": "package",
1226 | "serviceable": true,
1227 | "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
1228 | "path": "system.xml.readerwriter/4.3.0",
1229 | "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
1230 | },
1231 | "System.Xml.XDocument/4.3.0": {
1232 | "type": "package",
1233 | "serviceable": true,
1234 | "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
1235 | "path": "system.xml.xdocument/4.3.0",
1236 | "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
1237 | },
1238 | "NetCoreServer/7.0.0.0": {
1239 | "type": "reference",
1240 | "serviceable": false,
1241 | "sha512": ""
1242 | }
1243 | }
1244 | }
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/bin/Debug/net7.0/CrackedIOServerEmulator.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FaxHack/Cracked.io-ServerEmulator/3388c806c107cb7b969e08b31d78c8bdb4082688/CrackedIOServerEmulator/bin/Debug/net7.0/CrackedIOServerEmulator.dll
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/bin/Debug/net7.0/CrackedIOServerEmulator.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FaxHack/Cracked.io-ServerEmulator/3388c806c107cb7b969e08b31d78c8bdb4082688/CrackedIOServerEmulator/bin/Debug/net7.0/CrackedIOServerEmulator.exe
--------------------------------------------------------------------------------
/CrackedIOServerEmulator/bin/Debug/net7.0/CrackedIOServerEmulator.runtimeconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "tfm": "net7.0",
4 | "framework": {
5 | "name": "Microsoft.NETCore.App",
6 | "version": "7.0.0"
7 | }
8 | }
9 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Cracked.io-ServerEmulator
2 |
3 | Server Emulator for https://cracked.io/auth. Made by https://github.com/CabboShiba & https://github.com/FaxHack
4 |
5 | # How it works
6 |
7 | It starts a HTTPS Server, using NetCoreServer, after it modifies the Hosts File, in order to allow HTTPS Redirection.
8 |
9 | 
10 |
11 | It generates a valid response, with random credentials. It also uses Max Rank possible, Supreme (Worth 60 $).
12 |
13 | # IS THAT A BYPASS?
14 |
15 | Absolutely NO. This program IS NOT a Cracked.io Bypass, as its purpose is only to emulate the Cracke.io Auth Server, and this can be done by every program, or even manually!
16 |
17 | So please, do not call my Emulator, a "Bypass", because you would spread false information.
18 |
19 | It is not Cracked.io's fault. They provide a great Auth system.
20 |
21 | THIS IS NOT THE SAME EMULATION AS Cracked.io Auth "BYPASSES". THE TERM EMULATION HERE REFERS TO "EMULATING" A PUBLIC SERVER BY USING THE SAME Cracked.io auth APPLICATION INFORMATION TO MAKE THIS TOOL LOOKS LIKE THE SERVER. IT DOES NOT INTERACT WITH THE PROGRAM'S MEMORY IN ANY WAY.
22 |
23 | # How to use
24 |
25 | - Run "CertificateBypass.pfx".
26 |
27 | - Select "Local PC".
28 |
29 | - Insert the password: "shiba".
30 |
31 | - Add it to the Trusted Root CA Folder.
32 |
33 | - Press enter.
34 |
35 | - Now you can start the Emulator without a problem.
36 |
37 | # Requirement's
38 |
39 | - [.NET Runtime 7.0.2](https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-7.0.2-windows-x64-installer)
40 |
41 |
42 | # Credits
43 |
44 | Projects Developer:
45 |
46 | https://github.com/FaxHack
47 |
48 | FreeCabbo11#9191 - https://t.me/CabboShiba | https://github.com/CabboShiba
49 |
50 | # Other Releases
51 |
52 | https://github.com/CabboShiba/Cracked.ioServerEmulator/
53 |
54 | # Library used
55 |
56 | https://github.com/chronoxor/NetCoreServer#example-https-server - Libray was used to make the HTTPS Server.
57 |
58 | # Do you want to contact me?
59 |
60 | Discord: Not Available.
61 |
62 | Telegram: Not Available.
63 |
64 | # Status
65 |
66 | Working: 26/06/2023
67 |
68 | # Known Issues
69 |
70 | Only Works on some tools
71 |
72 | # Change Log:
73 |
74 | V 1.0 - Released Emulator
75 |
76 | V 1.1 - Added a way to successfully roll back modifications to the host file upon closure of the tool.
77 |
78 |
79 | # DMCA VIOLATIONS
80 | Does this project violate DMCA? Absolutely not.
81 |
82 | This program only shows a method that can be done manually without any problem. It is basically a clone of the original cracked.io auth Server. This can be done by everyone, and it does not interact with Process Memory.
83 |
84 | It does not modify programs in any way.
85 |
86 | 
87 |
--------------------------------------------------------------------------------