mirror of
https://github.com/apernet/OpenGFW.git
synced 2024-11-14 22:39:26 +08:00
feat: new heuristics for trojan analyzer
This commit is contained in:
parent
4257788f33
commit
9d96acd8db
@ -9,22 +9,14 @@ import (
|
|||||||
var _ analyzer.TCPAnalyzer = (*TrojanAnalyzer)(nil)
|
var _ analyzer.TCPAnalyzer = (*TrojanAnalyzer)(nil)
|
||||||
|
|
||||||
// CCS stands for "Change Cipher Spec"
|
// CCS stands for "Change Cipher Spec"
|
||||||
var trojanCCS = []byte{20, 3, 3, 0, 1, 1}
|
var ccsPattern = []byte{20, 3, 3, 0, 1, 1}
|
||||||
|
|
||||||
const (
|
// TrojanAnalyzer uses length-based heuristics to detect Trojan traffic based on
|
||||||
trojanUpLB = 650
|
// its "TLS-in-TLS" nature. The heuristics are trained using a decision tree with
|
||||||
trojanUpUB = 1000
|
// about 2000 samples. This is highly experimental and is known to have significant
|
||||||
trojanDownLB1 = 170
|
// false positives (about 8% false positives & 2% false negatives).
|
||||||
trojanDownUB1 = 180
|
// We do NOT recommend directly blocking all positive connections, as this is likely
|
||||||
trojanDownLB2 = 3000
|
// to break many normal TLS connections.
|
||||||
trojanDownUB2 = 7500
|
|
||||||
)
|
|
||||||
|
|
||||||
// TrojanAnalyzer uses a very simple packet length based check to determine
|
|
||||||
// if a TLS connection is actually the Trojan proxy protocol.
|
|
||||||
// The algorithm is from the following project, with small modifications:
|
|
||||||
// https://github.com/XTLS/Trojan-killer
|
|
||||||
// Warning: Experimental only. This method is known to have significant false positives and false negatives.
|
|
||||||
type TrojanAnalyzer struct{}
|
type TrojanAnalyzer struct{}
|
||||||
|
|
||||||
func (a *TrojanAnalyzer) Name() string {
|
func (a *TrojanAnalyzer) Name() string {
|
||||||
@ -32,7 +24,7 @@ func (a *TrojanAnalyzer) Name() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (a *TrojanAnalyzer) Limit() int {
|
func (a *TrojanAnalyzer) Limit() int {
|
||||||
return 16384
|
return 512000
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *TrojanAnalyzer) NewTCP(info analyzer.TCPInfo, logger analyzer.Logger) analyzer.TCPStream {
|
func (a *TrojanAnalyzer) NewTCP(info analyzer.TCPInfo, logger analyzer.Logger) analyzer.TCPStream {
|
||||||
@ -40,10 +32,12 @@ func (a *TrojanAnalyzer) NewTCP(info analyzer.TCPInfo, logger analyzer.Logger) a
|
|||||||
}
|
}
|
||||||
|
|
||||||
type trojanStream struct {
|
type trojanStream struct {
|
||||||
logger analyzer.Logger
|
logger analyzer.Logger
|
||||||
active bool
|
first bool
|
||||||
upCount int
|
count bool
|
||||||
downCount int
|
rev bool
|
||||||
|
seq [4]int
|
||||||
|
seqIndex int
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTrojanStream(logger analyzer.Logger) *trojanStream {
|
func newTrojanStream(logger analyzer.Logger) *trojanStream {
|
||||||
@ -57,33 +51,48 @@ func (s *trojanStream) Feed(rev, start, end bool, skip int, data []byte) (u *ana
|
|||||||
if len(data) == 0 {
|
if len(data) == 0 {
|
||||||
return nil, false
|
return nil, false
|
||||||
}
|
}
|
||||||
if !rev && !s.active && len(data) >= 6 && bytes.Equal(data[:6], trojanCCS) {
|
|
||||||
// Client CCS encountered, start counting
|
if s.first {
|
||||||
s.active = true
|
s.first = false
|
||||||
|
// Stop if it's not a valid TLS connection
|
||||||
|
if !(!rev && len(data) >= 3 && data[0] >= 0x16 && data[0] <= 0x17 &&
|
||||||
|
data[1] == 0x03 && data[2] <= 0x09) {
|
||||||
|
return nil, true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if s.active {
|
|
||||||
if rev {
|
if !rev && !s.count && len(data) >= 6 && bytes.Equal(data[:6], ccsPattern) {
|
||||||
// Down direction
|
// Client Change Cipher Spec encountered, start counting
|
||||||
s.downCount += len(data)
|
s.count = true
|
||||||
|
}
|
||||||
|
|
||||||
|
if s.count {
|
||||||
|
if rev == s.rev {
|
||||||
|
// Same direction as last time, just update the number
|
||||||
|
s.seq[s.seqIndex] = len(data)
|
||||||
} else {
|
} else {
|
||||||
// Up direction
|
// Different direction, bump the index
|
||||||
if s.upCount >= trojanUpLB && s.upCount <= trojanUpUB &&
|
s.seqIndex += 1
|
||||||
((s.downCount >= trojanDownLB1 && s.downCount <= trojanDownUB1) ||
|
if s.seqIndex == 4 {
|
||||||
(s.downCount >= trojanDownLB2 && s.downCount <= trojanDownUB2)) {
|
// Time to evaluate
|
||||||
|
yes := s.seq[0] >= 100 &&
|
||||||
|
s.seq[1] >= 88 &&
|
||||||
|
s.seq[2] >= 40 &&
|
||||||
|
s.seq[3] >= 51
|
||||||
return &analyzer.PropUpdate{
|
return &analyzer.PropUpdate{
|
||||||
Type: analyzer.PropUpdateReplace,
|
Type: analyzer.PropUpdateReplace,
|
||||||
M: analyzer.PropMap{
|
M: analyzer.PropMap{
|
||||||
"up": s.upCount,
|
"seq": s.seq,
|
||||||
"down": s.downCount,
|
"yes": yes,
|
||||||
"yes": true,
|
|
||||||
},
|
},
|
||||||
}, true
|
}, true
|
||||||
}
|
}
|
||||||
s.upCount += len(data)
|
s.seq[s.seqIndex] = len(data)
|
||||||
|
s.rev = rev
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Give up when either direction is over the limit
|
|
||||||
return nil, s.upCount > trojanUpUB || s.downCount > trojanDownUB2
|
return nil, false
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *trojanStream) Close(limited bool) *analyzer.PropUpdate {
|
func (s *trojanStream) Close(limited bool) *analyzer.PropUpdate {
|
||||||
|
@ -251,8 +251,7 @@ Check https://github.com/XTLS/Trojan-killer for more information.
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"trojan": {
|
"trojan": {
|
||||||
"down": 4712,
|
"seq": [170, 282, 167, 470],
|
||||||
"up": 671,
|
|
||||||
"yes": true
|
"yes": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user