This repository has been archived by the owner on Jun 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
3,014 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -286,3 +286,9 @@ __pycache__/ | |
*.btm.cs | ||
*.odx.cs | ||
*.xsd.cs | ||
|
||
# macOS auto-generated file | ||
.DS_Store | ||
|
||
# VS Code files | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
using System; | ||
using System.Runtime.InteropServices; | ||
|
||
[AttributeUsage(AttributeTargets.Assembly), ComVisible(false)] | ||
public sealed class DotfuscatorAttribute : Attribute | ||
{ | ||
private string a; | ||
|
||
private int c; | ||
|
||
public string A | ||
{ | ||
get | ||
{ | ||
return this.a; | ||
} | ||
} | ||
|
||
public int C | ||
{ | ||
get | ||
{ | ||
return this.c; | ||
} | ||
} | ||
|
||
public DotfuscatorAttribute(string a, int c) | ||
{ | ||
this.a = a; | ||
this.c = c; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System; | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
using System.Runtime.Versioning; | ||
|
||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: Dotfuscator("000:0:0:5.5.4521.29298", 0)] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCopyright("Copyright © 2017")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] | ||
[assembly: AssemblyProduct("socks5")] | ||
[assembly: AssemblyTitle("socks5")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: CompilationRelaxations(8)] | ||
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] | ||
[assembly: ComVisible(false)] | ||
[assembly: Guid("9a9d914e-8de4-4f84-b38e-67ed719319fa")] | ||
[assembly: TargetFramework(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# ssr868 | ||
Decompiled code (by ILSpy) of breakwa11's passive Shadowsocks detector. | ||
|
||
Decompiled code (by ILSpy) of [breakwa11's passive Shadowsocks detector](https://github.com/breakwa11/shadowsocks-rss/issues/868). | ||
|
||
The code is generated by [ILSpy 2.4](http://ilspy.net/). I haven't yet tried to compile it, so it is just for reference. |
Oops, something went wrong.