| 431 | } |
| 432 | |
| 433 | void ActiveBroadcastAttack::processProbeResponse(const String &ssid, const String &mac) { |
| 434 | if (!config.respondToProbes) return; |
| 435 | recordResponse(ssid); |
| 436 | if (config.prioritizeResponses) addHighPrioritySSID(ssid); |
| 437 | if (stats.ssidResponseCount[ssid] >= 1) launchAttackForResponse(ssid, mac); |
| 438 | } |
| 439 | |
| 440 | BroadcastStats ActiveBroadcastAttack::getStats() const { return stats; } |
| 441 |
no outgoing calls
no test coverage detected