Skip to content
This repository was archived by the owner on Jun 14, 2018. It is now read-only.

Commit 5f2dd3f

Browse files
committed
1.0
1 parent 9cf4cbc commit 5f2dd3f

23 files changed

+3014
-1
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,3 +286,9 @@ __pycache__/
286286
*.btm.cs
287287
*.odx.cs
288288
*.xsd.cs
289+
290+
# macOS auto-generated file
291+
.DS_Store
292+
293+
# VS Code files
294+
.vscode/

DotfuscatorAttribute.cs

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
using System;
2+
using System.Runtime.InteropServices;
3+
4+
[AttributeUsage(AttributeTargets.Assembly), ComVisible(false)]
5+
public sealed class DotfuscatorAttribute : Attribute
6+
{
7+
private string a;
8+
9+
private int c;
10+
11+
public string A
12+
{
13+
get
14+
{
15+
return this.a;
16+
}
17+
}
18+
19+
public int C
20+
{
21+
get
22+
{
23+
return this.c;
24+
}
25+
}
26+
27+
public DotfuscatorAttribute(string a, int c)
28+
{
29+
this.a = a;
30+
this.c = c;
31+
}
32+
}

Properties/AssemblyInfo.cs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System;
2+
using System.Reflection;
3+
using System.Runtime.CompilerServices;
4+
using System.Runtime.InteropServices;
5+
using System.Runtime.Versioning;
6+
7+
[assembly: AssemblyVersion("1.0.0.0")]
8+
[assembly: Dotfuscator("000:0:0:5.5.4521.29298", 0)]
9+
[assembly: AssemblyCompany("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCopyright("Copyright © 2017")]
12+
[assembly: AssemblyDescription("")]
13+
[assembly: AssemblyFileVersion("1.0.0.0")]
14+
[assembly: AssemblyProduct("socks5")]
15+
[assembly: AssemblyTitle("socks5")]
16+
[assembly: AssemblyTrademark("")]
17+
[assembly: CompilationRelaxations(8)]
18+
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
19+
[assembly: ComVisible(false)]
20+
[assembly: Guid("9a9d914e-8de4-4f84-b38e-67ed719319fa")]
21+
[assembly: TargetFramework(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")]

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# ssr868
2-
Decompiled code (by ILSpy) of breakwa11's passive Shadowsocks detector.
2+
3+
Decompiled code (by ILSpy) of [breakwa11's passive Shadowsocks detector](https://github.com/breakwa11/shadowsocks-rss/issues/868).
4+
5+
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.

0 commit comments

Comments
 (0)