├── LICENSE ├── README.md ├── examples ├── basic.py ├── broadcast.py ├── console.py ├── inject.py ├── web │ ├── api │ │ ├── __init__.py │ │ ├── access_points_per_channel.py │ │ ├── api_base.py │ │ ├── data_qos_data_frames_per_channel.py │ │ ├── frames_per_channel.py │ │ ├── helpers.py │ │ └── traffic_encryption.py │ ├── charts-global-config.js │ ├── charts.js │ ├── helper_functions.js │ ├── images │ │ └── banner.png │ ├── libs │ │ ├── Chart.min.js │ │ └── jquery-1.11.3.js │ ├── webserver.py │ └── wiwo-traffic-analyzer.html └── wireshark.py ├── wiwo ├── __init__.py ├── ethernet.py ├── events.py ├── frames.py ├── helpers │ ├── __init__.py │ ├── interface.py │ └── windows.py ├── manager.py ├── manager_svc.py ├── receivers.py ├── sender.py ├── testcases │ └── frames_tests.py └── worker.py └── worker ├── Makefile └── src ├── Makefile ├── debug.h ├── ethernet.h ├── mac.c ├── mac.h ├── monitor.c ├── monitor.h ├── network.h ├── protocol.h ├── system.c ├── system.h ├── wireless.c ├── wireless.h ├── wiwo.c └── wiwo.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/basic.py -------------------------------------------------------------------------------- /examples/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/broadcast.py -------------------------------------------------------------------------------- /examples/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/console.py -------------------------------------------------------------------------------- /examples/inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/inject.py -------------------------------------------------------------------------------- /examples/web/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/web/api/access_points_per_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/api/access_points_per_channel.py -------------------------------------------------------------------------------- /examples/web/api/api_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/api/api_base.py -------------------------------------------------------------------------------- /examples/web/api/data_qos_data_frames_per_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/api/data_qos_data_frames_per_channel.py -------------------------------------------------------------------------------- /examples/web/api/frames_per_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/api/frames_per_channel.py -------------------------------------------------------------------------------- /examples/web/api/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/api/helpers.py -------------------------------------------------------------------------------- /examples/web/api/traffic_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/api/traffic_encryption.py -------------------------------------------------------------------------------- /examples/web/charts-global-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/charts-global-config.js -------------------------------------------------------------------------------- /examples/web/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/charts.js -------------------------------------------------------------------------------- /examples/web/helper_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/helper_functions.js -------------------------------------------------------------------------------- /examples/web/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/images/banner.png -------------------------------------------------------------------------------- /examples/web/libs/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/libs/Chart.min.js -------------------------------------------------------------------------------- /examples/web/libs/jquery-1.11.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/libs/jquery-1.11.3.js -------------------------------------------------------------------------------- /examples/web/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/webserver.py -------------------------------------------------------------------------------- /examples/web/wiwo-traffic-analyzer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/web/wiwo-traffic-analyzer.html -------------------------------------------------------------------------------- /examples/wireshark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/examples/wireshark.py -------------------------------------------------------------------------------- /wiwo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wiwo/ethernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/wiwo/ethernet.py -------------------------------------------------------------------------------- /wiwo/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/wiwo/events.py -------------------------------------------------------------------------------- /wiwo/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/wiwo/frames.py -------------------------------------------------------------------------------- /wiwo/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wiwo/helpers/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/wiwo/helpers/interface.py -------------------------------------------------------------------------------- /wiwo/helpers/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/wiwo/helpers/windows.py -------------------------------------------------------------------------------- /wiwo/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/wiwo/manager.py -------------------------------------------------------------------------------- /wiwo/manager_svc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/wiwo/manager_svc.py -------------------------------------------------------------------------------- /wiwo/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/wiwo/receivers.py -------------------------------------------------------------------------------- /wiwo/sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/wiwo/sender.py -------------------------------------------------------------------------------- /wiwo/testcases/frames_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/wiwo/testcases/frames_tests.py -------------------------------------------------------------------------------- /wiwo/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/wiwo/worker.py -------------------------------------------------------------------------------- /worker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/Makefile -------------------------------------------------------------------------------- /worker/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/Makefile -------------------------------------------------------------------------------- /worker/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/debug.h -------------------------------------------------------------------------------- /worker/src/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/ethernet.h -------------------------------------------------------------------------------- /worker/src/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/mac.c -------------------------------------------------------------------------------- /worker/src/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/mac.h -------------------------------------------------------------------------------- /worker/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/monitor.c -------------------------------------------------------------------------------- /worker/src/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/monitor.h -------------------------------------------------------------------------------- /worker/src/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/network.h -------------------------------------------------------------------------------- /worker/src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/protocol.h -------------------------------------------------------------------------------- /worker/src/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/system.c -------------------------------------------------------------------------------- /worker/src/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/system.h -------------------------------------------------------------------------------- /worker/src/wireless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/wireless.c -------------------------------------------------------------------------------- /worker/src/wireless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/wireless.h -------------------------------------------------------------------------------- /worker/src/wiwo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/wiwo.c -------------------------------------------------------------------------------- /worker/src/wiwo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/wiwo/HEAD/worker/src/wiwo.h --------------------------------------------------------------------------------