原文《The Random Forest Based Detection of Shadowsock's Traffic》
由阿里云和360工程师联合提供的shadowsocks流量识别规则,目的当然是为了给我朝防火墙添砖加瓦,不过还是值得我们学习的。
此文由来自慕课网的fengsehng翻译。
翻译前言
将机器学习引入Shadowsock翻墙流量的检测,旨在提高准确率节省人力,我认为准确率的提高主要在于:特征的抽象和训练数据的规模。论文中并没有详细的数据说明...
CREATE
Clone an existing repository$
git clone ssh://user@domain.com/repo.git
Create a new local repository
$ git init
LOCAL CHANGES
Changed files in your working directory
$ git status
Changes to tracked files
$ git diff
Add all current changes to the next commit
$ git add .
Add some changes in <file> to the next commit
$ git add -p <file>
Commit all loca...