Wireless Access Point Scanner Gem Version

WAPS uses iwlist to scan for wireless access points and convert the output into ruby hash format. Following is the usage of the gem.

Installation

gem install waps

Require

require 'waps'

Usage

  • First Require the gem: require 'waps'
  • Creating new instance require interface name. Leave it empty if not sure. new_scan = Waps.new('Interface_name')
  • Start Scan. results = new_scan.scan
  • Get specific field. mac_address = new_scan.get('address')
require 'waps'

new_scan = Waps.new('')
new_scan.scan
mac_addresses = new_scan.get('address')

Response Field

  • Address
  • SSID
  • Signal Level
  • Encryption
  • Channel
  • Frequency
  • Quality

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details