mirror of
https://github.com/xtclovver/RKNHardering.git
synced 2026-04-28 04:29:51 +00:00
fix: false positive на интерфейс LTE и внутренней сети оператора
Some checks are pending
CI / build (push) Waiting to run
Some checks are pending
CI / build (push) Waiting to run
This commit is contained in:
parent
0e05b9d64d
commit
c2bcff8024
3 changed files with 4 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -29,3 +29,5 @@ ocr_methodika_vpn_proxy.md
|
|||
tag_and_push.sh
|
||||
tag_and_push.ps1
|
||||
/.codex
|
||||
Методика_выявления_признаков_использования_VPN_и_proxy_в_клиентских.md
|
||||
Методика_выявления_признаков_использования_VPN_и_proxy_в_клиентских.docx
|
||||
|
|
|
|||
|
|
@ -118,6 +118,7 @@ object IndirectSignsChecker {
|
|||
private val STANDARD_INTERFACES = listOf(
|
||||
Regex("^wlan.*"),
|
||||
Regex("^rmnet.*"),
|
||||
Regex("^seth.*"), // LTE interface on select Qualcomm/MediaTek devices (e.g. seth_lte0)
|
||||
Regex("^eth.*"),
|
||||
Regex("^lo$"),
|
||||
Regex("^ccmni.*"),
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ object NetworkInterfacePatterns {
|
|||
val STANDARD_INTERFACES: List<Regex> = listOf(
|
||||
Regex("^wlan.*"),
|
||||
Regex("^rmnet.*"),
|
||||
Regex("^seth.*"), // LTE interface on select Qualcomm/MediaTek devices (e.g. Itel, Tecno, Infinix)
|
||||
Regex("^eth.*"),
|
||||
Regex("^lo$"),
|
||||
Regex("^ccmni.*"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue