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

Commit

Permalink
1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yvbbrjdr committed Jul 27, 2017
1 parent 9cf4cbc commit 5f2dd3f
Show file tree
Hide file tree
Showing 23 changed files with 3,014 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -286,3 +286,9 @@ __pycache__/
*.btm.cs
*.odx.cs
*.xsd.cs

# macOS auto-generated file
.DS_Store

# VS Code files
.vscode/
32 changes: 32 additions & 0 deletions DotfuscatorAttribute.cs
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;
}
}
21 changes: 21 additions & 0 deletions Properties/AssemblyInfo.cs
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")]
5 changes: 4 additions & 1 deletion README.md
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.
Loading

0 comments on commit 5f2dd3f

Please sign in to comment.