From 217d8ab81e8590bc88b66d92c3bd9e437e335131 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 8 Oct 2020 16:42:37 +0200 Subject: [PATCH] android: Fix port scanning IMC Since 9e88bb987d65 ("Subscribed Scanner IMC/IMV to IETF_FIREWALL PA subtype") the port filter attribute is requested with a different message type. --- .../app/src/main/jni/libandroidbridge/byod/imc_android.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/android/app/src/main/jni/libandroidbridge/byod/imc_android.c b/src/frontends/android/app/src/main/jni/libandroidbridge/byod/imc_android.c index 2620265370..d639460f9d 100644 --- a/src/frontends/android/app/src/main/jni/libandroidbridge/byod/imc_android.c +++ b/src/frontends/android/app/src/main/jni/libandroidbridge/byod/imc_android.c @@ -53,7 +53,7 @@ static const char imc_name[] = "Android"; static pen_type_t msg_types[] = { { PEN_IETF, PA_SUBTYPE_IETF_OPERATING_SYSTEM }, - { PEN_IETF, PA_SUBTYPE_IETF_VPN }, + { PEN_IETF, PA_SUBTYPE_IETF_FIREWALL }, { PEN_TCG, PA_SUBTYPE_TCG_PTS }, }; -- 2.47.2