Security
scout.txt
Associated article: The SecureScout Wi-Fi Security & Monitoring Framework
Tags: Security Mobile
Published data accompanying the article by Michael Larson in which he presents the ScoutSecure framework lets you monitor attacks on Wi-Fi (802.11) wireless networks. Also see SCOUT.ZIP.
The ScoutSecure Wi-Fi Security & Monitoring Framework
by Michael Larson
Listing One
/******* Result ********/
class ResultBase
{
public:
/* Constructor and Destructor */
ResultBase(TestType type) : result_time_(0) {;}
virtual ~ResultBase() {;}
/* cloning operation */
virtual ResultBase*
clone() const = 0;
void
set_result_time(unsigned long time) {result_...


