From bda3c2c4870bb4911ce914967cb41920538e9cbb Mon Sep 17 00:00:00 2001 From: Gianluca Date: Mon, 26 Feb 2018 00:13:55 +0100 Subject: [PATCH] Fix: create station and extract info from the first beacon --- modules/wifi_recon.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wifi_recon.go b/modules/wifi_recon.go index f0f848c0..17d2f0cf 100644 --- a/modules/wifi_recon.go +++ b/modules/wifi_recon.go @@ -610,9 +610,9 @@ func (w *WiFiRecon) Start() error { continue } - w.updateStats(dot11, packet) w.discoverProbes(radiotap, dot11, packet) w.discoverAccessPoints(radiotap, dot11, packet) + w.updateStats(dot11, packet) w.discoverClients(radiotap, dot11, packet) } }