Skip to content

Commit 38115e5

Browse files
committed
fix: final diagnostics fix; update fake strategy to OOB; blockcheck v2 full
1 parent 887cc26 commit 38115e5

2 files changed

Lines changed: 149 additions & 183 deletions

File tree

Sources/main.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,8 @@ enum ByeDPIStrategy: String, CaseIterable, Identifiable {
343343
// Disorder at SNI position
344344
return ["-d", "1+s"]
345345
case .fake:
346-
// Fake packets with low TTL
347-
return ["-d", "1", "-f", "-1", "-t", "6"]
346+
// Fake packets strategy (using OOB + Disorder)
347+
return ["-d", "1", "--oob", "1"]
348348
case .auto:
349349
// Auto detection
350350
return ["-A", "torst", "-d", "1"]
@@ -358,7 +358,7 @@ enum ByeDPIStrategy: String, CaseIterable, Identifiable {
358358
case .disorderSNI:
359359
return "Split at SNI & reverse order"
360360
case .fake:
361-
return "Send fake packets with low TTL"
361+
return "Injects fake data (OOB) to fool DPI"
362362
case .auto:
363363
return "Auto-detect blocking type"
364364
}

0 commit comments

Comments
 (0)